:root {
    --primary-color: #ffcc00;
    /* Gold */
    --primary-hover: #e6b800;
    --dark-bg: #0b0b0b;
    --section-bg: #111111;
    --card-bg: #1a1a1a;
    --text-color: #ffffff;
    --text-muted: #aaaaaa;
    --hex-border: rgba(255, 204, 0, 0.3);
    --transition-speed: 0.3s;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

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;
}

.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    /* Slightly rounded, almost boxy */
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.8);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
    /* Base glow */
    animation: btn-glow-pulse 2s infinite alternate;
}

@keyframes btn-glow-pulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
    }

    100% {
        box-shadow: 0 0 20px rgba(255, 204, 0, 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);
}

.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(255, 204, 0, 0.5);
    /* Glow effect */
}

/* Header */
.header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    /* Hidden on desktop */
    font-size: 24px;
    cursor: pointer;
}

/* Language Selector */
.lang-selector {
    position: relative;
    margin-right: 15px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 5px;
    min-width: 120px;
    display: none;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lang-dropdown.active {
    display: block;
}

.lang-dropdown a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    font-size: 0.9rem;
    border-bottom: 1px solid #222;
}

.lang-dropdown a:last-child {
    border-bottom: none;
}

.lang-dropdown a:hover {
    background: var(--primary-color);
    color: #000;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    /* Reduced from 180px */
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-elements .hex {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hex-1 {
    top: -50px;
    left: -50px;
}

.hex-2 {
    bottom: 10%;
    right: 20%;
    width: 400px;
    height: 400px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    /* Ensures Image is vertically centered */
}

.hero-content {
    transform: translateY(-80px);
    /* Moves text UP independent of layout flow */
    margin-top: 0;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-visual {
    position: relative;
    height: 700px;
    /* Increased height for larger image */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Internally centers the image */
    align-self: center;
    /* double-ensures grid alignment */
}

.hero-honeycomb-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 350px;
    /* Reduced specific size as requested */
    opacity: 0.6;
    z-index: 1;
    animation: pulse-glow 3s infinite alternate;
}

.hero-messi-img {
    position: relative;
    z-index: 2;
    max-height: 115%;
    /* Increased size */
    filter: drop-shadow(0 0 30px rgba(255, 204, 0, 0.4));
    will-change: transform;
}

.hero-ball {
    position: absolute;
    bottom: 50px;
    left: 42%;
    font-size: 3rem;
    color: #fff;
    z-index: 3;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    will-change: transform;
}

@keyframes pulse-glow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.1));
        opacity: 0.5;
    }

    100% {
        filter: drop-shadow(0 0 30px rgba(255, 204, 0, 0.3));
        opacity: 0.8;
    }
}

@keyframes float-gentle {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* 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: #000;
    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: #222;
    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, #1a1a1a 0%, #111 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, #1a1a1a 0%, #111 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(255, 204, 0, 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: #000;
}

/* Commission Intro Section */
.commission-intro {
    padding: 80px 0;
    background: #111;
    /* Keeping dark theme */
    position: relative;
    z-index: 20;
    border-bottom: 1px solid #222;
}

.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: #161616;
    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: #1a1a1a;
}

.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: #0f0f0f;
}

.tabs-header {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #222;
    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(255, 204, 0, 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(255, 204, 0, 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(255, 204, 0, 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(255, 204, 0, 0.3);
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(255, 204, 0, 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(255, 204, 0, 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: #111;
    position: relative;
    /* Background pattern for realism */
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 204, 0, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 204, 0, 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, #161616);
    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, #1a1a1a);
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.comm-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 204, 0, 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(255, 204, 0, 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(255, 204, 0, 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: #000;
    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(255, 204, 0, 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(255, 204, 0, 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: #0b0b0b;
    border-top: 1px solid #222;
}

.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: #000;
    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: #0b0b0b;
}

.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 #222;
    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, #1a0a00 0%, #2d1200 30%, #8B4513 70%, #D2691E 100%);
    text-align: center;
}

.pre-footer-logo {
    margin-bottom: 30px;
}

.pre-footer-logo .logo-m {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 5px;
    display: block;
}

.pre-footer-logo .logo-m i {
    color: var(--primary-color);
    font-size: 3rem;
    vertical-align: middle;
}

.pre-footer-logo .logo-partners {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(90deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 10px;
    margin-top: -10px;
}

.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;
}

.btn-telegram {
    background: #0088cc;
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.5rem;
    border: none;
    transition: 0.3s;
}

.btn-telegram:hover {
    background: #006699;
    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;
    }

    .nav-list {
        display: none;
        /* Add JS toggle later */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .nav-list.active {
        display: flex;
    }

    .hero-container,
    .manual-layout,
    .product-card,
    .product-card.reverse {
        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;
    }
}