/* ============================================
   BOT ARBITRAGE - LUXURY CHOCOLATE & GOLD THEME
   ============================================ */

:root {
    /* Chocolate & Gold Color Palette */
    --chocolate-dark: #1a0f0a;
    --chocolate-medium: #2d1810;
    --chocolate-light: #3d2418;
    --gold-primary: #d4af37;
    --gold-bright: #ffd700;
    --gold-glow: #ffed4e;
    --gold-dark: #b8941f;
    --text-gold: #f4d03f;
    --text-light: #e8d5b7;
    --text-white: #ffffff;
    --border-gold: rgba(212, 175, 55, 0.3);
    --shadow-gold: rgba(212, 175, 55, 0.2);
    --gradient-chocolate: linear-gradient(135deg, #1a0f0a 0%, #2d1810 50%, #3d2418 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #f4d03f 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--chocolate-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   MODERN ANIMATIONS
   ============================================ */

/* Fade-in animation for sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateGlow {
    0%, 100% {
        box-shadow: 0 0 20px var(--shadow-gold);
    }
    50% {
        box-shadow: 0 0 40px var(--gold-primary), 0 0 60px var(--shadow-gold);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* 3D Transform Effects */
.card-3d {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.card-3d:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gold);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-shadow: 0 0 10px var(--shadow-gold);
}

.nav-brand i {
    font-size: 1.8rem;
    animation: pulse-glow 2s ease-in-out infinite, icon-bounce 3s ease-in-out infinite;
    display: inline-block;
    transition: all 0.3s ease;
}

.nav-brand:hover i {
    transform: rotate(360deg) scale(1.2);
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--gold-primary);
    text-shadow: 0 0 8px var(--shadow-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--gold-primary);
    border-radius: 5px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--gold-primary);
    color: var(--chocolate-dark);
    box-shadow: 0 0 15px var(--shadow-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold-primary);
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    padding-bottom: 6rem;
    overflow: visible;
    z-index: 1;
    margin-bottom: 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.golden-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--chocolate-dark) 0%, var(--chocolate-medium) 100%);
    background-size: 200% 200%;
    animation: pattern-move 20s ease infinite;
}

@keyframes pattern-move {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
}

.coin {
    position: absolute;
    font-size: 3rem;
    color: var(--gold-primary);
    opacity: 0.3;
    text-shadow: 0 0 20px var(--shadow-gold);
    animation: float 6s ease-in-out infinite, coinGlow 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coin:hover {
    opacity: 0.6;
    transform: scale(1.2);
    text-shadow: 0 0 30px var(--gold-primary);
}

@keyframes coinGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.5);
    }
}

.coin-1 { top: 10%; left: 10%; animation-delay: 0s; }
.coin-2 { top: 60%; left: 80%; animation-delay: 1.5s; }
.coin-3 { top: 30%; left: 70%; animation-delay: 3s; }
.coin-4 { top: 80%; left: 20%; animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
    width: 100%;
    padding-bottom: 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    animation: fadeInUp 1s ease-out;
}

.hero-title span {
    display: inline-block;
    animation: fadeInUp 1s ease-out backwards;
}

.hero-title span:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-title span:nth-child(2) {
    animation-delay: 0.3s;
}

.hero-title span:nth-child(3) {
    animation-delay: 0.5s;
}

.glow-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--shadow-gold);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.7s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.9s backwards;
}

.hero-buttons .btn {
    animation: scaleIn 0.6s ease-out backwards;
}

.hero-buttons .btn:nth-child(1) {
    animation-delay: 1.1s;
}

.hero-buttons .btn:nth-child(2) {
    animation-delay: 1.3s;
}

.hero-buttons .btn:nth-child(3) {
    animation-delay: 1.5s;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--chocolate-dark);
    box-shadow: 0 4px 15px var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px var(--shadow-gold), 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--chocolate-dark);
    box-shadow: 0 0 20px var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-gold);
}

.btn-outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 15px var(--shadow-gold);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    animation: fadeInUp 1s ease-out 1.2s backwards;
    position: relative;
    z-index: 10;
}

.hero-stats .stat-card {
    animation: scaleIn 0.6s ease-out backwards;
}

.hero-stats .stat-card:nth-child(1) {
    animation-delay: 1.4s;
}

.hero-stats .stat-card:nth-child(2) {
    animation-delay: 1.6s;
}

.hero-stats .stat-card:nth-child(3) {
    animation-delay: 1.8s;
}

.stat-card {
    background: rgba(45, 24, 16, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::after {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px var(--shadow-gold), 0 0 15px rgba(212, 175, 55, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    text-shadow: 0 0 10px var(--shadow-gold);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: 5rem 0;
    position: relative;
}

.about {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--shadow-gold);
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto 1rem;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--shadow-gold);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: var(--chocolate-medium);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.feature-item i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.about-visual {
    position: relative;
}

.trading-visual {
    background: rgba(26, 15, 10, 0.8);
    border: 2px solid var(--border-gold);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.trading-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.exchange-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.exchange-card i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.profit-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    background: var(--chocolate-dark);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.step-card {
    background: rgba(45, 24, 16, 0.6);
    border: 2px solid var(--border-gold);
    border-radius: 15px;
    padding: 2.5rem;
    padding-top: 3.5rem;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    overflow: visible;
    margin-top: 2rem;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.step-card:hover::before {
    left: 100%;
}

.step-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px var(--shadow-gold), 0 0 25px rgba(212, 175, 55, 0.3);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--chocolate-dark);
    box-shadow: 0 0 20px var(--shadow-gold), 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 20;
    border: 3px solid var(--chocolate-dark);
}

.step-icon {
    font-size: 4rem;
    color: var(--gold-primary);
    margin: 2rem 0 1.5rem;
    text-shadow: 0 0 20px var(--shadow-gold);
    animation: icon-pulse 2s ease-in-out infinite, icon-float 3s ease-in-out infinite;
    display: inline-block;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 30px var(--gold-primary), 0 0 50px var(--shadow-gold);
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.step-card h3 {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   INVESTMENT PLANS SECTION
   ============================================ */

.plans {
    background: var(--chocolate-medium);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.plan-card {
    background: rgba(26, 15, 10, 0.8);
    border: 2px solid var(--border-gold);
    border-radius: 20px;
    padding: 2.5rem;
    padding-top: 3.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    overflow: visible;
    margin-top: 1.5rem;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card:hover {
    transform: translateY(-15px) rotateX(2deg) scale(1.02);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
}

.plan-card.featured {
    border-color: var(--gold-primary);
    box-shadow: 0 0 30px var(--shadow-gold);
    transform: scale(1.05);
}

.plan-badge-popular {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--chocolate-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 15px var(--shadow-gold), 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 30;
    white-space: nowrap;
    border: 2px solid var(--chocolate-dark);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.plan-header h3 {
    font-size: 1.8rem;
    color: var(--gold-primary);
    font-family: 'Playfair Display', serif;
}

.plan-badge {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-gold);
}

.plan-price .currency {
    font-size: 1.5rem;
    color: var(--gold-primary);
    vertical-align: top;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: 'Playfair Display', serif;
}

.plan-price .period {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.7;
}

.plan-roi {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.roi-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    display: block;
    font-family: 'Playfair Display', serif;
}

.roi-label {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.8rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-features i {
    color: var(--gold-primary);
}

.btn-plan {
    width: 100%;
    text-align: center;
    background: var(--gradient-gold);
    color: var(--chocolate-dark);
    border: 2px solid var(--gold-primary);
    font-weight: 700;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-plan:hover::before {
    left: 100%;
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-gold);
    background: linear-gradient(135deg, #ffd700 0%, #f4d03f 50%, #d4af37 100%);
}

.plan-card.featured .btn-plan {
    box-shadow: 0 6px 20px var(--shadow-gold);
    background: linear-gradient(135deg, #ffd700 0%, #f4d03f 50%, #d4af37 100%);
}

.plan-card.featured .btn-plan:hover {
    box-shadow: 0 10px 35px var(--shadow-gold);
    transform: translateY(-4px);
}

/* ============================================
   REFERRAL SECTION
   ============================================ */

.referral {
    background: var(--chocolate-dark);
}

.referral-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.referral-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.referral-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(45, 24, 16, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.referral-stat:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 5px 20px var(--shadow-gold);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: 'Playfair Display', serif;
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.referral-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.referral-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.referral-benefits li {
    padding: 0.8rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.referral-benefits i {
    color: var(--gold-primary);
}

.referral-section-title {
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.referral-stat-single {
    text-align: center;
    padding: 2rem;
    background: rgba(45, 24, 16, 0.6);
    border: 2px solid var(--border-gold);
    border-radius: 15px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.referral-stat-single:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 5px 20px var(--shadow-gold);
}

.stat-number-large {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-primary);
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 20px var(--shadow-gold);
}

.stat-desc-large {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-weight: 500;
}

.salary-table {
    background: rgba(26, 15, 10, 0.8);
    border: 2px solid var(--border-gold);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.salary-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}

.salary-row:last-child {
    border-bottom: none;
}

.salary-row:hover:not(.header) {
    background: rgba(212, 175, 55, 0.1);
}

.salary-row.header {
    background: rgba(212, 175, 55, 0.2);
    border-bottom: 2px solid var(--gold-primary);
}

.salary-col {
    padding: 1rem 1.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.salary-row.header .salary-col {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.salary-row:not(.header) .salary-col:last-child {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.team-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.tree-node {
    background: rgba(45, 24, 16, 0.8);
    border: 2px solid var(--border-gold);
    border-radius: 10px;
    padding: 1rem 2rem;
    color: var(--gold-primary);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.tree-node:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px var(--shadow-gold);
}

.tree-node.root {
    background: var(--gradient-gold);
    color: var(--chocolate-dark);
    font-weight: 700;
    box-shadow: 0 0 20px var(--shadow-gold);
}

.tree-branches {
    display: flex;
    gap: 2rem;
}

.tree-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.tree-sub-branches {
    display: flex;
    gap: 1rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    background: var(--chocolate-medium);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(26, 15, 10, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.feature-card:hover::after {
    width: 300px;
    height: 300px;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px var(--shadow-gold), 0 0 20px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--shadow-gold);
    animation: icon-rotate 3s ease-in-out infinite, icon-glow 2s ease-in-out infinite;
    display: inline-block;
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.3) rotate(360deg);
    text-shadow: 0 0 25px var(--gold-primary), 0 0 40px var(--shadow-gold);
    color: var(--gold-bright);
}

@keyframes icon-rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

@keyframes icon-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   LIVE EARNINGS TICKER
   ============================================ */

.live-earnings {
    background: rgba(26, 15, 10, 0.8);
    border-top: 2px solid var(--border-gold);
    border-bottom: 2px solid var(--border-gold);
    padding: 1.5rem 0;
    overflow: hidden;
}

.ticker-header {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--gold-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.ticker-header i {
    animation: pulse-glow 2s ease-in-out infinite;
}

.ticker-container {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    margin: 0 3rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.ticker-item .user-name {
    color: var(--gold-primary);
    font-weight: 600;
}

.ticker-item .amount {
    color: var(--gold-bright);
    font-weight: 700;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   ROADMAP SECTION
   ============================================ */

.roadmap {
    background: var(--chocolate-dark);
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-gold);
    box-shadow: 0 0 10px var(--shadow-gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.timeline-marker {
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--gradient-gold);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--shadow-gold);
    border: 3px solid var(--chocolate-dark);
}

.timeline-content {
    background: rgba(45, 24, 16, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 5px 20px var(--shadow-gold);
}

.timeline-content h3 {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    background: var(--chocolate-medium);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(26, 15, 10, 0.8);
    border: 1px solid var(--border-gold);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    transition: all 0.5s ease;
}

.testimonial-card:hover::before {
    color: rgba(212, 175, 55, 0.2);
    transform: scale(1.2);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px var(--shadow-gold), 0 0 20px rgba(212, 175, 55, 0.3);
}

.testimonial-rating {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--chocolate-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-name {
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.author-earnings {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    background: var(--chocolate-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(45, 24, 16, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold-primary);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-question h3 {
    color: var(--gold-primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--gold-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.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-gradient {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--chocolate-dark) 0%, var(--chocolate-medium) 100%);
    animation: gradient-shift 10s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-content {
    text-align: center;
    z-index: 1;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px var(--shadow-gold);
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--chocolate-dark);
    border-top: 2px solid var(--border-gold);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.footer-brand i {
    font-size: 1.8rem;
}

.footer-section p {
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-section ul li a:hover {
    color: var(--gold-primary);
    opacity: 1;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--chocolate-dark);
    box-shadow: 0 0 15px var(--shadow-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-gold);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    opacity: 0.8;
}

.payment-methods i {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.footer-lang select {
    background: rgba(45, 24, 16, 0.8);
    border: 1px solid var(--border-gold);
    border-radius: 5px;
    padding: 0.5rem 1rem;
    color: var(--text-light);
    cursor: pointer;
}

.footer-copyright {
    color: var(--text-light);
    opacity: 0.7;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 15, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid var(--border-gold);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .referral-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .tree-branches {
        flex-direction: column;
    }

    .referral-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .salary-table {
        font-size: 0.9rem;
    }

    .salary-col {
        padding: 0.8rem 1rem;
    }

    .stat-number-large {
        font-size: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .steps-container,
    .plans-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        text-shadow: 0 0 10px var(--shadow-gold);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 20px var(--shadow-gold), 0 0 30px var(--shadow-gold);
        transform: scale(1.05);
    }
}

