/* App Page Layout */
.app-container {
    min-height: 100vh;
    padding-top: 80px;
}

.app-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Page Header */
.app-header {
    text-align: center;
    margin-bottom: 3rem;
}

.app-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.app-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* App Grid */
.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* App Card */
.app-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.app-card-disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.app-card-disabled:hover {
    transform: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* App Card Icon */
.app-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.app-card-icon i {
    display: block;
}

/* App Card Content */
.app-card-content {
    flex: 1;
}

.app-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.app-card-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Coming Soon Badge */
.app-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #fbbf24;
    color: #111827;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Dark Mode Support */
.dark .app-title {
    color: var(--text-primary);
}

.dark .app-subtitle {
    color: var(--text-secondary);
}

.dark .app-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
}

.dark .app-card:hover {
    background-color: var(--bg-secondary);
}

.dark .app-card-title {
    color: var(--text-primary);
}

.dark .app-card-description {
    color: var(--text-secondary);
}

.dark .app-card-disabled {
    opacity: 0.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .app-container {
        padding-top: 60px;
    }

    .app-main-content {
        padding: 1.5rem 1rem;
    }

    .app-title {
        font-size: 2rem;
    }

    .app-subtitle {
        font-size: 1rem;
    }

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

    .app-card {
        padding: 1.5rem;
    }

    .app-card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .app-card-title {
        font-size: 1.25rem;
    }

    .app-card-description {
        font-size: 0.875rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .app-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

