* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header & Navigation */

header {
    background: linear-gradient(90deg, #0a2540 0%, #1a365d 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo i {
    color: #00c853;
    margin-right: 10px;
    font-size: 28px;
}

.logo span {
    color: #00c853;
}


/* Language Selector */

.language-selector {
    position: relative;
    margin-left: 20px;
}

.language-selector select {
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    padding: 8px 30px 8px 15px;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.language-selector select option {
    background-color: #0a2540;
    color: white;
    padding: 10px;
}

.language-selector select:hover {
    background: rgba(255, 255, 255, 0.2);
}

.language-selector select:focus {
    outline: none;
    border-color: #00c853;
}

.language-selector::after {
    content: '▼';
    font-size: 12px;
    color: white;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}


/* Hero Section */

.hero {
    background: linear-gradient(rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.95)), url('https://images.unsplash.com/photo-1620288627223-53302f4e8c74?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 i {
    color: #00c853;
    margin-right: 15px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.badge {
    background: rgba(0, 200, 83, 0.2);
    color: #00c853;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.badge i {
    margin-right: 8px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #00c853 0%, #00b248 100%);
    color: white;
    padding: 18px 45px;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 200, 83, 0.6);
}

.timer {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px;
    max-width: 500px;
    margin: 40px auto;
    backdrop-filter: blur(10px);
}

.timer p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
}

.countdown div {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    border-radius: 10px;
    min-width: 70px;
}


/* Benefits Section */

.benefits {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #7f8284;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: white;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #00c853;
}

.benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0a2540;
}

.benefit-card p {
    color: #666;
    font-size: 1.1rem;
}


/* Testimonials */

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.client {
    display: flex;
    align-items: center;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00c853;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    font-size: 1.2rem;
}

.client-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-info p {
    color: #ddd;
    font-size: 0.9rem;
}


/* How it Works */

.how-it-works {
    padding: 100px 0;
    background: white;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 60px auto 0;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00c853 0%, #00b248 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
}

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #0a2540;
}

.step p {
    color: #666;
    font-size: 1.1rem;
    max-width: 300px;
    margin: 0 auto;
}

.step:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 30px;
    right: -25px;
    color: #00c853;
    font-size: 2rem;
    font-weight: bold;
}


/* Final CTA */

.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
    text-align: center;
    color: white;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    margin: 40px auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #00c853;
}


/* FAQ */

.faq {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 25px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.4rem;
    color: #0a2540;
}

.faq-question i {
    color: #00c853;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding-top: 15px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    display: none;
}

.faq-answer.show {
    display: block;
}


/* Footer */

footer {
    background: #0a2540;
    color: white;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #ddd;
}

.copyright {
    color: #aaa;
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* Traders Section */

.traders {
    padding: 100px 0;
    background: #f8f9fa;
}

.traders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.trader-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trader-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.trader-info {
    padding: 25px;
    text-align: center;
}

.trader-info h3 {
    font-size: 1.8rem;
    color: #0a2540;
    margin-bottom: 10px;
}

.trader-info .nationality {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.trader-info .title {
    color: #00c853;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.trader-info .specialty {
    color: #666;
    font-size: 1.1rem;
}


/* Trading Records */

.trading-records {
    padding: 50px 0;
    background: white;
    overflow: hidden;
}

.records-container {
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
}

.records-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
}

.record-item {
    min-width: 300px;
    margin-right: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid;
}

.record-item.buy {
    border-left-color: #00c853;
}

.record-item.sell {
    border-left-color: #ff3d00;
}

.record-type {
    font-weight: 600;
    margin-bottom: 10px;
}

.record-type.buy {
    color: #00c853;
}

.record-type.sell {
    color: #ff3d00;
}

.record-details {
    font-size: 0.9rem;
    color: #666;
}

.record-time {
    font-size: 0.8rem;
    color: #999;
    margin-top: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* Responsive Design */

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1.3rem;
    }
    .step:not(:last-child)::after {
        display: none;
    }
    .steps {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 70px 20px;
    }
    .hero h1 {
        font-size: 2.3rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .badges {
        flex-direction: column;
        align-items: center;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .cta-button {
        padding: 15px 35px;
        font-size: 1.2rem;
    }
    .countdown div {
        min-width: 50px;
        font-size: 1.4rem;
        padding: 8px 12px;
    }
    .final-cta h2 {
        font-size: 2.3rem;
    }
    .final-cta p {
        font-size: 1.1rem;
    }
}