* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: white;
}

html {
    scroll-behavior: smooth;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
    background: #0a0a0a;
    border-bottom: 2px solid #ff8c00;
    margin-bottom: 0;
    padding-bottom: 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    flex-wrap: wrap;
}

/* ============================================================
   LOGO — image-based, no text styling, no box
   ============================================================ */
.logo {
    /* Reset text-based styling so it works as an image wrapper */
    font-size: unset;
    font-weight: unset;
    color: unset;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.logo-img {
    display: block;
    height: 56px;        /* Natural, readable size */
    width: auto;         /* Always preserve aspect ratio */
    max-width: 220px;
    object-fit: contain;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* ============================================================
   FOOTER LOGO — white/transparent logo on dark background
   ============================================================ */
.footer-logo-img {
    display: block;
    height: 52px;        /* Clearly visible, not oversized */
    width: auto;         /* Always preserve aspect ratio */
    max-width: 200px;
    object-fit: contain;
    background: transparent;  /* Never add a background box */
    border: none;
    box-shadow: none;
    margin-bottom: 14px;
}

/* ============================================================
   NAV & AUTH BADGE
   ============================================================ */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff8c00;
}

.auth-badge {
    background: #ff8c00;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.header-bottom {
    text-align: center;
    padding: 10px;
    background: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.trust-badge {
    font-size: 12px;
    letter-spacing: 2px;
}

/* ============================================================
   TICKER — flush to header, no gap
   ============================================================ */
.tradingview-ticker {
    background: #0a0a0a;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
}

.ticker-label {
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    background: #ff8c00;
    color: #0a0a0a;
    min-height: 40px;
    flex-shrink: 0;
}

.tradingview-ticker .tradingview-widget-container {
    flex: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1200');
    background-size: cover;
    padding: 100px 40px;
    text-align: center;
}

.hero-content h1 {
    font-size: 32px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.hero-content h1 span {
    color: #ff8c00;
}

.hero-content p {
    color: #ccc;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ff8c00;
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid #ff8c00;
    padding: 12px 25px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: 36px 40px 80px;   /* reduced top padding — compact gap after ticker */
    background: #111;
    text-align: center;
}

.about h2 {
    color: #ff8c00;
    font-size: 28px;
    margin-bottom: 20px;
}

.about p {
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.about-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 36px 40px 60px;
    text-align: center;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.about-features span {
    color: #4CAF50;
    font-size: 14px;
}

/* About service cards */
.about-services {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.about-service-card {
    flex: 1 1 160px;
    max-width: 200px;
    padding: 24px 16px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.about-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.25);
}

.about-service-card .svc-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.18);
}

.about-service-card .svc-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: #fff;
    opacity: 0.9;
}

.about-service-card h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.about-service-card p {
    font-size: 12px;
    opacity: 0.75;
    margin: 0;
    line-height: 1.5;
}

.about-badge {
    display: inline-block;
    margin-top: 28px;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.4px;
    border: 1px solid rgba(255,255,255,0.25);
    opacity: 0.85;
}

/* ============================================================
   LIVE ACCOUNT
   ============================================================ */
.live-account {
    padding: 80px 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
    border-top: 1px solid #ff8c00;
    border-bottom: 1px solid #ff8c00;
}

.live-account-container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.live-account h2 {
    color: #ff8c00;
    font-size: 32px;
    margin-bottom: 15px;
}

.live-account p {
    color: #aaa;
    margin-bottom: 30px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 28px 0;
}

.step {
    flex: 1 1 140px;
    max-width: 180px;
    background: #111;
    padding: 16px 20px;
    border-radius: 10px;
    color: white;
    border: 1px solid #333;
    text-align: center;
}

.live-account-btn {
    background: #ff8c00;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

/* ============================================================
   WHY PARTNER
   ============================================================ */
.why-partner {
    padding: 60px 40px;
    text-align: center;
    background: #0a0a0a;
}

.why-partner h2 {
    color: #ff8c00;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 32px auto 0;
    padding: 0 24px;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature {
    background: #111;
    padding: 32px 20px;
    border-radius: 10px;
    min-width: 150px;
    text-align: center;
}

.feature h3 {
    font-size: 24px;
    color: #ff8c00;
    margin-bottom: 10px;
}

.feature p {
    font-size: 12px;
    color: #aaa;
}

/* ============================================================
   BONUSES
   ============================================================ */
.bonuses {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    padding: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
    background: #111;
}

.bonus-card {
    background: #1a1a1a;
    padding: 40px 32px;
    text-align: center;
    border-radius: 10px;
    flex: 1 1 300px;
    max-width: 480px;
}

.bonus-card h3 {
    color: #ff8c00;
    font-size: 14px;
    margin-bottom: 15px;
}

.bonus-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.bonus-card p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 14px;
}

.claim-btn {
    background: #ff8c00;
    color: white;
    border: none;
    padding: 10px 30px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

/* ============================================================
   EXCLUSIVE PROMOTIONS
   ============================================================ */
.exclusive-promotions {
    padding: 60px 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.exclusive-promotions h2 {
    color: #ff8c00;
    font-size: 28px;
    margin-bottom: 50px;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 32px auto 0;
}

@media (max-width: 900px) {
    .promotions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .promotions-grid {
        grid-template-columns: 1fr;
    }
}

.promo-card {
    background: #111;
    padding: 36px 24px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #222;
}

.promo-card:hover {
    transform: translateY(-10px);
    border-color: #ff8c00;
}

.promo-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.promo-card h3 {
    color: #ff8c00;
    font-size: 22px;
    margin-bottom: 20px;
}

.promo-card p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 25px;
}

.promo-btn {
    background: transparent;
    color: #ff8c00;
    border: 2px solid #ff8c00;
    padding: 10px 25px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.promo-btn:hover {
    background: #ff8c00;
    color: white;
}

/* ============================================================
   LOCAL PAYMENTS
   ============================================================ */
.local-payments {
    padding: 60px 40px;
    background: #0a0a0a;
    text-align: center;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.local-payments h2 {
    color: #ff8c00;
    font-size: 28px;
    margin-bottom: 20px;
}

.payment-desc {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 50px;
}

.banks-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 32px auto;
    max-width: 900px;
}

.bank-card {
    flex: 1 1 100px;
    max-width: 140px;
    background: #111;
    border: 1px solid #333;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border-radius: 8px;
}

.bank-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px auto;
}

.bank-card span {
    display: block;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.bank-card:hover {
    border-color: #ff8c00;
    transform: scale(1.05);
}

.payment-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.payment-steps span:not(.arrow) {
    background: #ff8c00;
    padding: 10px 25px;
    border-radius: 5px;
    color: white;
}

.arrow {
    color: #ff8c00;
    font-size: 20px;
}

/* ============================================================
   PLATFORMS
   ============================================================ */
.platforms-section {
    padding: 60px 40px;
    background: #0a0a0a;
    text-align: center;
}

.platforms-section h2 {
    color: #ff8c00;
    font-size: 28px;
    margin-bottom: 50px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 32px auto 0;
}

@media (max-width: 900px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .platforms-grid {
        grid-template-columns: 1fr;
    }
}

.platform-card {
    background: #111;
    padding: 32px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #222;
    transition: all 0.3s;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: #ff8c00;
}

.platform-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
}

.platform-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.platform-card h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}

.platform-btn {
    background: transparent;
    color: #ff8c00;
    border: 1px solid #ff8c00;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.platform-btn:hover {
    background: #ff8c00;
    color: white;
}

/* ============================================================
   PAYMENT METHODS
   ============================================================ */
.payment-methods {
    padding: 40px;
    background: #0a0a0a;
    text-align: center;
    border-top: 1px solid #222;
}

.payment-methods h2 {
    color: #ff8c00;
    font-size: 24px;
    margin-bottom: 30px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.payment-icons span {
    background: #111;
    padding: 12px 25px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    border: 1px solid #333;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
    padding: 60px 40px;
    background: #0a0a0a;
}

.contact-container {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-info,
.contact-form {
    flex: 1 1 300px;
    background: #111;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #222;
}

.contact-info h3,
.contact-form h3 {
    color: #ff8c00;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    color: #aaa;
    margin-bottom: 20px;
}

.contact-details p {
    margin: 15px 0;
    font-size: 16px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 5px;
    color: white;
}

.contact-form button {
    background: #ff8c00;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #0a0a0a;
    border-top: 2px solid #ff8c00;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 40px 32px;
    align-items: flex-start;
}

.footer-column {
    flex: 1 1 160px;
    min-width: 140px;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-column h3 span {
    color: #ff8c00;
}

.footer-column h4 {
    color: #ff8c00;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column p {
    color: #aaa;
    font-size: 13px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
}

.footer-column ul li a:hover {
    color: #ff8c00;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-newsletter input {
    padding: 10px;
    background: #111;
    border: 1px solid #333;
    border-radius: 5px;
    color: white;
}

.footer-newsletter button {
    background: #ff8c00;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    color: white;
    background: #1a1a1a;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
}

.social-links a:hover {
    background: #ff8c00;
}

/* Footer legal & risk */
.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 20px;
    padding: 14px 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-legal-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: rgba(255,255,255,0.9);
}

.footer-legal-links .divider {
    color: rgba(255,255,255,0.2);
    font-size: 11px;
}

.risk-warning-footer {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 24px 40px;
    font-size: 11.5px;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.risk-warning-footer .risk-label {
    display: inline-block;
    font-weight: 700;
    color: rgba(255,200,50,0.85);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    font-size: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 40px 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
    flex-shrink: 0;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37,211,102,0.35);
    animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.75); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo-img {
        margin: 0 auto;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .features-grid,
    .promotions-grid,
    .platforms-grid {
        gap: 20px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto 14px;
    }

    .social-links {
        justify-content: center;
    }

    .contact-container {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   CONTACT ITEM — icon + text rows
   ============================================================ */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 16px 0;
}

.contact-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item span {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

/* ============================================================
   FOOTER CONTACT ITEMS — icon + text rows
   ============================================================ */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    list-style: none;
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    color: #aaa;
    font-size: 13px;
    line-height: 1.5;
}

/* ============================================================
   SOCIAL ICON IMAGES — replaces emoji icons
   ============================================================ */
.social-links a {
    width: 36px;
    height: 36px;
    padding: 7px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.social-links a:hover {
    background: #ff8c00;
}

.social-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}