/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #121212;
    color: #fff;
    padding: 2em 1.5em;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header-icon {
    height: 70px;
    width: auto;
}

footer {
    background-color: #121212;
    color: #fff;
    text-align: center;
    padding: 1.5em 0;
}

.apps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* App Card Styles */
.app-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
}

.app-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.app-card img.screenshot {
    height: 350px;
    width: auto;
    object-fit: cover;
    flex-shrink: 0;
}

.app-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

.app-info .logo-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-info img.logo {
    max-width: 100px;
}

.app-info h3 {
    font-size: 1.75em;
    color: #121212;
}

.app-info .store-links {
    display: flex;
    gap: 15px;
    margin: 10px 0;
    align-items: center;
}

.app-info .store-links a {
    font-size: 1em;
    color: #007bff;
    text-decoration: none;
}

.app-info .store-links a:hover {
    text-decoration: underline;
}

.app-info .store-links img {
    height: 24px;  /* Store icon size */
    width: auto;
}

.app-info p {
    font-size: 1em;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    word-wrap: break-word;  /* Prevent text from getting cut off */
    overflow-wrap: break-word; /* Ensures word wrapping works well */
}

.app-info a.policy-link {
    font-size: 0.9em;
    color: #007bff;
    text-decoration: none;
}

.app-info a.policy-link:hover {
    text-decoration: underline;
}

.app-info .fa-discord {
    color: #7289da;  /* Discord color */
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-card {
        flex-direction: column;
        margin: 1em;
    }

    .app-card img.screenshot {
        width: 100%;
        height: auto;
    }

    .app-info {
        max-width: none;
    }

    .app-info img.logo {
        max-width: 80px;
    }

    .app-info h3 {
        font-size: 1.5em;
    }

    .app-info .store-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .app-info p {
        font-size: 0.9em;
    }
}
