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

:root {
    --primary-gradient: linear-gradient(135deg, #ff6b35, #f7931e, #ffcd3c);
    --secondary-gradient: linear-gradient(135deg, #667eea, #764ba2);
    --success-gradient: linear-gradient(135deg, #11998e, #38ef7d);
    --danger-gradient: linear-gradient(135deg, #ff416c, #ff4757);
    --dark-bg: #0a0a0a;
    --card-bg: rgba(26, 26, 26, 0.95);
    --text-light: #ffffff;
    --text-gray: #a0a0a0;
    --accent-gold: #ffd700;
    --accent-neon: #00ff88;
    --shadow-neon: 0 0 20px rgba(0, 255, 136, 0.3);
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

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

@keyframes sparkle {
    0%, 100% { opacity: 0.5; transform: scale(0.8) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

@keyframes coinFlip {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes bitcoinPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
    25% { 
        transform: scale(1.1) rotate(90deg);
        opacity: 0.8;
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    }
    50% { 
        transform: scale(1.2) rotate(180deg);
        opacity: 1;
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 1));
    }
    75% { 
        transform: scale(1.1) rotate(270deg);
        opacity: 0.8;
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    }
}

@keyframes explosiveGlow {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(255, 215, 0, 0.3),
            0 0 40px rgba(255, 107, 53, 0.2),
            0 0 60px rgba(0, 255, 136, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 40px rgba(255, 215, 0, 0.6),
            0 0 80px rgba(255, 107, 53, 0.4),
            0 0 120px rgba(0, 255, 136, 0.3);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    height: 35px;
}

.nav-title {
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 18px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-gradient) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    box-shadow: var(--shadow-gold);
    animation: glow 2s infinite;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    animation: explosiveGlow 4s ease-in-out infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(255, 215, 0, 0.05) 0%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 107, 53, 0.05) 0%, transparent 25%),
        linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, transparent 25%);
    animation: bitcoinPulse 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, rgba(255, 107, 53, 0.3) 0%, rgba(10, 10, 10, 0.8) 70%),
        url('https://images.unsplash.com/photo-1518546305927-5a555bb7020d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

.crypto-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
}

.bitcoin-float, .ethereum-float, .profit-chart {
    position: absolute;
    font-size: 60px;
    animation: float 3s ease-in-out infinite;
    opacity: 0.3;
}

.bitcoin-float {
    top: 20%;
    left: 10%;
    color: var(--accent-gold);
    animation-delay: 0s;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.ethereum-float {
    top: 60%;
    right: 15%;
    color: var(--accent-neon);
    animation-delay: 1s;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.profit-chart {
    top: 40%;
    left: 70%;
    animation-delay: 2s;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: slideInUp 1s ease-out;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--success-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-gold);
    animation: pulse 2s infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-neon);
    border: 2px solid var(--accent-neon);
    box-shadow: var(--shadow-neon);
}

.btn-secondary:hover {
    background: var(--accent-neon);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.hero-phone {
    display: flex;
    justify-content: center;
    animation: slideInUp 1s ease-out 0.8s both;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: float 4s ease-in-out infinite;
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
}

.phone-overlay {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success-gradient);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    animation: pulse 1.5s infinite;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: 
        linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%),
        url('https://images.unsplash.com/photo-1621761191319-c6fb62004040?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80') center/cover no-repeat fixed;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.features .container {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fire-emoji {
    font-size: 3.5rem;
    animation: sparkle 2s infinite;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
    padding: 60px;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
}

/* AI Arbitrage Card - Green theme */
.feature-card:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* High-Frequency Trading Card - Yellow theme */
.feature-card:nth-child(4)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Options Trading Card - Orange theme */
.feature-card:nth-child(5)::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Contract Trading Card - Red theme */
.feature-card:nth-child(6)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 0, 102, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* HODL Strategy Card - Blue theme */
.feature-card:nth-child(7)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    transform: translateY(-50%);
}

.feature-card.reverse {
    grid-template-columns: 350px 1fr;
}

.feature-card.reverse .feature-content {
    order: 2;
}

.feature-card.reverse .feature-phone {
    order: 1;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.feature-header h3 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-badge {
    background: var(--danger-gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

.feature-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.highlight {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--accent-neon);
    padding: 10px 15px;
    border-radius: 15px;
    font-weight: 600;
    color: var(--accent-neon);
    font-size: 0.9rem;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-btn.whatsapp {
    background: #25d366;
    color: white;
}

.contact-btn.telegram {
    background: #0088cc;
    color: white;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.feature-phone {
    display: flex;
    justify-content: center;
}

.phone-preview {
    position: relative;
    width: 250px;
    height: 500px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 30px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: float 5s ease-in-out infinite;
}

.phone-preview img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.profit-animation, .speed-indicator, .options-chart, .leverage-indicator, .hodl-gains {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success-gradient);
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

.speed-indicator {
    background: var(--primary-gradient);
}

.options-chart {
    background: var(--secondary-gradient);
}

.leverage-indicator {
    background: var(--danger-gradient);
}

.hodl-gains {
    background: var(--success-gradient);
}

/* About Section */
.about {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%),
        url('https://images.unsplash.com/photo-1559526324-4b87b5e36e44?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat fixed;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-main h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-main p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.security-features, .compliance-info, .risk-warning {
    margin-bottom: 50px;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.security-features h4, .compliance-info h4, .risk-warning h4 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--accent-gold);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 15px;
    border: 1px solid var(--accent-neon);
}

.security-item i {
    font-size: 1.5rem;
    color: var(--accent-neon);
}

.risk-warning {
    border-color: rgba(255, 65, 108, 0.3);
    background: rgba(255, 65, 108, 0.05);
}

.risk-warning h4 {
    color: #ff416c;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%),
        url('https://images.unsplash.com/photo-1640340434855-6084b1f4901c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2064&q=80') center/cover no-repeat fixed;
    text-align: center;
    position: relative;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: explosiveGlow 5s ease-in-out infinite;
}

.download .container {
    position: relative;
    z-index: 2;
}

.download-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 50px;
}

.download-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: var(--card-bg);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    min-width: 200px;
}

.download-btn:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.download-btn i {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text .small {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.btn-text .large {
    font-size: 1.1rem;
    font-weight: 700;
}

.download-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: 
        linear-gradient(45deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%),
        url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2032&q=80') center/cover no-repeat fixed;
    text-align: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 20%, rgba(37, 211, 102, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(0, 136, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 60%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 60px;
}

.contact-options {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 40px;
    background: var(--card-bg);
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
    min-width: 250px;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-card.whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.3);
}

.contact-card.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 20px 60px rgba(0, 136, 204, 0.3);
}

.contact-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card.whatsapp i {
    color: #25d366;
}

.contact-card.telegram i {
    color: #0088cc;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.contact-cta {
    font-weight: 700;
    color: var(--accent-gold);
}

/* Footer */
.footer {
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%),
        url('https://images.unsplash.com/photo-1642790106117-e829e14a795f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2062&q=80') center/cover no-repeat fixed;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 35px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--text-gray);
}

.footer-links h4, .footer-legal h4 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links a, .footer-legal a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-gray);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--text-gray);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    /* Optimize backgrounds for mobile */
    .hero-bg,
    .features,
    .about,
    .download,
    .contact,
    .footer {
        background-attachment: scroll !important;
    }
    
    /* Fix text wrapping and spacing */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .feature-card, .feature-card.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 25px;
        margin-bottom: 100px;
    }
    
    .feature-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .feature-header h3 {
        font-size: 1.8rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .feature-card.reverse .feature-content,
    .feature-card.reverse .feature-phone {
        order: unset;
    }
    
    .feature-highlights {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .download-title {
        font-size: 2rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-stats {
        gap: 30px;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .phone-preview {
        width: 200px;
        height: 400px;
    }
    
    .feature-card {
        padding: 40px 20px;
        margin-bottom: 80px;
    }
    
    .feature-header h3 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .feature-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .contact-card {
        padding: 40px 20px;
        min-width: 200px;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
        padding: 15px 20px;
        font-size: 0.95rem;
    }
}

/* Explosive animations for key elements */
.explosive {
    animation: slideInUp 0.8s ease-out;
}

.explosive:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Additional profit indicators */
.profit-ticker {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* Glow effects for important elements */
.glow-gold {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.glow-neon {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.glow-danger {
    box-shadow: 0 0 30px rgba(255, 65, 108, 0.4);
} 