:root {
    --primary-color: #8c44ff;
    --secondary-color: #00ccff;
    --accent-color: #ff0080;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 30px;
    --glass-glow: rgba(140, 68, 255, 0.4);
    --primary-hover: #7b29ff;
    --dark-bg: #0f0c1a;
    --section-bg: transparent;
    --card-bg: rgba(30, 20, 50, 0.4);
    --text-color: #ffffff;
    --text-muted: #aaaaaa;
    --hex-border: rgba(140, 68, 255, 0.5);
    --transition-speed: 0.4s;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
}

.glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(20, 20, 30, 0.2) 100%);
    backdrop-filter: blur(var(--glass-blur)) saturate(200%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(200%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.glass-card {
    background: linear-gradient(135deg, rgba(30, 20, 50, 0.5) 0%, rgba(15, 12, 26, 0.8) 100%);
    backdrop-filter: blur(var(--glass-blur)) saturate(200%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(200%);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.02);
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(140, 68, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(140, 68, 255, 0.5), 0 0 60px rgba(140, 68, 255, 0.2); }
}
@keyframes liquid-shine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

/* Ensure sections with containers have full-width backgrounds */
.hero,
.commission-intro,
.features-tabs,
.products,
.benefits,
.reviews,
.events,
.ambassadors,
.payments,
.partners-section,
.faq,
.pre-footer,
.footer {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 7px 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    /* Slightly rounded, almost boxy */
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #0a0a0a;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 25px rgba(140, 68, 255, 0.8);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #0a0a0a;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(140, 68, 255, 0.3);
    /* Base glow */
    animation: btn-glow-pulse 2s infinite alternate;
}

@keyframes btn-glow-pulse {
    0% {
        box-shadow: 0 0 10px rgba(140, 68, 255, 0.3);
    }

    100% {
        box-shadow: 0 0 20px rgba(140, 68, 255, 0.6);
    }
}

.btn-outline {
    border: 2px solid var(--text-color);
    color: var(--text-color);
    margin-right: 15px;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Glassmorphism Effects */
.commission-intro,
.features-tabs,
.products,
.benefits,
.reviews,
.events,
.ambassadors,
.payments,
.partners-section,
.faq,
.pre-footer,
.footer {
    background: linear-gradient(180deg, rgba(15, 12, 26, 0.4) 0%, rgba(30, 20, 50, 0.2) 100%);
    backdrop-filter: blur(20px);
}

.btn-primary {
    background: linear-gradient(135deg, rgba(140, 68, 255, 0.8) 0%, rgba(0, 204, 255, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(140, 68, 255, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: glow-pulse 2s infinite;
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(0, 204, 255, 0.6), 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(30, 20, 50, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    border-color: rgba(0, 204, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 204, 255, 0.2);
    transform: translateY(-5px);
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(30, 20, 50, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    border-color: rgba(255, 0, 128, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 128, 0.15);
    transform: translateY(-3px);
}

.promo-block {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(30, 20, 50, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(140, 68, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(30, 20, 50, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(0, 204, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 204, 255, 0.15);
}

.event-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(30, 20, 50, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(140, 68, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover {
    border-color: rgba(255, 0, 128, 0.4);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 0, 128, 0.2);
    transform: translateY(-5px);
}

.ambassador-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(30, 20, 50, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(140, 68, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer {
    background: linear-gradient(180deg, rgba(15, 12, 26, 0.8) 0%, rgba(10, 10, 15, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(140, 68, 255, 0.1);
}

.manual-step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(30, 20, 50, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(140, 68, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(30, 20, 50, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comm-col {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(30, 20, 50, 0.5) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(140, 68, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.section-title {
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(140, 68, 255, 0.5);
    /* Glow effect */
}

.highlight-gradient {
    background: linear-gradient(135deg, #8c44ff 0%, #a86aff 50%, #c190ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(140, 68, 255, 0.4);
    display: inline-block;
    font-weight: 900;
}

/* Header - Liquid Glass Effect */
.header {
    padding: 8px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, 
        rgba(140, 68, 255, 0.08) 0%, 
        rgba(37, 28, 74, 0.4) 50%, 
        rgba(140, 68, 255, 0.08) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(140, 68, 255, 0.15);
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 40px rgba(140, 68, 255, 0.1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    animation: liquid-shine 6s infinite linear;
    pointer-events: none;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(140, 68, 255, 0.5) 50%, 
        transparent 100%);
    box-shadow: 0 0 10px rgba(140, 68, 255, 0.3);
}

@keyframes liquid-shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 200%;
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(140, 68, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(140, 68, 255, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(140, 68, 255, 0.6);
}

.nav-list {
    display: flex;
    gap: 20px;
}

.nav-list a {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding: 8px 14px;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color), 
        transparent);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(140, 68, 255, 0.8);
}

.nav-list a:hover {
    color: var(--primary-color);
    background: rgba(140, 68, 255, 0.1);
    box-shadow: 0 0 20px rgba(140, 68, 255, 0.15);
}

.nav-list a:hover::after {
    width: 60%;
}

.nav-list a.highlight {
    background: linear-gradient(135deg, 
        rgba(140, 68, 255, 0.2) 0%, 
        rgba(168, 106, 255, 0.2) 100%);
    border: 1px solid rgba(140, 68, 255, 0.3);
    box-shadow: 
        0 0 15px rgba(140, 68, 255, 0.2),
        inset 0 0 10px rgba(140, 68, 255, 0.05);
}

.nav-list a.highlight:hover {
    background: linear-gradient(135deg, 
        rgba(140, 68, 255, 0.35) 0%, 
        rgba(168, 106, 255, 0.35) 100%);
    box-shadow: 
        0 0 25px rgba(140, 68, 255, 0.4),
        inset 0 0 15px rgba(140, 68, 255, 0.1);
}

.mobile-toggle {
    display: none;
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(140, 68, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.mobile-toggle:hover {
    border-color: rgba(140, 68, 255, 0.5);
    box-shadow: 0 0 20px rgba(140, 68, 255, 0.2);
    transform: scale(1.05);
}

.mobile-toggle:hover::before {
    left: 100%;
}

.mobile-toggle.active {
    background: rgba(140, 68, 255, 0.15);
    border-color: rgba(140, 68, 255, 0.4);
    box-shadow: 
        0 0 25px rgba(140, 68, 255, 0.3),
        inset 0 0 15px rgba(140, 68, 255, 0.1);
}

.mobile-toggle.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(140, 68, 255, 0.8);
    animation: toggle-glow 1s infinite;
}

@keyframes toggle-glow {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/* Language Selector - Liquid Glass */
.lang-selector {
    position: relative;
    margin-right: 15px;
}

.lang-btn {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.lang-btn:hover {
    border-color: rgba(140, 68, 255, 0.5);
    color: var(--primary-color);
    background: rgba(140, 68, 255, 0.1);
    box-shadow: 0 0 15px rgba(140, 68, 255, 0.2);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(180deg,
        rgba(37, 28, 74, 0.95) 0%,
        rgba(22, 20, 33, 0.98) 100%);
    border: 1px solid rgba(140, 68, 255, 0.2);
    border-radius: 12px;
    min-width: 140px;
    display: none;
    z-index: 1001;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(140, 68, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.lang-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 50% 0%,
        rgba(140, 68, 255, 0.1) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.lang-dropdown.active {
    display: block;
    animation: glass-dropdown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes glass-dropdown {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lang-dropdown a {
    display: block;
    padding: 12px 18px;
    color: #fff;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(140, 68, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.lang-dropdown a:last-child {
    border-bottom: none;
}

.lang-dropdown a:hover {
    background: linear-gradient(135deg, 
        rgba(140, 68, 255, 0.25) 0%, 
        rgba(168, 106, 255, 0.25) 100%);
    color: #fff;
    padding-left: 25px;
    box-shadow: inset 0 0 15px rgba(140, 68, 255, 0.1);
}

.lang-dropdown a:hover::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(140, 68, 255, 0.8);
}



/* Stats Section */
.stats {
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-card {
    background: #0a0a0a;
    padding: 2px;
    /* For border gradient simulation if needed, or just specific hex shape */
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.hex-border {
    background: var(--card-bg);
    padding: 30px 50px;
    text-align: center;
    border: 1px solid var(--primary-color);
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}

.hex-border h2 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 2.2rem;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    background: #2d235c;
    transform: translateY(-5px);
}

.icon-box {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--section-bg);
}

.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 40px;
    background: linear-gradient(90deg, #251c4a 0%, #1a162b 100%);
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
}

.product-card.reverse {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 5px solid var(--primary-color);
    text-align: right;
    background: linear-gradient(-90deg, #251c4a 0%, #1a162b 100%);
}

.reverse .product-content ul li {
    justify-content: flex-end;
}

.product-icon {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
}

.product-content ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-muted);
}

/* Reviews - Simple Layout for now */
.reviews {
    padding: 100px 0;
}

.reviews-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.reviews-wrapper {
    max-width: 800px;
    text-align: center;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 10px;
    position: relative;
    border: 1px solid rgba(140, 68, 255, 0.2);
}

.review-card {
    display: none;
}

.review-card.active {
    display: block;
    animation: fadeIn 0.5s;
}

.review-avatar {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.slider-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: #0a0a0a;
}

/* Commission Intro Section */
.commission-intro {
    padding: 80px 0;
    background: #1a162b;
    /* Keeping dark theme */
    position: relative;
    z-index: 20;
    border-bottom: 1px solid #2d235c;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.comm-header {
    max-width: 900px;
    margin: 0 auto 60px;
}

.comm-subtitle {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.comm-header h1 {
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--primary-color);
    text-transform: none;
    /* Sentence case from image */
    font-family: var(--font-heading);
    font-weight: 700;
}

.comm-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.comm-col {
    background: #2d235c;
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    /* The specific border from image */
    transition: transform 0.3s;
}

.comm-col:hover {
    transform: translateY(-5px);
    background: #251c4a;
}

.comm-col-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.comm-col-icon {
    font-size: 2rem;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comm-col h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
}

/* Tabs Section */
.features-tabs {
    padding: 100px 0;
    background: #161421;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.tabs-header {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #2d235c;
    margin-bottom: 60px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    padding: 20px 40px;
    cursor: pointer;
    position: relative;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.tab-btn:hover {
    color: #fff;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 -5px 15px rgba(140, 68, 255, 0.4);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-pane.active {
    display: block;
}

.tab-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    background: radial-gradient(circle, rgba(140, 68, 255, 0.05) 0%, transparent 70%);
    border-radius: 20px;
}

.tab-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(140, 68, 255, 0.2);
    object-fit: contain;
}

.abstract-phone,
.abstract-gear {
    font-size: 8rem;
    color: var(--primary-color);
    position: relative;
    animation: float-gentle 4s infinite ease-in-out;
}

.abstract-phone::after {
    /* Simple phone outline glow */
    content: '';
    position: absolute;
    top: -20px;
    left: -40px;
    right: -40px;
    bottom: -20px;
    border: 2px solid rgba(140, 68, 255, 0.3);
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(140, 68, 255, 0.1);
}

.tab-text h3 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #fff;
}

.tab-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .tab-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tab-visual {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .tab-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tab-visual {
        margin-bottom: 30px;
    }
}

/* Promo Showcase Section */
.promo-showcase {
    padding: 100px 0;
    background: var(--section-bg);
}

.promo-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.promo-block:last-child {
    margin-bottom: 0;
}

.promo-img {
    flex: 1;
    position: relative;
}

.promo-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(140, 68, 255, 0.2);
    transition: transform 0.3s;
}

.promo-img:hover img {
    transform: scale(1.02);
}

.promo-content {
    flex: 1;
}

.promo-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.promo-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Reverse Layout for second block if desired, but user image showed same layout. 
   I implemented a .reverse class in HTML just in case, let's style it. */
.promo-block.reverse {
    flex-direction: row-reverse;
    /* Alternating layout for visual interest */
}

@media (max-width: 900px) {

    .promo-block,
    .promo-block.reverse {
        flex-direction: column;
        text-align: center;
    }

    .promo-img {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Commission Section */
.commission {
    padding: 100px 0;
    background: #1a162b;
    position: relative;
    /* Background pattern for realism */
    background-image: radial-gradient(circle at 10% 20%, rgba(140, 68, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(140, 68, 255, 0.05) 0%, transparent 20%);
}

.commission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.comm-card {
    background: linear-gradient(145deg, #1e1e1e, #2d235c);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Realistic Card Effect */
.comm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.comm-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--primary-color);
}

.comm-card.standout {
    background: linear-gradient(145deg, #2a2a2a, #251c4a);
    border: 1px solid rgba(140, 68, 255, 0.3);
}

.comm-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(140, 68, 255, 0.4));
}

.comm-card h3 {
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.comm-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.comm-highlight {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.comm-sub {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Calculation Info Panel */
.calc-info {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
}

.calc-info h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.calc-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(140, 68, 255, 0.3);
    padding-bottom: 10px;
    display: inline-block;
}

.calc-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Events */
.events {
    padding: 100px 0;
}

.event-poster {
    margin-bottom: 50px;
    text-align: center;
}

.event-poster img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(140, 68, 255, 0.3);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.event-card {
    background: linear-gradient(45deg, var(--primary-color), #ffaa00);
    padding: 30px;
    border-radius: 10px;
    color: #0a0a0a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s;
}

.event-card:hover {
    transform: scale(1.05);
}

.event-logo {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
}

/* Ambassadors */
.ambassadors {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1a1500 100%);
}

/* Featured Ambassador (Messi Full Poster) */
.ambassador-featured {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.ambassador-featured img {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(140, 68, 255, 0.3);
}

.ambassador-featured-name {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-top: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(140, 68, 255, 0.5);
}

.ambassadors-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.ambassador-card {
    text-align: center;
    position: relative;
    max-width: 400px;
}

.ambassador-img-wrapper {
    height: 500px;
    /* Taller container */
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

/* User requested image to "fit" */
.ambassador-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensures the whole image is visible without cropping */
    object-position: bottom center;
    /* Aligns figure to bottom */
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    transition: 0.5s;
}

.ambassador-card:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px var(--primary-color));
}

.ambassador-name {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 20px;
    text-transform: uppercase;
}

/* Payment Methods */
.payments {
    padding: 80px 0;
    background: #161421;
    border-top: 1px solid #2d235c;
}

.payment-poster {
    margin-top: 40px;
    background: #fff;
    /* White bg for logos usually looks cleaner, or transparent if png is transparent */
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
}

.payment-poster img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.partners-poster {
    margin-top: 40px;
}

.partners-poster img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Partners Logos */
.partners-logos {
    padding: 40px 0;
    background: #0a0a0a;
    overflow: hidden;
    white-space: nowrap;
}

.scroll-container {
    overflow: hidden;
}

.logos-track {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.logos-track i,
.logos-track .logo-text {
    font-size: 3rem;
    margin: 0 40px;
    color: #444;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: #0e0e0e;
}

.faq-box-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #333;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    background: #161421;
}

.faq-box-wrapper::before {
    /* Gold border effect top */
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}

.faq-item {
    border-bottom: 1px solid #2d235c;
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Approximate max height */
    padding-bottom: 20px;
    transition: max-height 0.3s ease-in;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--primary-color);
}

/* Pre-Footer Section */
.pre-footer {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a162b 100%);
    text-align: center;
}

.pre-footer-logo {
    margin: 0 auto 30px auto;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pre-footer-logo .logo-m {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
    display: block;
    white-space: nowrap;
}

.pre-footer-logo .logo-m i {
    color: var(--primary-color);
    font-size: 1.8rem;
    vertical-align: middle;
}

.pre-footer-logo .logo-partners {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(90deg, #8c44ff, #a86aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 6px;
    margin-top: -5px;
    white-space: nowrap;
}

.pre-footer-disclaimer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.pre-footer-disclaimer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.pre-footer-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pre-footer-actions .btn {
    min-width: 140px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(140, 68, 255, 0.3);
    color: var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pre-footer-actions .btn:hover {
    background: linear-gradient(135deg, rgba(140, 68, 255, 0.15) 0%, rgba(140, 68, 255, 0.05) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(140, 68, 255, 0.4);
    color: #fff;
    transform: translateY(-3px);
}

.pre-footer-actions .btn.btn-telegram {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
    border: 1px solid rgba(0, 136, 204, 0.3);
    padding: 12px 30px;
    font-size: 1.5rem;
}

.pre-footer-actions .btn.btn-telegram:hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2) 0%, rgba(0, 136, 204, 0.05) 100%);
    border-color: #0088cc;
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.4);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    border-top: 2px solid var(--primary-color);
    background: #090909;
}

.footer-container {
    text-align: center;
}

.footer-socials {
    margin: 30px 0;
}

.footer-socials a {
    font-size: 1.5rem;
    margin: 0 15px;
    color: #fff;
}

.footer-socials a:hover {
    color: var(--primary-color);
}

.footer-links {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-copy {
    color: #444;
    font-size: 0.8rem;
}

/* Scroll Animations Init State */
[data-animate] {
    opacity: 0;
    transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="slide-up"] {
    transform: translateY(50px);
}

[data-animate="slide-right"] {
    transform: translateX(-50px);
}

[data-animate="slide-left"] {
    transform: translateX(50px);
}

[data-animate="zoom-in"] {
    transform: scale(0.8);
}

.animate-active {
    opacity: 1;
    transform: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-actions .btn {
        display: none;
    }

    .header-actions .mobile-toggle {
        display: block;
        color: #fff;
        position: relative;
        z-index: 1002;
        /* Ensure toggle button stays on top */
    }

    .header-actions {
        position: relative;
        z-index: 1002;
        /* Keep header actions on top */
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(180deg,
            rgba(22, 20, 33, 0.95) 0%,
            rgba(37, 28, 74, 0.85) 100%);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        z-index: 1001;
        box-shadow: 
            0 15px 50px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(140, 68, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        border-top: 1px solid rgba(140, 68, 255, 0.2);
        overflow: hidden;
    }

    .nav-list.active {
        display: flex;
        animation: glass-slide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes glass-slide {
        0% {
            opacity: 0;
            transform: translateY(-20px) scale(0.95);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .nav-list::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
            circle at 50% 0%,
            rgba(140, 68, 255, 0.15) 0%,
            transparent 50%
        );
        animation: ambient-glow 4s ease-in-out infinite;
        pointer-events: none;
    }

    @keyframes ambient-glow {
        0%, 100% {
            opacity: 0.5;
            transform: translateY(0);
        }
        50% {
            opacity: 1;
            transform: translateY(10%);
        }
    }

    .nav-list li {
        margin: 12px 0;
        position: relative;
        z-index: 1;
    }

    .nav-list a {
        display: block;
        padding: 12px 20px;
        font-size: 1.1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        overflow: hidden;
    }

    .nav-list a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(140, 68, 255, 0.2),
            transparent
        );
        transition: left 0.5s;
    }

    .nav-list a:hover {
        background: rgba(140, 68, 255, 0.15);
        border-radius: 12px;
        border-color: rgba(140, 68, 255, 0.3);
        transform: translateX(5px);
        box-shadow: 
            0 0 20px rgba(140, 68, 255, 0.2),
            inset 0 0 20px rgba(140, 68, 255, 0.1);
    }

    .nav-list a:hover::before {
        left: 100%;
    }

    .nav-list a.highlight {
        background: linear-gradient(135deg, 
            rgba(140, 68, 255, 0.3) 0%, 
            rgba(168, 106, 255, 0.3) 100%);
        border-color: rgba(140, 68, 255, 0.5);
        box-shadow: 
            0 0 20px rgba(140, 68, 255, 0.3),
            inset 0 0 15px rgba(140, 68, 255, 0.1);
    }

    .nav-list a.highlight::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.15),
            transparent
        );
        animation: btn-shine 3s infinite;
    }

    @keyframes btn-shine {
        0% {
            left: -100%;
        }
        50%, 100% {
            left: 200%;
        }
    }

    /* Language selector on mobile */
    .lang-selector {
        z-index: 1003;
        /* Above everything else */
    }

    .lang-dropdown {
        z-index: 1004;
        /* Ensure dropdown is above nav */
    }

    .hero-container,
    .manual-layout,
    .product-card,
    .product-card.reverse,
    .comm-columns,
    .tab-layout {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .hero-visual {
        order: -1;
        /* Move Image to TOP on mobile */
        height: 400px;
        /* Reduce height for mobile */
        margin-top: 50px;
        margin-bottom: 20px;
    }

    .hero-messi-img {
        max-height: 100%;
        /* Reset scale */
    }

    .hero-content {
        transform: none;
        /* Reset vertical shift on mobile */
        margin-top: 0;
    }

    .reverse .product-content ul li {
        justify-content: center;
    }

    .product-content ul li {
        justify-content: center;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
    }

    h1 {
        font-size: 2.5rem;
    }

    .faq-box-wrapper {
        padding: 20px;
    }
}

/* =========================================
   App Download Page Styles
   ========================================= */

.active-link {
    color: var(--primary-color) !important;
}

/* App Hero */
.app-hero {
    min-height: 80vh;
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.app-buttons.justify-center {
    justify-content: center;
}

.btn-app {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    background: #fff;
    color: #0a0a0a;
    border: 2px solid #fff;
    border-radius: 8px;
    transition: 0.3s;
    min-width: 200px;
}

.btn-app:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(140, 68, 255, 0.3);
}

.btn-android {
    background: #3DDC84;
    border-color: #3DDC84;
    color: #fff;
}

.btn-android:hover {
    background: #32b36b;
    border-color: #32b36b;
}

.btn-ios {
    background: #0a0a0a;
    border-color: #333;
    color: #fff;
}

.btn-ios:hover {
    background: #2d235c;
    border-color: #2d235c;
}

.btn-app i {
    font-size: 2.5rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-text span {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.btn-text strong {
    font-size: 1.1rem;
    font-weight: 800;
}

.app-ratings {
    display: flex;
    gap: 40px;
    color: var(--text-muted);
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-item i {
    color: var(--primary-color);
}

.hero-app-img {
    max-height: 130%;
    /* Larger for impact */
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.app-float-icon {
    font-size: 4rem;
    right: 20%;
    left: auto;
    bottom: 20%;
    color: var(--primary-color);
    animation: float-gentle 3s infinite ease-in-out;
}

/* App Features */
.app-features {
    padding: 80px 0;
    background: #1a162b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #251c4a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.feature-card:hover {
    background: #2d235c;
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: rgba(140, 68, 255, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* App Showcase */
.app-showcase {
    padding: 100px 0;
    background: var(--dark-bg);
}

.app-list {
    margin: 20px 0;
}

.app-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
    font-size: 1.05rem;
}

.app-list li i {
    color: var(--primary-color);
}

/* Install Guide */
.install-guide {
    padding: 100px 0;
    background: #161421;
    position: relative;
    overflow: hidden;
}

.install-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(140, 68, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.divider {
    height: 3px;
    width: 80px;
    background: var(--primary-color);
    margin: 20px auto 0;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step-card {
    background: #251c4a;
    padding: 40px 30px;
    border-radius: 20px;
    width: 300px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #0a0a0a;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(140, 68, 255, 0.5);
}

.step-content h3 {
    margin-top: 10px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-arrow {
    color: rgba(255, 255, 255, 0.2);
    font-size: 2rem;
}

.ios-note {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
}

@media (max-width: 900px) {
    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-app {
        width: 100%;
        max-width: 300px;
    }
}
