/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Black & Gold Theme Colors */
    --primary-bg: #000000;
    --secondary-bg: #0d0d0d;
    --card-bg: rgba(20, 20, 20, 0.9);
    --glass-bg: rgba(255, 215, 0, 0.05);
    --border-color: rgba(255, 215, 0, 0.2);
    --border-gold: rgba(255, 215, 0, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #f5f5f5;
    --text-muted: #cccccc;
    --text-gold: #ffd700;
    
    /* Black & Gold Accent Colors */
    --accent-gold: #ffd700;
    --accent-gold-dark: #b8860b;
    --accent-gold-light: #ffed4e;
    --accent-black: #000000;
    --accent-dark-gray: #1a1a1a;
    --accent-light-gray: #333333;
    
    /* Black & Gold Gradients */
    --gradient-primary: linear-gradient(135deg, #ffd700 0%, #b8860b 50%, #000000 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #b8860b 100%);
    --gradient-gold-reverse: linear-gradient(135deg, #b8860b 0%, #ffd700 50%, #ffed4e 100%);
    --gradient-black-gold: linear-gradient(135deg, #000000 0%, #1a1a1a 30%, #ffd700 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    --gradient-mesh: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%), 
                     radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%), 
                     radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    
    /* Black & Gold Shadows */
    --shadow-gold: 0 8px 32px rgba(255, 215, 0, 0.4);
    --shadow-gold-heavy: 0 12px 40px rgba(255, 215, 0, 0.6);
    --shadow-black: 0 8px 32px rgba(0, 0, 0, 0.8);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.9);
    --shadow-glass: 0 8px 32px rgba(255, 215, 0, 0.15);
    
    /* Spacing */
    --container-padding: 0 2rem;
    --section-padding: 80px 0;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Border Radius */
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(102, 126, 234, 0.3);

    /* General Styles */
    --primary-color: #FFD700;
    --secondary-color: #000000;
    --text-color: #333333;
    --background-color: #ffffff;
}

body {
    font-family: var(--font-family);
    background: var(--primary-bg);
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.03) 50%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.97);
    border-bottom: 1.5px solid var(--border-color);
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    pointer-events: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    transition: background 0.2s, color 0.2s;
}

.nav-menu a:hover {
    background: var(--accent-gold);
    color: var(--accent-black);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-buttons .btn {
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mobile Navigation */
@media (max-width: 900px) {
    .nav-right {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-right.active {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }

    .nav-buttons {
        flex-direction: column;
        width: 80%;
        gap: 1rem;
    }

    .nav-buttons .btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }

    .nav-toggle {
        display: flex;
    }
}

/* Update hero section spacing */
.hero-section {
    padding-top: 80px;
}

@media (max-width: 480px) {
    .nav-buttons .btn {
        font-size: 1rem;
        padding: 0.7rem;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
}

.nav-logo i {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: 0.3s;
}

.nav-menu .nav-login {
    font-weight: 600;
    color: var(--text-primary);
    border: none;
    background: none;
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    transition: background 0.2s, color 0.2s;
}

.nav-menu .nav-login:hover {
    color: #000;
    background: var(--accent-gold, #ffd700);
}

.signup-animate {
    animation: signupGlow 1.5s infinite alternate;
    box-shadow: 0 0 0 0 var(--accent-gold, #ffd700);
    padding: 0.18rem 0.7rem !important;
    font-size: 0.85rem !important;
    border-radius: 4px;
}

@keyframes signupGlow {
    0% {
        box-shadow: 0 0 0 0 var(--accent-gold, #ffd700);
    }
    100% {
        box-shadow: 0 0 16px 4px var(--accent-gold, #ffd700);
    }
}

/* Hero Section Responsive Layout */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100vw;
    padding: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 700px;
    padding: 0 1.5rem;
    gap: 2.5rem;
    text-align: center;
}

.hero-welcome {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: 1px;
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
    text-shadow: 0 0 32px rgba(255, 215, 0, 0.25);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
    transition: box-shadow 0.2s, transform 0.2s;
}

.hero-cta:active {
    transform: scale(0.97);
}

@media (max-width: 768px) {
    .hero-content {
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    .hero-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        width: auto;
        max-width: 90vw;
    }
}

@media (max-width: 480px) {
    .hero-content {
        gap: 1.2rem;
        align-items: center;
        text-align: center;
    }
    .hero-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        width: auto;
        max-width: 95vw;
    }
}

/* Section Enhancements */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

/* Card Enhancements */
.stat-item, .service-card, .feature-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before, .service-card::before, .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover, .service-card:hover, .feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.stat-item:hover::before, .service-card:hover::before, .feature-item:hover::before {
    opacity: 1;
}

/* Enhanced Animations */
@keyframes backgroundPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-cta {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid, .features-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-item, .service-card, .feature-item {
        padding: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Card Content */
.service-card, .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.service-card i, .feature-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.service-card:hover i, .feature-item:hover i {
    transform: scale(1.1);
}

.service-card h3, .feature-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-gold);
    margin: 1rem 0;
}

.service-card p, .feature-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* Section Spacing */
.about-section, .services-section, .features-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Section Background Effects */
.about-section::before, .services-section::before, .features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
    pointer-events: none;
}

/* Crypto Cards */
.crypto-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.crypto-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-gold);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
}

.crypto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.crypto-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.crypto-card:hover::before {
    transform: scaleX(1);
}

.crypto-card:hover::after {
    opacity: 1;
}

.crypto-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-gold);
    border-color: var(--accent-gold);
}

.crypto-card i {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.crypto-card.btc i {
    color: var(--accent-gold);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    animation: pulseGold 3s ease-in-out infinite;
}

.crypto-card.eth i {
    color: var(--accent-blue);
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8));
    animation: pulseBlue 3s ease-in-out infinite;
}

.crypto-card.bnb i {
    color: var(--accent-orange);
    filter: drop-shadow(0 0 15px rgba(255, 149, 0, 0.8));
    animation: pulseOrange 3s ease-in-out infinite;
}

.crypto-card.ada i {
    color: var(--accent-green);
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.8));
    animation: pulseGreen 3s ease-in-out infinite;
}

@keyframes pulseOrange {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(255, 149, 0, 0.8)); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 149, 0, 1)); }
}

.crypto-card .price {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.crypto-card .change {
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    animation: priceFlash 2s ease-in-out infinite;
}

.crypto-card .change.positive {
    color: var(--accent-green);
    background: rgba(0, 255, 136, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.crypto-card .change.negative {
    color: var(--accent-red);
    background: rgba(255, 71, 87, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

@keyframes priceFlash {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes pulseGold {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8)); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1)); }
}

@keyframes pulseBlue {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8)); }
    50% { filter: drop-shadow(0 0 25px rgba(0, 212, 255, 1)); }
}

@keyframes pulseGreen {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.8)); }
    50% { filter: drop-shadow(0 0 25px rgba(0, 255, 136, 1)); }
}

.level-card .price {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.level-card .earning {
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--accent-green);
}

.level-card .earning.positive {
    color: var(--accent-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-bg);
    box-shadow: var(--shadow-gold);
    border: 1px solid var(--accent-gold);
    font-weight: var(--font-weight-bold);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-gold);
    border: 2px solid var(--border-gold);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-glass);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.btn-outline {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-outline:hover {
    background: var(--accent-blue);
    color: var(--primary-bg);
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
    text-shadow: none;
}

.btn.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-gold);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: all 0.6s ease;
    animation: rotate 10s linear infinite;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-premium);
    border-color: var(--accent-gold);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-gold);
    transition: all 0.4s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-crypto);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
    animation: iconGlow 2s ease-in-out infinite alternate;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-bg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

@keyframes iconGlow {
    0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.4); }
    100% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.8); }
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--primary-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid var(--border-gold);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-premium);
    border-color: var(--accent-gold);
}

.service-card.featured {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
    background: rgba(255, 215, 0, 0.05);
}

.service-card.featured::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-gold);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.service-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--primary-bg);
    padding: 0.7rem 2rem;
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    font-size: 0.9rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
    z-index: 3;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.service-header {
    margin-bottom: 2rem;
}

.service-header i {
    font-size: 3.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-header i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.9));
}

.service-header h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: var(--font-weight-bold);
}

.service-price {
    margin-bottom: 2rem;
}

.service-price .price {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 1;
}

.service-price .period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: var(--section-padding);
    background: var(--gradient-crypto);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.9) 0%, rgba(17, 17, 24, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--border-gold);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.2;
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 215, 0, 0.02) 50%, 
        transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.footer-logo i {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.footer-section p {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.2rem;
    color: var(--text-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
    font-weight: var(--font-weight-medium);
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    color: var(--primary-bg);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-gold);
    border-color: var(--accent-gold);
}

.social-links a i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--border-gold);
    color: var(--text-primary);
    opacity: 0.8;
    font-weight: var(--font-weight-medium);
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.crypto-cards {
    animation: float 6s ease-in-out infinite;
}

/* Scroll animations */
.feature-card,
.service-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 6px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-crypto);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Premium Loading Animation */
@keyframes luxuryPulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.05);
    }
}

/* Premium Gradient Animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Luxury Particle Effect */
@keyframes particles {
    0% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 1; 
    }
    100% { 
        transform: translateY(-100px) rotate(360deg); 
        opacity: 0; 
    }
}

/* Premium Floating Animation */
@keyframes premiumFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotate(1deg); 
    }
    50% { 
        transform: translateY(-5px) rotate(-1deg); 
    }
    75% { 
        transform: translateY(-15px) rotate(0.5deg); 
    }
}

/* Luxury Glow Effect */
@keyframes luxuryGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4)); 
    }
    50% { 
        filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.8)); 
    }
}

/* Apply premium animations */
.hero-container {
    animation: premiumFloat 8s ease-in-out infinite;
}

.gradient-text {
    background-size: 300% 300%;
    animation: gradientShift 4s ease infinite, textShine 4s ease-in-out infinite;
}

/* Selection styling */
::selection {
    background: rgba(255, 215, 0, 0.3);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(255, 215, 0, 0.3);
    color: var(--text-primary);
}

.hero-section {
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    margin-top: 64px;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 1rem 2.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-cta {
    padding: 0.7rem 2rem;
    font-size: 1.05rem;
    border-radius: 10px;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #ffd700 0%, #b8860b 100%);
    color: #000;
    border: 2px solid #ffd700;
    box-shadow: 0 4px 24px rgba(255,215,0,0.12), 0 1.5px 8px rgba(255, 215, 0, 0.10) inset;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px) saturate(120%);
    animation: orbitGlow 2.5s ease-in-out infinite alternate, orbitPulse 4s ease-in-out infinite;
}

.hero-cta i {
    font-size: 1.2em;
    margin-right: 0.6rem;
}

.hero-cta:hover {
    background: linear-gradient(90deg, #ffe066 0%, #ffd700 100%);
    color: #000;
    box-shadow: 0 8px 32px rgba(255,215,0,0.22), 0 2px 12px rgba(255, 215, 0, 0.18) inset;
}

.hero-cta:hover i {
    transform: scale(1.15) rotate(-10deg);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.01) 100%);
    transform: skewX(-20deg);
    transition: left 0.5s;
    pointer-events: none;
    opacity: 0.7;
}

.hero-cta:hover::before {
    left: 120%;
    transition: left 0.7s cubic-bezier(0.4,0,0.2,1);
    opacity: 1;
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-content {
        padding: 2rem 0.5rem 1rem 0.5rem;
        max-width: 95vw;
    }
    .hero-section {
        min-height: 80vh;
        padding-top: 80px;
        padding-bottom: 40px;
    }
    .hero-cta {
        font-size: 1.05rem;
        padding: 0.7rem 1.5rem;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        white-space: nowrap;
    }
}

@media (max-width: 600px) {
    body {
        overflow-x: hidden;
    }
    .hero-section {
        min-height: 75vh;
        padding-top: 60px;
        padding-bottom: 20px;
        width: 100vw;
        max-width: 100vw;
    }
    .hero-content {
        padding: 0.5rem 0.2rem 0.5rem 0.2rem;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
    }
    .hero-title {
        font-size: 1.3rem;
    }
    .hero-cta {
        font-size: 0.95rem;
        padding: 0.5rem 1.1rem;
        max-width: 95vw;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        white-space: normal !important;
    }
}

.animated-subtitle {
    position: relative;
    display: inline-block;
    opacity: 0;
    animation: subtitleFadeIn 1.2s ease-out forwards, subtitleShimmer 3s 1.2s linear infinite;
    background: linear-gradient(90deg, #ffd700 20%, #fffbe6 50%, #ffd700 80%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.2rem;
    font-size: 2.5rem;
}

@keyframes subtitleFadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes subtitleShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: 0 0; }
}

@keyframes orbitGlow {
    0% {
        box-shadow: 0 0 16px 2px #ffd70055, 0 4px 24px rgba(255,215,0,0.12), 0 1.5px 8px rgba(255, 215, 0, 0.10) inset;
    }
    100% {
        box-shadow: 0 0 32px 8px #ffd700cc, 0 8px 32px rgba(255,215,0,0.22), 0 2px 12px rgba(255, 215, 0, 0.18) inset;
    }
}

@keyframes orbitPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.045);
    }
}

@keyframes rocketFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-3px) scale(1.12) rotate(-10deg); }
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background-color: var(--secondary-bg);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text-secondary);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.stat-item i {
    font-size: 36px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-gold);
}

.stat-item p {
    color: var(--text-muted);
}

/* Services Section */
.services-section {
    padding: var(--section-padding);
    background-color: var(--secondary-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 30px;
    text-align: center;
    background: var(--card-bg);
    border-radius: 10px;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 40px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-gold);
}

.service-card p {
    color: var(--text-muted);
}

/* Features Section */
.features-section {
    padding: var(--section-padding);
    background-color: var(--secondary-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    padding: 30px;
    text-align: center;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    font-size: 40px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-gold);
}

.feature-item p {
    color: var(--text-muted);
}

/* Animation Classes */
.animated-subtitle {
    animation: fadeInUp 1s ease;
}

.signup-animate {
    animation: pulse 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Hamburger Menu Styles */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 4px;
    margin: 4px 0;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100vw;
        background: var(--secondary-bg);
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 0 2rem 0;
        z-index: 1000;
        box-shadow: 0 8px 32px rgba(0,0,0,0.7);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-actions {
        display: none;
    }
    .nav-actions.mobile {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
        margin-top: 1rem;
    }
}

/* Forgot Password Card Styles */
.forgot-password-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none; /* Let body background show */
}

.forgot-password-form {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-gold);
    padding: 2.5rem 2.2rem 2rem 2.2rem;
    max-width: 370px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border: 1.5px solid var(--border-gold);
    position: relative;
}

.form-title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-gold);
    margin-bottom: 0.2em;
    text-align: center;
}

.form-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 0.7em;
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

.form-group label {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
}

.form-group input[type="email"] {
    padding: 0.7em 1em;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-gold);
    background: var(--secondary-bg);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
}

.form-group input[type="email"]:focus {
    border: 1.5px solid var(--accent-gold);
}

.form-btn {
    background: var(--gradient-gold);
    color: var(--accent-black);
    font-weight: var(--font-weight-bold);
    border: none;
    border-radius: var(--border-radius-md);
    padding: 0.8em 0;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 0.5em;
    box-shadow: var(--shadow-glass);
    transition: background 0.2s, color 0.2s;
}

.form-btn:hover {
    background: var(--gradient-gold-reverse);
    color: var(--accent-black);
}

.form-footer {
    text-align: center;
    margin-top: 0.7em;
}

.form-footer a {
    color: var(--text-gold);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.form-footer a:hover {
    color: var(--accent-gold-dark);
    text-decoration: underline;
}

.message {
    padding: 0.7em 1em;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0.5em;
}

.message.success {
    background: rgba(34, 139, 34, 0.12);
    color: #7fff7f;
    border: 1px solid #7fff7f;
}

.message.error {
    background: rgba(255, 68, 68, 0.12);
    color: #ff4444;
    border: 1px solid #ff4444;
}

@media (max-width: 600px) {
    .forgot-password-form {
        padding: 1.5rem 0.7rem 1.2rem 0.7rem;
        max-width: 98vw;
    }
    .form-title {
        font-size: 1.4rem;
    }
    .form-subtitle {
        font-size: 0.98rem;
    }
    .form-btn {
        font-size: 1rem;
    }
} 

.centered-container {
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(20,20,20,0.9) 100%);
    padding: 20px;
    margin-top: 110px;
} 
