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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #0a4d3a 0%, #000000 50%, #1a1a1a 100%);
}

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

/* Fixed CTA Button */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.fixed-cta.show {
    display: block;
    animation: slideInRight 0.5s ease-out;
}

.fixed-cta .cta-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fixed-cta .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #FFD700, #32CD32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #cccccc;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Benefits */
.benefits {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.benefit-item i {
    color: #32CD32;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #FFD700;
    font-weight: 600;
}

.main-cta-btn {
    background: linear-gradient(45deg, #32CD32, #228B22);
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 15px 40px rgba(50, 205, 50, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
}

.main-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(50, 205, 50, 0.4);
    background: linear-gradient(45deg, #228B22, #32CD32);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.8s both;
}

.image-container {
    position: relative;
    max-width: 500px;
}

.trader-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.glow-effect {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, #FFD700, #32CD32, #FFD700);
    border-radius: 30px;
    z-index: 1;
    opacity: 0.7;
    animation: rotate 3s linear infinite;
}

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

/* Social Proof Section */
.social-proof {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.8);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.section-title .highlight {
    background: linear-gradient(45deg, #FFD700, #32CD32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.proof-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.proof-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.proof-image {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.proof-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFD700;
}

.proof-content p {
    color: #cccccc;
    font-size: 1rem;
}

/* Security Badges */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.security-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.security-item span {
    font-weight: 600;
    color: #32CD32;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(45deg, #0a4d3a, #000000);
}

.final-cta-content {
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFD700;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000000;
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
}

.final-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .security-badges {
        gap: 20px;
    }
    
    .fixed-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }
    
    .fixed-cta .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 13px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .social-proof {
        padding: 80px 0;
    }
    
    .final-cta {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .main-cta-btn,
    .final-cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

