* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0e1a;
    --bg-secondary: #121826;
    --bg-card: #1a2332;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --orange: #ff6b35;
    --blue: #5b7cff;
    --green: #00ff88;
    --red: #ff3333;
    --gradient-orange: linear-gradient(135deg, #ff6b35, #ff8c42);
    --gradient-blue: linear-gradient(135deg, #5b7cff, #7b9cff);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.nav-logo img {
    height: 40px;
    width: auto;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.nav-menu a:hover {
    color: var(--orange);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(91, 124, 255, 0.1), transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.text-orange {
    color: var(--orange);
}

.text-blue {
    color: var(--blue);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--orange);
    margin-bottom: 40px;
    font-weight: 600;
}

.cta-button {
    background: var(--gradient-orange);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.crypto-ticker {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(26, 35, 50, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.ticker-symbol {
    font-weight: 700;
    color: var(--orange);
}

.ticker-price {
    color: var(--text-primary);
}

.ticker-change {
    font-size: 0.9rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.ticker-change.positive {
    color: var(--green);
    background-color: rgba(0, 255, 136, 0.1);
}

.ticker-change.negative {
    color: var(--red);
    background-color: rgba(255, 51, 51, 0.1);
}

section {
    padding: 80px 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--orange);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.about-section {
    background-color: var(--bg-secondary);
}

.about-intro {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-description {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-box {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.mission-box:hover {
    transform: translateY(-5px);
}

.mission-box h3 {
    font-size: 1.5rem;
    margin: 15px 0;
}

.icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.icon-badge.blue {
    background-color: var(--blue);
    color: white;
}

.icon-badge.orange {
    background-color: var(--orange);
    color: white;
}

.copy-trading-section {
    background-color: var(--bg-dark);
}

.trading-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Make the Copy Trading section button centered and not full-width */
.copy-trading-section .cta-button {
    align-self: center;
    display: inline-block;
}

.trading-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-block {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
}

.info-block h3 {
    font-size: 1.3rem;
    margin: 15px 0 20px;
    color: var(--orange);
}

.info-block p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.risk-section {
    background-color: var(--bg-secondary);
}

.risk-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tools-list {
    list-style: none;
    margin-top: 15px;
}

.tools-list li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.tools-list li::before {
    content: '•';
    color: var(--orange);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

.success-section {
    background-color: var(--bg-dark);
}

.success-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.success-info p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.performance-stats {
    margin-top: 30px;
}

.stat-bar {
    margin-bottom: 25px;
}

.progress-label {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.progress-bar {
    background-color: var(--bg-card);
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-orange);
    border-radius: 15px;
    transition: width 1s ease;
}

.high-profit .progress-fill {
    background: linear-gradient(90deg, var(--green), #00cc6a);
}

.low-profit .progress-fill {
    background: linear-gradient(90deg, var(--green), var(--orange));
}

.progress-percent {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 10px;
}

.testimonial p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.reviewer {
    display: flex;
    flex-direction: column;
}

.reviewer strong {
    color: var(--blue);
    font-size: 1.1rem;
}

.reviewer span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.packages-section {
    background-color: var(--bg-secondary);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.package-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.package-card.basic {
    border-color: var(--blue);
}

.package-card.premium {
    border-color: var(--orange);
}

.package-card.silver {
    border-color: #c0c0c0;
}

.package-card.gold {
    border-color: #ffd700;
}

.package-card.platinum {
    border-color: var(--green);
}

.package-card.diamond {
    border-color: #b9f2ff;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.package-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 20px;
}

.package-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item strong {
    color: var(--text-primary);
}

.affiliate-section {
    background-color: var(--bg-dark);
}

.affiliate-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.affiliate-structure {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.level-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--bg-card);
    padding: 20px 25px;
    border-radius: 15px;
    border-left: 4px solid var(--orange);
}

.level-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.level-circle.orange {
    background-color: var(--orange);
}

.level-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.percent {
    font-size: 1.3rem;
    font-weight: 700;
}

.percent.green {
    color: var(--green);
}

.percent.orange {
    color: var(--orange);
}

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

.info-box {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
}

.info-box h3 {
    color: var(--orange);
    margin-bottom: 15px;
}

.bonus-example {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.bonus-example h4 {
    color: var(--orange);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.referral-example {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.referral-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    align-items: center;
    padding-bottom: 15px;
}

.referral-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.referral-amount {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
}

.bonus.green {
    color: var(--green);
    font-weight: 600;
    text-align: right;
}

.total-bonus {
    border-top: 2px solid var(--orange);
    padding-top: 20px;
    text-align: center;
}

.total-bonus span {
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 800;
}

.roadmap-section {
    background-color: var(--bg-secondary);
}

.roadmap-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.roadmap-text strong {
    color: var(--orange);
}

.regulation-info {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.regulation-info h3 {
    color: var(--orange);
    margin-bottom: 15px;
}

.teams-section {
    background-color: var(--bg-dark);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.country-flag {
    font-size: 4rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.country-flag:hover {
    transform: scale(1.2);
}

.terms-section {
    background-color: var(--bg-secondary);
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-number.blue {
    background-color: var(--blue);
    color: white;
}

.step-number.orange {
    background-color: var(--orange);
    color: white;
}

.terms-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.terms-column ul {
    list-style: none;
}

.terms-column li {
    color: var(--text-secondary);
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
}

.terms-column li::before {
    content: '•';
    color: var(--orange);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

.contact-section {
    background-color: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item h3 {
    color: var(--orange);
    margin-bottom: 10px;
}

.info-item p {
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.download-pdf {
    margin-top: 20px;
}

.pdf-button {
    display: inline-block;
    background: var(--gradient-blue);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(91, 124, 255, 0.3);
}

.pdf-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 124, 255, 0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background-color: var(--bg-card);
    border: 2px solid transparent;
    padding: 15px;
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.submit-button {
    background: var(--gradient-orange);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.footer {
    background-color: var(--bg-secondary);
    padding: 40px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

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

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

.footer-links h4,
.footer-social h4 {
    color: var(--orange);
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.9rem;
    font-style: italic;
}

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }

    .country-flag {
        font-size: 3rem;
    }
}
