/* ==========================================================================
   GET STORE - Premium Modern Store Landing Styles
   ========================================================================== */

:root {
    --bg-dark: #070a13;
    --bg-card: rgba(15, 23, 42, 0.7);
    --bg-card-hover: rgba(30, 41, 59, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(20, 184, 166, 0.3);
    
    --primary: #14b8a6;
    --primary-glow: #0d9488;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
    --accent-blue: #3b82f6;
    
    --text-bright: #ffffff;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --text-sub: #64748b;
    
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Alexandria', 'Readex Pro', system-ui, -apple-system, sans-serif;
    scroll-behavior: smooth;
}

html {
    height: 100%;
}

body {
    background-color: #030611;
    background-image: 
        radial-gradient(circle at 70% 15%, rgba(20, 184, 166, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, rgba(7, 10, 19, 0.76) 0%, rgba(7, 10, 19, 0.88) 60%, rgba(3, 6, 17, 1) 100%),
        url('assets/images/SA5.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
}

/* Background Atmosphere Blobs */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
}

.blob-teal {
    top: -100px;
    right: -100px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.18) 0%, rgba(0,0,0,0) 70%);
    animation: blobFloat 18s ease-in-out infinite alternate;
}

.blob-purple {
    top: 400px;
    left: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0,0,0,0) 70%);
    animation: blobFloat 22s ease-in-out infinite alternate-reverse;
}

.blob-blue {
    bottom: 200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(0,0,0,0) 70%);
}

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 60px) scale(1.08); }
    100% { transform: translate(30px, -30px) scale(0.95); }
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(7, 10, 19, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(20, 184, 166, 0.4));
}

.nav-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-bright);
    letter-spacing: 0.5px;
}

.nav-tag {
    font-size: 11px;
    background: rgba(20, 184, 166, 0.15);
    color: var(--primary);
    border: 1px solid rgba(20, 184, 166, 0.3);
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-purple));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    margin-right: auto;
    display: flex;
    align-items: center;
}

.btn-dev-portal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 50px;
    color: var(--text-bright);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-dev-portal i {
    font-size: 18px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.btn-dev-portal:hover {
    background: rgba(20, 184, 166, 0.2);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.25);
}

.btn-dev-portal:hover i {
    transform: scale(1.15) rotate(-5deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding-top: 140px;
    padding-bottom: 90px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0.6;
    animation: pulsate 2s infinite ease-out;
}

.hero-title {
    font-family: 'Cairo', sans-serif;
    font-size: 52px;
    line-height: 1.25;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(180deg, #34d399 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 44px;
}

/* Google Play Green Download Button */
.btn-play-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 54px;
    background-color: #01875f;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 24px;
    border: none;
    box-shadow: 0 6px 20px rgba(1, 135, 95, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-play-green:hover {
    background-color: #007351;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(1, 135, 95, 0.65);
}

/* Version & Release Notes Meta Row */
.version-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    font-size: 13px;
}

.version-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-weight: 600;
    background: transparent;
    border: none;
    padding: 0;
}

.version-dot {
    color: var(--text-sub);
}

.whats-new-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    padding: 4px 8px;
    border-radius: 8px;
}

.whats-new-btn:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Modal Window Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    background: rgba(3, 7, 18, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.is-open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.modal-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(20, 184, 166, 0.2);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.modal-overlay.is-open .modal-card {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-title-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.modal-title-box h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-bright);
}

.modal-title-box p {
    font-size: 12px;
    color: var(--text-muted);
}

.modal-consent-card {
    max-width: 480px;
    background: #0d1526;
    border: 1px solid rgba(20, 184, 166, 0.25);
}

.consent-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.consent-notice-text {
    font-size: 15px;
    color: var(--text-bright);
    line-height: 1.7;
}

.consent-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px;
}

.consent-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.consent-item i {
    font-size: 18px;
    color: var(--primary);
}

.privacy-link-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--primary);
    text-decoration: underline;
    font-weight: 700;
}

/* Custom Interactive Checkbox Label */
.consent-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.consent-checkbox-label:hover {
    background: transparent;
}

.custom-consent-checkbox {
    display: none;
}

.checkbox-custom-box {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.25s ease;
}

.custom-consent-checkbox:checked + .checkbox-custom-box {
    background: #01875f;
    border-color: #01875f;
    color: #ffffff;
    transform: scale(1.08);
}

.checkbox-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-bright);
}

/* Developer Portal Splash Loader Overlay */
.dev-splash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #030712;
    z-index: 200000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.dev-splash-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dev-splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 400px;
    padding: 30px;
}

.dev-splash-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.dev-splash-logo {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.dev-splash-title {
    font-family: 'Cairo', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-bright);
    letter-spacing: -0.3px;
}

.dev-splash-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-bright);
}

.dev-spinner {
    font-size: 26px;
    color: #01875f;
}

.dev-splash-net-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.dev-splash-net-badge.is-online {
    background: rgba(1, 135, 95, 0.12);
    border-color: rgba(1, 135, 95, 0.3);
    color: #01875f;
}

@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(20, 184, 166, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(20, 184, 166, 0.4);
    }
}

/* Download Button State in Modal */
.btn-consent-action {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    padding: 14px;
    font-size: 16px;
    opacity: 0.35;
    filter: grayscale(0.8);
    cursor: not-allowed;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.btn-consent-action.is-enabled {
    opacity: 1;
    filter: grayscale(0);
    cursor: pointer;
    pointer-events: auto;
    background: #01875f;
    box-shadow: 0 0 25px rgba(1, 135, 95, 0.65), 0 0 45px rgba(1, 135, 95, 0.35);
    animation: pulseGlow 1.8s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 20px rgba(1, 135, 95, 0.6);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 35px rgba(1, 135, 95, 0.9), 0 0 55px rgba(20, 184, 166, 0.4);
        transform: scale(1.02);
    }
}

.modal-card.modal-large {
    max-width: 680px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.modal-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
}

.scrollable-features {
    overflow-y: auto;
    max-height: calc(85vh - 90px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Custom Emerald Scrollbar */
.scrollable-features::-webkit-scrollbar {
    width: 6px;
}

.scrollable-features::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.scrollable-features::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.release-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.modal-overlay.is-open .release-item {
    animation: itemStaggerIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--item-index, 1) * 0.04s) forwards;
}

@keyframes itemStaggerIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.release-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(20, 184, 166, 0.3);
    transform: translateX(-4px);
}

.release-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--text-sub);
    min-width: 24px;
    margin-top: 4px;
    font-family: 'Outfit', sans-serif;
}

.release-icon {
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.primary-icon { color: var(--primary); }
.purple-icon { color: var(--accent-purple); }
.blue-icon { color: #3b82f6; }

.release-item h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 4px;
}

.release-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Open Market & Games Showcase Section */
.market-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 40px;
}

.market-grid.alt-layout {
    grid-template-columns: 1.1fr 0.9fr;
}

.huge-showcase {
    max-width: 800px;
    width: 100%;
}

.huge-showcase .sa-showcase-img {
    width: 100%;
    max-height: 680px;
    object-fit: contain;
    transform: scale(1.15);
}

.market-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--text-bright);
    line-height: 1.3;
    margin: 14px 0 18px 0;
}

.market-description {
    font-size: 19px;
    color: var(--text-muted);
    line-height: 1.85;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.btn-explore:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

/* Hero Stats Bar */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.stat-box h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--text-bright);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-box p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Hero Visual Frame (Phone Mockup Showcase) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sa-showcase-wrapper {
    position: relative;
    max-width: 480px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.sa-glow-effect {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.3) 0%, rgba(13, 148, 136, 0.15) 55%, transparent 80%);
    border-radius: 40px;
    filter: blur(30px);
    z-index: 0;
    opacity: 0.45;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sa-showcase-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

/* Smooth Touch & Hover Zoom Effect with Intensified Emerald Glow */
.sa-showcase-wrapper:hover .sa-showcase-img,
.sa-showcase-wrapper:active .sa-showcase-img {
    transform: scale(1.06);
    border: none;
    box-shadow: none;
}

.sa-showcase-wrapper:hover .sa-glow-effect,
.sa-showcase-wrapper:active .sa-glow-effect {
    opacity: 1;
    transform: scale(1.1);
    background: radial-gradient(circle, rgba(20, 184, 166, 0.6) 0%, rgba(13, 148, 136, 0.3) 60%, transparent 85%);
}

/* Floating Feature Badges */
.floating-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 10;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-bright);
    animation: chipPulse 4s ease-in-out infinite alternate;
}

.chip-1 {
    top: 60px;
    right: -30px;
    border-right: 3px solid var(--primary);
}

.chip-2 {
    bottom: 80px;
    left: -40px;
    border-left: 3px solid var(--accent-purple);
    animation-delay: -2s;
}

@keyframes chipPulse {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* ==========================================================================
   Featured Showcase Section (أشهر التطبيقات والألعاب)
   ========================================================================== */
.section {
    padding: 90px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 54px auto;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}

.app-card-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.app-card-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
}

.app-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}

.app-card-details {
    flex: 1;
    min-width: 0;
}

.app-card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.app-rating-badge {
    color: #fbbf24;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.app-card-download-btn {
    padding: 8px 18px;
    background: rgba(20, 184, 166, 0.15);
    color: var(--primary);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.app-card-download-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* ==========================================================================
   Features Grid Section
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
}

.feature-card {
    padding: 32px 26px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.8);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 22px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   FAQ Accordion Section
   ========================================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-bright);
    user-select: none;
}

.faq-question i {
    font-size: 22px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* ==========================================================================
   CTA Banner Section & Footer
   ========================================================================== */
.cta-banner {
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.cta-banner h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 32px auto;
}

/* Footer */
.footer {
    padding: 60px 0 0 0;
    background: #030611;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-cols-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 14px;
    max-width: 300px;
}

.footer-col h5 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-sub);
    font-size: 13px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 38px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Page Entrance & Scroll Reveal Animations
   ========================================================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.animate-nav {
    animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-title {
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    opacity: 0;
}

.animate-desc {
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
    opacity: 0;
}

.animate-cta {
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
}

.animate-stats {
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
    opacity: 0;
}

.animate-visual {
    animation: fadeInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

/* Scroll Reveal Hidden State */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Ultra-Responsive Mobile Styling (Max-Width: 768px Only)
   * PC Desktop Styles remain 100% untouched and unchanged! *
   ========================================================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Navbar Mobile Layout */
    .navbar {
        height: 70px;
        padding: 0;
    }

    .nav-logo {
        width: 32px;
        height: 32px;
    }

    .nav-title {
        font-size: 16px;
    }

    .btn-dev-portal {
        padding: 8px 14px;
        font-size: 13px;
        gap: 6px;
    }

    /* Hero Section Mobile */
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        order: 2;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.35;
        margin-bottom: 16px;
    }

    .hero-visual {
        order: 1;
        max-width: 240px;
        width: 100%;
        margin-bottom: 12px;
    }

    .hero-visual .sa-showcase-wrapper {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .hero-visual .sa-showcase-img {
        max-height: 300px;
        object-fit: contain;
        width: 100%;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .hero-cta-wrapper {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-bottom: 18px;
    }

    .hero-description {
        font-size: 14.5px;
        margin-bottom: 20px;
        line-height: 1.65;
        color: var(--text-muted);
        max-width: 480px;
        text-align: center;
    }

    .btn-play-green {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px;
        font-size: 16px;
    }

    .version-meta-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        font-size: 13px;
    }

    .hero-stats {
        order: 5;
        width: 100%;
        justify-content: center;
        gap: 16px;
        margin-top: 16px;
    }

    .stat-box {
        padding: 10px 16px;
    }

    .stat-box h4 {
        font-size: 18px;
    }

    .stat-box p {
        font-size: 12px;
    }

    /* Market & Developer Sections Mobile (Picture on top, description text directly under picture) */
    .market-grid,
    .market-grid.alt-layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .market-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .market-visual {
        order: 1;
        width: 100%;
        max-width: 340px;
        margin-bottom: 16px;
    }

    .market-title {
        order: 2;
        font-size: 22px;
        line-height: 1.35;
        margin-bottom: 12px;
    }

    .market-visual .sa-showcase-wrapper.huge-showcase {
        max-width: 100%;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .market-visual .sa-showcase-img {
        max-height: 320px;
        object-fit: contain;
        width: 100%;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .market-description {
        order: 3;
        font-size: 14.5px;
        line-height: 1.7;
        color: var(--text-muted);
        max-width: 480px;
    }

    /* Footer Mobile - Ultra-Professional 2-Column Side-by-Side Layout */
    .footer {
        padding: 45px 0 25px 0;
        background: #030611;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-bottom: 24px;
        text-align: right;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: right;
        gap: 10px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-brand .nav-brand {
        justify-content: flex-start;
    }

    .footer-brand p {
        font-size: 13.5px;
        color: var(--text-muted);
        line-height: 1.7;
        margin-top: 6px;
        max-width: 100%;
        text-align: right;
    }

    .footer-cols-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        text-align: right;
    }

    .footer-col {
        text-align: right;
    }

    .footer-col h5 {
        font-size: 15px;
        font-weight: 800;
        color: var(--text-bright);
        margin-bottom: 12px;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-col ul li a {
        font-size: 13.5px;
        color: var(--text-muted);
        text-decoration: none;
    }

    .footer-bottom {
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        text-align: center;
    }

    .footer-bottom p {
        font-size: 12px;
        color: var(--text-muted);
    }

    /* Consent Modal Mobile */
    .modal-consent-card {
        max-width: 92%;
        padding: 18px 14px;
        border-radius: 20px;
    }

    .consent-body {
        padding: 16px;
        gap: 14px;
    }

    .consent-notice-text {
        font-size: 14px;
    }

    .checkbox-text {
        font-size: 13px;
    }

    /* Mobile Desktop Site Notice Modal */
    .mobile-notice-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        z-index: 999999;
        background: rgba(3, 7, 18, 0.94);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .mobile-notice-card {
        background: #0d1526;
        border: 1px solid rgba(20, 184, 166, 0.3);
        border-radius: 24px;
        padding: 28px 22px;
        text-align: center;
        max-width: 380px;
        width: 100%;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .mobile-notice-icon {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        background: rgba(20, 184, 166, 0.12);
        border: 1px solid rgba(20, 184, 166, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        color: #14b8a6;
    }

    .mobile-notice-card h3 {
        font-family: 'Cairo', sans-serif;
        font-size: 20px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1.35;
    }

    .mobile-notice-card p {
        font-size: 14px;
        color: #94a3b8;
        line-height: 1.6;
    }

    .mobile-notice-tip {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        padding: 12px 14px;
        font-size: 12px;
        color: #cbd5e1;
        text-align: right;
    }

    .mobile-notice-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 6px;
    }

    .mobile-notice-btn-primary {
        padding: 14px;
        background: #01875f;
        color: #ffffff;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 800;
        font-size: 15px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-notice-btn-secondary {
        padding: 12px;
        background: transparent;
        color: #94a3b8;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 50px;
        cursor: pointer;
        font-size: 13px;
        font-weight: 600;
    }
}
