/* 91 Club Theme CSS Variables */
:root {
    /* 91 Club Brand Colors */
    --primary-orange: #FF9900;
    --secondary-blue: #336688;
    --accent-yellow: #FFCC00;
    --dark-navy: #1a2332;
    --light-navy: #2a3f54;
    --deep-blue: #0f1419;
    
    /* Gradients using 91 Club colors */
    --primary-gradient: linear-gradient(135deg, #FF9900 0%, #FFCC00 100%);
    --secondary-gradient: linear-gradient(135deg, #336688 0%, #4a7c9a 100%);
    --accent-gradient: linear-gradient(135deg, #FFCC00 0%, #FF9900 100%);
    --dark-gradient: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2a3f54 100%);
    
    /* Background colors */
    --bg-primary: #0f1419;
    --bg-secondary: #1a2332;
    --bg-tertiary: #2a3f54;
    --bg-card: rgba(26, 35, 50, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    /* Text colors */
    --text-primary: #ffffff;
    --text-secondary: #b8c5d1;
    --text-muted: #8a9ba8;
    --text-accent: #FFCC00;
    
    /* Accent colors */
    --accent-primary: #FF9900;
    --accent-secondary: #336688;
    --accent-tertiary: #FFCC00;
    --accent-success: #10b981;
    --accent-warning: #f59e0b;
    --accent-error: #ef4444;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(255, 153, 0, 0.3);
    
    /* Border radius */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--bg-primary);
    min-height: 100vh;
    scroll-behavior: smooth;
}

/* Premium Background Effects */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -3;
}

.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--accent-primary);
    top: 10%;
    left: 10%;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-secondary);
    top: 60%;
    right: 15%;
    animation: float 25s ease-in-out infinite reverse;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-tertiary);
    bottom: 20%;
    left: 20%;
    animation: float 30s ease-in-out infinite;
}

.orb-4 {
    width: 180px;
    height: 180px;
    background: var(--accent-primary);
    top: 30%;
    right: 30%;
    animation: float 22s ease-in-out infinite reverse;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 153, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(51, 102, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 204, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 20, 25, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 0.75rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 153, 0, 0.2);
    box-shadow: var(--shadow-md);
}

/* Mobile navigation optimization */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 20, 25, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
    transition: all 0.3s ease;
        border-top: 1px solid rgba(255, 153, 0, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 0.35rem;
        cursor: pointer;
        z-index: 1001;
        padding: 0.75rem;
        background: rgba(255, 153, 0, 0.1);
        border: 2px solid rgba(255, 153, 0, 0.3);
        border-radius: 12px;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-toggle:hover {
        background: rgba(255, 153, 0, 0.2);
        border-color: rgba(255, 153, 0, 0.5);
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 153, 0, 0.3);
    }
    
    .nav-toggle span {
        width: 24px;
        height: 3px;
        background: linear-gradient(135deg, #ff9900, #ffcc00);
        transition: all 0.3s ease;
        border-radius: 2px;
        box-shadow: 0 2px 4px rgba(255, 153, 0, 0.3);
    }
    
    .nav-toggle.active {
        background: rgba(255, 153, 0, 0.2);
        border-color: rgba(255, 153, 0, 0.6);
        box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: linear-gradient(135deg, #ff6600, #ff9900);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: linear-gradient(135deg, #ff6600, #ff9900);
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        text-align: center;
        margin: 0.5rem 1rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-link:hover {
        background: rgba(255, 153, 0, 0.1);
        border-color: rgba(255, 153, 0, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 153, 0, 0.2);
    }
    
    .nav-link span {
        position: relative;
        z-index: 2;
        font-weight: 500;
        font-size: 1rem;
    }
    
    .nav-link.cta-link {
        margin: 1rem auto 0;
        max-width: 200px;
        background: var(--primary-gradient);
        color: var(--bg-primary) !important;
        border: 1px solid rgba(255, 153, 0, 0.3);
        border-radius: 8px;
        padding: 0.75rem 1.5rem;
        font-weight: 600;
        box-shadow: var(--shadow-glow);
    }
    
    .nav-link.cta-link:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }
    
    /* Prevent body scroll when menu is open */
    body.nav-open {
        overflow: hidden;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-toggle {
    display: none;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
}

.logo-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.logo-text span {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid transparent;
    backdrop-filter: blur(10px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 153, 0, 0.1);
    border-color: rgba(255, 153, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.15);
}

.nav-link span {
    position: relative;
    z-index: 2;
}

.cta-link {
    background: var(--primary-gradient);
    color: var(--bg-primary) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 153, 0, 0.3);
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--dark-gradient);
    padding-top: 5rem;
}

/* Tablet optimization */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .earnings-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .join-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile-first hero optimization */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding-top: 3rem;
        padding-bottom: 2rem;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 0.8rem;
}

.badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: 50px;
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    transition: opacity 0.3s ease;
}

.hero-badge:hover .badge-glow {
    opacity: 0.3;
}

.hero-content {
    color: var(--text-primary);
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Mobile title optimization */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
}

.title-line {
    display: block;
}

.highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
}

/* Mobile subtitle optimization */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
}

.hero-subtitle strong {
    color: var(--accent-tertiary);
    font-weight: 700;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Mobile stats optimization */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

/* Mobile stat cards optimization */
@media (max-width: 768px) {
    .stat-card {
        padding: 0.75rem;
        gap: 0.5rem;
        border-radius: 0.5rem;
    }
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 1rem;
    box-shadow: var(--shadow-glow);
}

/* Mobile stat icons optimization */
@media (max-width: 768px) {
    .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
}

.stat-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-tertiary);
    margin: 0;
    line-height: 1;
}

/* Mobile stat content optimization */
@media (max-width: 768px) {
    .stat-content h3 {
        font-size: 1.1rem;
    }
    
    .stat-content p {
        font-size: 0.75rem;
    }
}

.stat-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

/* Mobile hero buttons optimization */
@media (max-width: 768px) {
    .hero-buttons {
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }
}

.btn {
    position: relative;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
    overflow: hidden;
}

/* Mobile button optimization */
@media (max-width: 768px) {
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        gap: 0.4rem;
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }
    
/* Mobile form optimizations */
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
    font-size: 1rem;
    }
    
    .compact-social-grid,
    .compact-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
    }
    
    .social-option,
    .game-option {
        padding: 0.5rem;
    }
    
    .social-icon,
    .game-icon {
        width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
    }
    
    /* Benefits Section Mobile */
    .benefits-section {
        padding: 2rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .benefit-content h3 {
        font-size: 1.1rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
    
    /* Earnings Section Mobile */
    .earnings {
        padding: 2rem 0;
    }
    
    .earnings-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .earnings-overview {
        padding: 1rem;
    }
    
    .overview-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .overview-content h3 {
        font-size: 1.2rem;
    }
    
    .tier-card {
        padding: 1rem;
    }
    
    .tier-badge {
        font-size: 0.8rem;
        padding: 0.25rem 0.75rem;
    }
    
    .tier-bonus {
        font-size: 1.5rem;
    }
    
    /* Join Section Mobile */
    .join-section {
        padding: 2rem 0;
    }
    
    .join-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .join-content {
        text-align: center;
    }
    
    .join-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .join-content h2 {
        font-size: 2rem;
    }
    
    .join-content p {
        font-size: 1rem;
    }
    
    .join-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .join-form {
        padding: 1.5rem;
    }
    
    .form-section h4 {
        font-size: 1.1rem;
    }
    
    /* Network Showcase Mobile */
    .network-showcase {
        max-width: 100%;
        padding: 1rem 0.5rem;
    }
    
    .network-display {
        width: 220px;
        height: 220px;
    }
    
    .showcase-header h3 {
        font-size: 1.2rem;
    }
    
    .showcase-header p {
        font-size: 0.9rem;
    }
    
    .leader-avatar {
        width: 60px;
        height: 60px;
    }
    
    .leader-avatar i {
        font-size: 1.5rem;
    }
    
    .center-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .ring-1 {
        width: 120px;
        height: 120px;
    }
    
    .ring-2 {
        width: 180px;
        height: 180px;
    }
    
    .node-avatar {
        width: 25px;
        height: 25px;
    }
    
    .node-avatar i {
        font-size: 0.7rem;
    }
    
    .node-info {
        margin-top: 0.3rem;
    }
    
    .node-name {
        font-size: 0.5rem;
    }
    
    .node-earnings {
        font-size: 0.6rem;
    }
    
    .growth-indicator {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .growth-indicator i {
        font-size: 0.8rem;
    }
    
    /* Extra small mobile - referral network */
    .network-container {
        width: 200px;
        height: 200px;
    }
    
    .leader-avatar {
        width: 50px;
        height: 50px;
    }
    
    .leader-avatar i {
        font-size: 1.2rem;
    }
    
    .center-stats {
        gap: 0.75rem;
    }
    
    .stat-number {
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.5rem;
    }
    
    .ring-1 {
        width: 100px;
        height: 100px;
    }
    
    .ring-2 {
        width: 150px;
        height: 150px;
    }
    
    .node-avatar {
        width: 20px;
        height: 20px;
    }
    
    .node-avatar i {
        font-size: 0.6rem;
    }
    
    .node-name {
        font-size: 0.4rem;
    }
    
    .node-earnings {
        font-size: 0.5rem;
    }
    
    .growth-indicator {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .growth-indicator i {
        font-size: 0.7rem;
    }
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(255, 153, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover .btn-shine {
    left: 100%;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile hero visual optimization */
@media (max-width: 768px) {
    .hero-visual {
        display: flex;
        order: -1;
        margin-bottom: 2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    /* Mobile sections padding */
    .benefits-section,
    .earnings,
    .join-section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero {
        padding-top: 2.5rem;
        padding-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
    flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .stat-card {
        padding: 0.6rem;
        gap: 0.4rem;
    }
    
    .stat-icon {
        width: 30px;
        height: 30px;
    font-size: 0.8rem;
}

    .stat-content h3 {
        font-size: 1rem;
    }
    
    .stat-content p {
    font-size: 0.7rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Extra small mobile - all sections */
    .benefits-section,
    .earnings,
    .join-section {
        padding: 1.5rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .benefits-grid {
        gap: 0.75rem;
    }
    
    .benefit-card {
        padding: 0.75rem;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .benefit-content h3 {
        font-size: 1rem;
    }
    
    .benefit-content p {
        font-size: 0.8rem;
    }
    
    .earnings-overview {
        padding: 0.75rem;
    }
    
    .overview-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .overview-content h3 {
        font-size: 1.1rem;
    }
    
    .tier-card {
        padding: 0.75rem;
    }
    
    .tier-bonus {
        font-size: 1.3rem;
    }
    
    .join-content h2 {
        font-size: 1.8rem;
    }
    
    .join-content p {
        font-size: 0.9rem;
    }
    
    .join-form {
        padding: 1rem;
    }
    
    .form-section h4 {
    font-size: 1rem;
}

    .compact-social-grid,
    .compact-game-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.4rem;
    }
    
    .social-option,
    .game-option {
        padding: 0.4rem;
    }
    
    .social-icon,
    .game-icon {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.7rem;
    }
    
    .social-name,
    .game-name {
        font-size: 0.7rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Network Showcase */
.network-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.showcase-header {
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.showcase-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.network-display {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Network Hub */
.network-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.hub-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 153, 0, 0.7);
    animation: hubPulse 2s ease-in-out infinite;
}

.hub-avatar i {
    font-size: 2rem;
    color: var(--bg-primary);
    z-index: 2;
}

.hub-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.2;
    animation: hubGlow 2s ease-in-out infinite;
}

.earning-pulse {
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: earningPulse 3s ease-in-out infinite;
}

/* Agent Nodes */
.agent-nodes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.agent-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: nodeFloat 3s ease-in-out infinite;
}

.agent-node.node-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.agent-node.node-2 {
    top: 60px;
    right: 20px;
    animation-delay: 0.5s;
}

.agent-node.node-3 {
    bottom: 60px;
    right: 20px;
    animation-delay: 1s;
}

.agent-node.node-4 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.agent-node.node-5 {
    bottom: 60px;
    left: 20px;
    animation-delay: 2s;
}

.agent-node.node-6 {
    top: 60px;
    left: 20px;
    animation-delay: 2.5s;
}

.node-avatar {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 153, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.3);
    margin-bottom: 0.5rem;
    animation: nodePulse 2s ease-in-out infinite;
}

.node-avatar i {
    font-size: 0.8rem;
    color: var(--accent-primary);
}

.node-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: nodeGlow 2.5s ease-in-out infinite;
    z-index: -1;
}

.earning-indicator {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    animation: earningFloat 2s ease-in-out infinite;
    z-index: 5;
}

.earning-indicator i {
    font-size: 0.5rem;
}

.earning-amount {
    font-size: 0.6rem;
    font-weight: 800;
}

/* Network Connections */
.network-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.4), transparent);
    animation: connectionFlow 3s ease-in-out infinite;
}

.money-flow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), transparent);
    animation: moneyFlow 2s linear infinite;
    border-radius: 2px;
}

.connection-1 {
    top: 20px;
    left: 50%;
    width: 1px;
    height: 50px;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.connection-2 {
    top: 60px;
    right: 20px;
    width: 50px;
    height: 1px;
    animation-delay: 0.5s;
}

.connection-3 {
    bottom: 60px;
    right: 20px;
    width: 50px;
    height: 1px;
    animation-delay: 1s;
}

.connection-4 {
    bottom: 20px;
    left: 50%;
    width: 1px;
    height: 50px;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.connection-5 {
    bottom: 60px;
    left: 20px;
    width: 50px;
    height: 1px;
    animation-delay: 2s;
}

.connection-6 {
    top: 60px;
    left: 20px;
    width: 50px;
    height: 1px;
    animation-delay: 2.5s;
}

/* Floating Money */
.floating-money {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.money-coin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    color: #000;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.6);
    animation: coinFloat 4s ease-in-out infinite;
}

.coin-1 {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.coin-2 {
    top: 60%;
    right: 15%;
    animation-delay: 0.8s;
}

.coin-3 {
    bottom: 40%;
    left: 70%;
    animation-delay: 1.6s;
}

.coin-4 {
    top: 40%;
    left: 10%;
    animation-delay: 2.4s;
}

.coin-5 {
    bottom: 60%;
    right: 25%;
    animation-delay: 3.2s;
}

.coin-6 {
    top: 80%;
    left: 50%;
    animation-delay: 4s;
}

/* Earning Rays */
.earning-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ray {
    position: absolute;
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.8), transparent);
    border-radius: 1px;
    animation: rayGlow 3s ease-in-out infinite;
}

.ray-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.ray-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(90deg);
    animation-delay: 0.5s;
}

.ray-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    animation-delay: 1s;
}

.ray-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(270deg);
    animation-delay: 1.5s;
}

.ray-5 {
    top: 25%;
    right: 25%;
    transform: rotate(45deg);
    animation-delay: 2s;
}

.ray-6 {
    bottom: 25%;
    left: 25%;
    transform: rotate(225deg);
    animation-delay: 2.5s;
}

/* Growth Indicator */
.growth-indicator {
    margin-top: 2rem;
    text-align: center;
}

.success-content {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 153, 0, 0.3);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    animation: successPulse 2s ease-in-out infinite;
}

.success-content i {
    color: var(--accent-primary);
    font-size: 1rem;
}

.success-content span {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
}

.testimonials-section .container {
    position: relative;
    z-index: 10;
}

/* Floating Achievement Images */
.floating-achievements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.floating-item {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 1rem;
    overflow: hidden;
    border: 3px solid rgba(255, 153, 0, 0.6);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: floatGentle 8s ease-in-out infinite;
}

.floating-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.floating-item:hover .floating-image {
    transform: scale(1.05);
}

.item-1 {
    top: 8%;
    left: 5%;
    animation-delay: 0s;
}

.item-2 {
    top: 15%;
    right: 8%;
    animation-delay: 0.5s;
}

.item-3 {
    top: 25%;
    left: 2%;
    animation-delay: 1s;
}

.item-4 {
    top: 35%;
    right: 5%;
    animation-delay: 1.5s;
}

.item-5 {
    top: 45%;
    left: 8%;
    animation-delay: 2s;
}

.item-6 {
    top: 55%;
    right: 12%;
    animation-delay: 2.5s;
}

.item-7 {
    top: 65%;
    left: 70%;
    animation-delay: 3s;
}

.item-8 {
    top: 75%;
    left: 80%;
    animation-delay: 3.5s;
}

.item-9 {
    top: 85%;
    left: 65%;
    animation-delay: 4s;
}

.item-10 {
    top: 12%;
    left: 60%;
    animation-delay: 4.5s;
}

.item-11 {
    top: 22%;
    left: 85%;
    animation-delay: 5s;
}

.item-12 {
    top: 32%;
    left: 15%;
    animation-delay: 5.5s;
}

.item-13 {
    top: 42%;
    right: 20%;
    animation-delay: 6s;
}

.item-14 {
    top: 52%;
    left: 25%;
    animation-delay: 6.5s;
}

.item-15 {
    top: 62%;
    right: 25%;
    animation-delay: 7s;
}

.item-16 {
    top: 72%;
    left: 45%;
    animation-delay: 7.5s;
}

.item-17 {
    top: 82%;
    right: 30%;
    animation-delay: 8s;
}

/* View Proof Button */
.view-proof-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.view-proof-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

.view-proof-btn i {
    font-size: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 153, 0, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(25px);
    transition: all 0.3s ease;
    animation: testimonialSlide 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    z-index: 15;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.testimonial-item:hover::before {
    left: 100%;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 153, 0, 0.1);
    border-color: rgba(255, 153, 0, 0.4);
}

.testimonial-item:nth-child(1) { animation-delay: 0s; }
.testimonial-item:nth-child(2) { animation-delay: 1s; }
.testimonial-item:nth-child(3) { animation-delay: 2s; }
.testimonial-item:nth-child(4) { animation-delay: 3s; }
.testimonial-item:nth-child(5) { animation-delay: 4s; }
.testimonial-item:nth-child(6) { animation-delay: 5s; }

/* Story Background Images */
.story-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 1.5rem;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    transform: scale(1.1);
    transition: all 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(15, 20, 25, 0.8) 0%, 
        rgba(255, 153, 0, 0.3) 50%, 
        rgba(15, 20, 25, 0.9) 100%);
    backdrop-filter: blur(2px);
}

.testimonial-item:hover .background-image {
    filter: blur(1px);
    transform: scale(1.05);
}

.testimonial-item:hover .image-overlay {
    background: linear-gradient(135deg, 
        rgba(15, 20, 25, 0.7) 0%, 
        rgba(255, 153, 0, 0.4) 50%, 
        rgba(15, 20, 25, 0.8) 100%);
}

/* Floating Success Badge */
.success-badge-floating {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: badgeFloat 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.success-badge-floating i {
    font-size: 0.8rem;
}

.success-badge-floating span {
    font-size: 0.6rem;
    font-weight: 900;
}

/* Individual Story Animations */
.luxury-car-story .proof-image {
    animation: carSuccessPulse 4s ease-in-out infinite;
}

.iphone-story .proof-image {
    animation: phoneSuccessPulse 4s ease-in-out infinite;
}

.cash-story .proof-image {
    animation: moneySuccessPulse 4s ease-in-out infinite;
}

.harrier-story .proof-image {
    animation: harrierSuccessPulse 4s ease-in-out infinite;
}

.devices-story .proof-image {
    animation: gadgetsSuccessPulse 4s ease-in-out infinite;
}

.showroom-story .proof-image {
    animation: showroomSuccessPulse 4s ease-in-out infinite;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 5;
}

.agent-photo {
    width: 60px;
    height: 60px;
    color: var(--accent-primary);
    font-size: 3rem;
    flex-shrink: 0;
}

.agent-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.location {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.monthly-earnings {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.testimonial-content {
    position: relative;
    z-index: 5;
}

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #FFD700;
    font-size: 0.9rem;
}

.testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
}


/* Agent Nodes */
.agent-nodes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.agent-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: nodeFloat 3s ease-in-out infinite;
}

.agent-node.node-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.agent-node.node-2 {
    top: 60px;
    right: 20px;
    animation-delay: 0.5s;
}

.agent-node.node-3 {
    bottom: 60px;
    right: 20px;
    animation-delay: 1s;
}

.agent-node.node-4 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.agent-node.node-5 {
    bottom: 60px;
    left: 20px;
    animation-delay: 2s;
}

.agent-node.node-6 {
    top: 60px;
    left: 20px;
    animation-delay: 2.5s;
}

.node-avatar {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 153, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.3);
    margin-bottom: 0.5rem;
    animation: nodePulse 2s ease-in-out infinite;
}

.node-avatar i {
    font-size: 0.8rem;
    color: var(--accent-primary);
}

.node-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: nodeGlow 2.5s ease-in-out infinite;
    z-index: -1;
}

.earning-indicator {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    animation: earningFloat 2s ease-in-out infinite;
    z-index: 5;
}

.earning-indicator i {
    font-size: 0.5rem;
}

.earning-amount {
    font-size: 0.6rem;
    font-weight: 800;
}


/* Network Connections */
.network-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.4), transparent);
    animation: connectionFlow 3s ease-in-out infinite;
}

.money-flow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), transparent);
    animation: moneyFlow 2s linear infinite;
    border-radius: 2px;
}

.connection-1 {
    top: 20px;
    left: 50%;
    width: 1px;
    height: 50px;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.connection-2 {
    top: 60px;
    right: 20px;
    width: 50px;
    height: 1px;
    animation-delay: 0.5s;
}

.connection-3 {
    bottom: 60px;
    right: 20px;
    width: 50px;
    height: 1px;
    animation-delay: 1s;
}

.connection-4 {
    bottom: 20px;
    left: 50%;
    width: 1px;
    height: 50px;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.connection-5 {
    bottom: 60px;
    left: 20px;
    width: 50px;
    height: 1px;
    animation-delay: 2s;
}

.connection-6 {
    top: 60px;
    left: 20px;
    width: 50px;
    height: 1px;
    animation-delay: 2.5s;
}

/* Floating Money */
.floating-money {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.money-coin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    color: #000;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.6);
    animation: coinFloat 4s ease-in-out infinite;
}

.coin-1 {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.coin-2 {
    top: 60%;
    right: 15%;
    animation-delay: 0.8s;
}

.coin-3 {
    bottom: 40%;
    left: 70%;
    animation-delay: 1.6s;
}

.coin-4 {
    top: 40%;
    left: 10%;
    animation-delay: 2.4s;
}

.coin-5 {
    bottom: 60%;
    right: 25%;
    animation-delay: 3.2s;
}

.coin-6 {
    top: 80%;
    left: 50%;
    animation-delay: 4s;
}

/* Earning Rays */
.earning-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ray {
    position: absolute;
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.8), transparent);
    border-radius: 1px;
    animation: rayGlow 3s ease-in-out infinite;
}

.ray-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.ray-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(90deg);
    animation-delay: 0.5s;
}

.ray-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    animation-delay: 1s;
}

.ray-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(270deg);
    animation-delay: 1.5s;
}

.ray-5 {
    top: 25%;
    right: 25%;
    transform: rotate(45deg);
    animation-delay: 2s;
}

.ray-6 {
    bottom: 25%;
    left: 25%;
    transform: rotate(225deg);
    animation-delay: 2.5s;
}

/* Growth Indicator */
.growth-indicator {
    margin-top: 2rem;
    text-align: center;
}

.growth-content {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 153, 0, 0.3);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    animation: growthPulse 2s ease-in-out infinite;
}

.growth-content i {
    color: var(--accent-primary);
    font-size: 1rem;
}

.growth-content span {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Animations */
@keyframes hubPulse {
    0%, 100% {
        box-shadow: 0 0 25px rgba(255, 153, 0, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 153, 0, 0.8);
        transform: scale(1.05);
    }
}

@keyframes hubGlow {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

@keyframes nodeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes nodePulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 153, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 153, 0, 0.5);
        transform: scale(1.1);
    }
}

@keyframes elementFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px) scale(1.2);
        opacity: 1;
    }
}

@keyframes connectionFlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes growthPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 153, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 153, 0, 0.4);
        transform: scale(1.02);
    }
}

@keyframes earningPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@keyframes nodeGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes earningFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) translateY(-5px);
        opacity: 1;
    }
}

@keyframes moneyFlow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes coinFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes rayGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.8;
        transform: scaleY(1.2);
    }
}

@keyframes testimonialFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

@keyframes successPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 153, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 153, 0, 0.4);
        transform: scale(1.02);
    }
}

@keyframes testimonialSlide {
    0%, 100% {
        transform: translateY(0);
    opacity: 0.9;
    }
    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

/* Success Proof Animations */
@keyframes successProofPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

@keyframes successProofGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-2px);
        opacity: 1;
    }
}

@keyframes photoBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Individual Success Story Animations */
@keyframes carSuccessPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    25% {
        transform: scale(1.05) rotate(1deg);
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    }
    50% {
        transform: scale(1.1) rotate(0deg);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
    75% {
        transform: scale(1.05) rotate(-1deg);
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    }
}

@keyframes phoneSuccessPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 122, 255, 0.3);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 30px rgba(0, 122, 255, 0.6);
    }
}

@keyframes moneySuccessPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    33% {
        transform: scale(1.06) rotate(2deg);
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
    }
    66% {
        transform: scale(1.1) rotate(-2deg);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

@keyframes harrierSuccessPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
    }
    50% {
        transform: scale(1.07);
        box-shadow: 0 0 30px rgba(255, 140, 0, 0.8);
    }
}

@keyframes gadgetsSuccessPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(128, 0, 255, 0.3);
    }
    25% {
        transform: scale(1.04) rotate(1deg);
        box-shadow: 0 0 22px rgba(128, 0, 255, 0.4);
    }
    50% {
        transform: scale(1.08) rotate(0deg);
        box-shadow: 0 0 25px rgba(128, 0, 255, 0.5);
    }
    75% {
        transform: scale(1.04) rotate(-1deg);
        box-shadow: 0 0 22px rgba(128, 0, 255, 0.4);
    }
}

@keyframes showroomSuccessPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 30px rgba(255, 69, 0, 0.8);
    }
}

@keyframes floatGentle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

/* Earnings Calculator Styles */
.earnings-calculator-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    margin: 2rem 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.earnings-calculator-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.calculator-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.calculator-icon {
    font-size: 3rem;
    color: #ff9900;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.calculator-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.calculator-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.calculator-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.input-group input,
.input-group select {
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-hint {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ff9900;
}

.result-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.calculator-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.calculator-actions .btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    min-width: 180px;
    justify-content: center;
}

.calculator-actions .btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.calculator-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.calculator-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #667eea;
    border: 2px solid #667eea;
}

.calculator-actions .btn-secondary:hover {
    background: #667eea;
    color: white;
}

/* Mobile Responsive for Calculator */
@media (max-width: 768px) {
    .earnings-calculator-section {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .calculator-header h3 {
    font-size: 2rem;
}

    .calculator-container {
        padding: 1.5rem;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .calculator-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .calculator-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .calculator-header h3 {
        font-size: 1.8rem;
    }
    
    .calculator-header p {
        font-size: 1rem;
    }
    
    .result-value {
    font-size: 1.5rem;
    }
}

/* Mobile Responsive for Floating Images */
@media (max-width: 768px) {
    .floating-item {
        width: 60px;
        height: 60px;
    }
    
    .item-1 {
        top: 5%;
        left: 3%;
    }
    
    .item-2 {
        top: 10%;
        right: 5%;
    }
    
    .item-3 {
        top: 15%;
        left: 1%;
    }
    
    .item-4 {
        top: 20%;
        right: 3%;
    }
    
    .item-5 {
        top: 25%;
        left: 5%;
    }
    
    .item-6 {
        top: 30%;
        right: 8%;
    }
    
    .item-7 {
        top: 35%;
        left: 75%;
    }
    
    .item-8 {
        top: 40%;
        left: 85%;
    }
    
    .item-9 {
        top: 45%;
        left: 70%;
    }
    
    .item-10 {
        top: 50%;
        left: 60%;
    }
    
    .item-11 {
        top: 55%;
        left: 90%;
    }
    
    .item-12 {
        top: 60%;
        left: 12%;
    }
    
    .item-13 {
        top: 65%;
        right: 15%;
    }
    
    .item-14 {
        top: 70%;
        left: 20%;
    }
    
    .item-15 {
        top: 75%;
        right: 20%;
    }
    
    .item-16 {
        top: 80%;
        left: 40%;
    }
    
    .item-17 {
        top: 85%;
        right: 25%;
    }
    
    .view-proof-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .view-proof-btn i {
        font-size: 0.9rem;
    }
}

.earnings-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.earnings-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-header h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-secondary);
    font-size: 0.8rem;
    font-weight: 500;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.earnings-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-tertiary);
    margin-bottom: 1rem;
}

.earnings-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.breakdown-item .label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.breakdown-item .value {
    color: var(--text-primary);
    font-weight: 600;
}

.network-visual {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
}

.center-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.center-info h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    font-size: 0.9rem;
}

.center-info p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.8rem;
}

.network-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.ring-1 {
    width: 120px;
    height: 120px;
}

.ring-2 {
    width: 200px;
    height: 200px;
}

.ring-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.ring-1 .ring-node:nth-child(1) { top: -15px; left: 50%; transform: translateX(-50%); }
.ring-1 .ring-node:nth-child(2) { bottom: -15px; left: 50%; transform: translateX(-50%); }
.ring-1 .ring-node:nth-child(3) { top: 50%; right: -15px; transform: translateY(-50%); }

.ring-2 .ring-node:nth-child(1) { top: -10px; left: 25%; }
.ring-2 .ring-node:nth-child(2) { top: -10px; right: 25%; }
.ring-2 .ring-node:nth-child(3) { bottom: -10px; left: 25%; }
.ring-2 .ring-node:nth-child(4) { bottom: -10px; right: 25%; }
.ring-2 .ring-node:nth-child(5) { top: 25%; left: -10px; }
.ring-2 .ring-node:nth-child(6) { top: 25%; right: -10px; }

.node-avatar {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.node-avatar.small {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
}

.ring-node span {
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 15;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-badge i {
    color: var(--accent-tertiary);
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 8rem 0;
    background: var(--dark-gradient);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-xl);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(600px 200px at -10% -20%, rgba(139, 92, 246, 0.1), transparent 60%),
                radial-gradient(600px 200px at 110% 120%, rgba(6, 182, 212, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover .card-background {
    opacity: 1;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-glow);
}

.benefit-content {
    position: relative;
    z-index: 2;
}

.benefit-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-highlight {
    display: inline-flex;
    align-items: center;
}

.highlight-text {
    background: var(--primary-gradient);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Earnings Section */
.earnings {
    padding: 8rem 0;
    background: var(--dark-gradient);
}

.earnings-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.overview-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.overview-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.overview-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
}

.overview-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-tertiary);
    margin: 0;
    line-height: 1;
}

.overview-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.bonus-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.tier-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tier-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.tier-card.premium {
    border: 2px solid var(--accent-tertiary);
    background: rgba(255, 204, 0, 0.05);
    box-shadow: var(--shadow-glow);
}

.tier-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gradient);
    color: var(--bg-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tier-level {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.tier-bonus {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-tertiary);
}

.tier-requirement {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tier-progress {
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
}

.tier-rewards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.reward-item {
    color: var(--accent-tertiary);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Earnings Calculator */
.earnings-calculator {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
}

.calculator-header {
    text-align: center;
    margin-bottom: 3rem;
}

.calculator-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.calculator-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.input-group input {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-tertiary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
}

.calc-result {
    background: var(--primary-gradient);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    color: var(--bg-primary);
    box-shadow: var(--shadow-glow);
}

.result-header {
    text-align: center;
    margin-bottom: 2rem;
}

.result-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.result-amount {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.result-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-breakdown .breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.result-breakdown .label {
    font-weight: 500;
    opacity: 0.9;
}

.result-breakdown .value {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Join Section */
.join-section {
    padding: 8rem 0;
    background: var(--dark-gradient);
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.join-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.join-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.join-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.join-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-tertiary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-secondary);
    font-size: 1rem;
}

.benefit-item span {
    color: var(--text-primary);
    font-weight: 500;
}

.join-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-glow);
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-tertiary);
    display: inline-block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-tertiary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
    padding: 0.75rem;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.checkbox-label:hover {
    background: rgba(255, 204, 0, 0.1);
    border-color: var(--accent-tertiary);
    transform: translateY(-2px);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: var(--accent-tertiary);
}

.checkbox-label span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.checkbox-label i {
    color: var(--accent-tertiary);
    font-size: 1.1rem;
}

.terms-link {
    color: var(--accent-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.terms-link:hover {
    color: var(--accent-tertiary);
    text-decoration: underline;
}

/* Premium Form Enhancements */
.premium-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 204, 0, 0.1);
    color: var(--accent-tertiary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 204, 0, 0.3);
}

.premium-badge i {
    color: var(--accent-tertiary);
    font-size: 0.9rem;
}

/* File Upload Styles */
.file-upload-container {
    position: relative;
}

.file-upload-area {
    border: 2px dashed rgba(255, 153, 0, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 153, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.file-upload-area:hover {
    border-color: var(--accent-tertiary);
    background: rgba(255, 204, 0, 0.1);
    transform: translateY(-2px);
}

.file-upload-area.dragover {
    border-color: var(--accent-tertiary);
    background: rgba(255, 204, 0, 0.15);
    transform: scale(1.02);
}

.upload-icon {
    font-size: 2rem;
    color: var(--accent-tertiary);
    margin-bottom: 1rem;
}

.upload-text h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.upload-text p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* Upload formats removed for cleaner design */

.file-upload-container input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.uploaded-files {
    margin-top: 1rem;
    display: none;
}

.uploaded-files.show {
    display: block;
}

.uploaded-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.file-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.file-icon {
    width: 30px;
    height: 30px;
    background: var(--accent-secondary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.file-details h5 {
    color: var(--text-primary);
    font-size: 0.9rem;
    margin: 0;
}

.file-details p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
}

.remove-file {
    background: var(--accent-error);
    color: white;
    border: none;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
}

.remove-file:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Textarea Styles */
textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    resize: vertical;
    min-height: 100px;
}

textarea:focus {
    outline: none;
    border-color: var(--accent-tertiary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
}

textarea::placeholder {
    color: var(--text-muted);
}

/* Form Note Styles */
.form-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 153, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 153, 0, 0.2);
}

.form-note p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-note p:last-child {
    margin-bottom: 0;
}

.form-note i {
    color: var(--accent-tertiary);
    width: 16px;
}

/* Enhanced Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

/* Compact Social Media Grid */
.compact-social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-option {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.social-option input[type="checkbox"] {
    display: none;
}

.social-option input[type="checkbox"]:checked + .social-icon {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1);
}

.social-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    margin-right: 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Compact Game Grid */
.compact-game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.game-option {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.game-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.game-option input[type="checkbox"] {
    display: none;
}

.game-option:hover .game-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.game-option input[type="checkbox"]:checked + .game-icon {
    transform: scale(1.2);
    box-shadow: 0 0 25px rgba(255, 153, 0, 0.6);
    animation: gameIconPulse 2s infinite;
}

@keyframes gameIconPulse {
    0%, 100% {
        box-shadow: 0 0 25px rgba(255, 153, 0, 0.6);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 153, 0, 0.8);
    }
}

.game-option input[type="checkbox"]:checked + .game-icon::after {
    content: '✓';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 1rem;
    height: 1rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: white;
    z-index: 3;
    animation: checkmarkBounce 0.5s ease-out;
}

@keyframes checkmarkBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.game-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.game-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 0.75rem;
    z-index: 1;
}

.game-icon i {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Individual Game Icon Styles */
.game-91club {
    background: linear-gradient(135deg, #FF9900 0%, #FF6B35 50%, #F7931E 100%);
}

.game-tiranga {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 50%, #FF6B35 100%);
}

.game-in999 {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 50%, #2C5530 100%);
}

.game-55club {
    background: linear-gradient(135deg, #45B7D1 0%, #96C93D 50%, #00B4DB 100%);
}

.game-diuwin {
    background: linear-gradient(135deg, #96CEB4 0%, #FECA57 50%, #FF9FF3 100%);
}

.game-bdgclub {
    background: linear-gradient(135deg, #FFEAA7 0%, #DDA0DD 50%, #98D8C8 100%);
}

.game-bigdady {
    background: linear-gradient(135deg, #DDA0DD 0%, #98D8C8 50%, #F7DC6F 100%);
}

.game-daman {
    background: linear-gradient(135deg, #98D8C8 0%, #F7DC6F 50%, #BB8FCE 100%);
}

.game-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
    padding: 0.75rem;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.checkbox-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.1), transparent);
    transition: left 0.5s;
}

.checkbox-label:hover::before {
    left: 100%;
}

.checkbox-label:hover {
    background: rgba(255, 204, 0, 0.1);
    border-color: var(--accent-tertiary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: var(--accent-tertiary);
    width: 18px;
    height: 18px;
}

.checkbox-label span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.checkbox-label i {
    color: var(--accent-tertiary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Color Game Indicators */
.checkbox-label .fa-circle {
    font-size: 0.8rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
}

/* Username Field Animation */
#usernameField {
    transition: all 0.3s ease;
    overflow: hidden;
}

#usernameField.show {
    opacity: 1;
    max-height: 100px;
}

#usernameField.hide {
    opacity: 0;
    max-height: 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: rgba(255, 255, 255, 0.05);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 2rem;
    margin: 0 auto 1rem;
    animation: bounce 1s ease;
    box-shadow: var(--shadow-glow);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.modal-header h3 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.modal-body {
    padding: 1rem 2rem;
}

.success-message {
    text-align: center;
    margin-bottom: 2rem;
}

.success-message p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.next-steps {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.next-steps h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.step-icon {
    width: 30px;
    height: 30px;
    background: var(--accent-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.modal-footer .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: var(--dark-gradient);
    color: var(--text-secondary);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 153, 0, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 153, 0, 0.2);
    padding-top: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.7;
}

/* Enhanced Responsive Design */

/* Large Tablets and Small Laptops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .visual-container {
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .bonus-tiers {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .earnings-overview {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

/* Tablets */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-card {
        flex-direction: row;
    text-align: left;
        padding: 1rem;
    }
    
    .visual-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bonus-tiers {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .earnings-overview {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .join-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* Compact grid removed - using dropdowns instead */
    
    .premium-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .file-upload-area {
        padding: 1.5rem;
    }
    
    .upload-text h4 {
        font-size: 1rem;
    }
    
    .upload-text p {
        font-size: 0.8rem;
    }
    
    /* Upload formats removed */
    
    .join-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-header,
    .modal-body,
.modal-footer {
        padding: 1.5rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-text h2 {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 1rem 0 1rem 0;
        padding-top: 4rem;
    }
    
    .hero-container {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        margin-bottom: 1.5rem;
    }
    
    .stat-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-content h3 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .visual-container {
        max-width: 100%;
        gap: 0.5rem;
    }
    
    .earnings-card {
        padding: 1.5rem;
    }
    
    .earnings-amount {
        font-size: 2rem;
    }
    
    .network-visual {
        height: 250px;
    }
    
    .center-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .ring-1 {
        width: 100px;
        height: 100px;
    }
    
    .ring-2 {
        width: 160px;
        height: 160px;
    }
    
    .node-avatar {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
    
    .node-avatar.small {
        width: 18px;
        height: 18px;
        font-size: 0.5rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .benefit-card,
    .tier-card,
    .overview-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-content h3 {
        font-size: 1.3rem;
    }
    
    .overview-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .overview-content h3 {
        font-size: 1.5rem;
    }
    
    .tier-bonus {
        font-size: 1.3rem;
    }
    
    .earnings-calculator {
        padding: 2rem 1.5rem;
    }
    
    .calculator-header h3 {
        font-size: 1.5rem;
    }
    
    .result-amount {
        font-size: 2.5rem;
    }
    
    .join-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .premium-badges {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .premium-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .file-upload-area {
        padding: 1rem;
    }
    
    .upload-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .upload-text h4 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .upload-text p {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    /* Upload formats removed for cleaner mobile design */
    
    .form-note {
        padding: 0.75rem;
    }
    
    .form-note p {
        font-size: 0.8rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    /* Compact grid removed - using dropdowns instead */
    
    .checkbox-label {
        padding: 0.5rem;
    }
    
    .checkbox-label span {
        font-size: 0.85rem;
    }
    
    .checkbox-label i {
        font-size: 1rem;
    }
    
    .join-text h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .modal-content {
        width: 98%;
        margin: 5% auto;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-brand h3 {
        font-size: 1.3rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
.benefit-card,
    .tier-card,
    .overview-card {
        padding: 1rem;
    }
    
    .earnings-calculator,
    .join-form-container {
        padding: 1.5rem 1rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
        padding-top: 3.5rem;
    }
    
    .hero-container {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-card {
        flex: 1;
        padding: 1rem;
    }
    
    .visual-container {
        max-width: 300px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-icon,
    .stat-icon,
    .benefit-icon,
    .overview-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Beautiful Toast Notification Styles */
.beautiful-toast {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.toast-container {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    gap: 12px;
    position: relative;
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.toast-icon:hover {
    transform: scale(1.05);
}

.toast-body {
    flex: 1;
    min-width: 0;
}

.toast-message {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    word-wrap: break-word;
}

.toast-time {
    font-size: 11px;
    opacity: 0.8;
    margin-top: 2px;
}

.toast-close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.1);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    transform: scaleX(1);
    transform-origin: left;
    animation: toastProgress 3s linear forwards;
}

@keyframes toastProgress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

/* Mobile Responsive Toast */
@media (max-width: 768px) {
    .beautiful-toast {
        max-width: none !important;
        min-width: auto !important;
        margin: 0 10px;
    }
    
    .toast-container {
        padding: 14px 16px;
        gap: 10px;
    }
    
    .toast-icon {
        width: 36px;
        height: 36px;
    }
    
    .toast-message {
        font-size: 13px;
    }
    
    .toast-time {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .beautiful-toast {
        margin: 0 5px;
        border-radius: 12px;
    }
    
    .toast-container {
        padding: 12px 14px;
        gap: 8px;
    }
    
    .toast-icon {
        width: 32px;
        height: 32px;
    }
    
    .toast-message {
        font-size: 12px;
    }
}
