/* Apps Section */
.app-card {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.app-header {
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--royal-purple), var(--purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
}

.app-info h3 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.app-info p {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.platform-badge,
.status-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.platform-badge {
    background-color: var(--gray-900);
    margin-right: 0.5rem;
}

.status-badge {
    background-color: var(--royal-purple);
}

.status-badge a {
    color: var(--white);
    text-decoration: none;
}

.app-screenshots {
    padding: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.screenshot {
    border-radius: 12px;
    width: 100%;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .app-header {
        flex-direction: column;
        text-align: center;
    }

    .app-screenshots {
        grid-template-columns: 1fr;
    }
}
