/* GENERAL */
body {
    font-family: 'Poppins', sans-serif;
    background: #1A1A1A;
    color: #F2F2F2;
}

/* NAVBAR */
.public-navbar {
    background: #1A1A1A;
    padding: 15px 0;
    border-bottom: 1px solid #D4AF37;
    transition: 0.3s ease-in-out;
}

.public-navbar .nav-link {
    color: #BFBFBF;
    font-size: 15px;
    margin-left: 20px;
    position: relative;
    transition: 0.3s;
}

.public-navbar .nav-link:hover {
    color: #D4AF37;
}

/* GOLD BUTTON */
.btn-gold {
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 7px 20px;
    border-radius: 25px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #D4AF37;
    color: #1A1A1A;
}

/* LOGO */
.logo-text {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #F2F2F2;
}

.logo-icon {
    color: #D4AF37;
    text-shadow: 0 0 10px rgba(212,175,55,0.6);
    font-size: 30px;
}

/* NAVBAR TOGGLER */
.custom-toggler {
    border: 1px solid #D4AF37;
    padding: 5px 10px;
    border-radius: 5px;
}

.custom-toggler i {
    color: #D4AF37;
    font-size: 20px;
}

/* MOBILE */
@media (max-width: 991px) {
    .public-navbar .nav-link {
        margin-left: 0;
        padding: 10px 0;
        border-bottom: 1px solid #333;
    }

    .btn-gold {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}


/* HERO SECTION */
.hero-section {
    padding: 150px 0 120px;
    text-align: center;
    background: linear-gradient(180deg, #1A1A1A, #111);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #F2F2F2;
}

.hero-desc {
    color: #BFBFBF;
    font-size: 18px;
    max-width: 600px;
    margin: 15px auto;
}

.hero-buttons .hero-btn {
    margin: 10px;
}

/* HERO SECTION */
.video-hero {
    position: relative;
    text-align: center;
    background: linear-gradient(180deg, #1A1A1A, #111);
    padding: 150px 20px 120px;
    overflow: hidden;
}

.video-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.video-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: #F2F2F2;
}

.video-hero .hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.video-hero .hero-desc {
    font-size: 18px;
    color: #BFBFBF;
    margin-bottom: 30px;
}

.video-hero .hero-btn {
    padding: 12px 35px;
    font-size: 16px;
    border-radius: 6px;
    margin: 0 10px 10px 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.video-hero .hero-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* RESPONSIVE STYLING */
@media (max-width: 992px) {
    .video-hero {
        padding: 120px 15px 100px;
    }
    .video-hero .hero-title {
        font-size: 40px;
    }
    .video-hero .hero-desc {
        font-size: 16px;
    }
    .video-hero .hero-btn {
        padding: 10px 30px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .video-hero {
        padding: 100px 15px 80px;
    }
    .video-hero .hero-title {
        font-size: 32px;
    }
    .video-hero .hero-desc {
        font-size: 15px;
    }
    .video-hero .hero-btn {
        
    }
}

@media (max-width: 480px) {
    .video-hero {
        padding: 80px 10px 60px;
    }
    .video-hero .hero-title {
        font-size: 28px;
    }
    .video-hero .hero-desc {
        font-size: 14px;
    }
    .video-hero .hero-btn {
        
    }
}


/* FEATURES */
.features-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #F2F2F2;
}

.feature-box {
    text-align: center;
    padding: 35px;
    background: #111;
    border: 1px solid #2b2b2b;
    border-radius: 8px;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
}

.feature-icon {
    color: #D4AF37;
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 20px;
    color: #F2F2F2;
}

.feature-desc {
    color: #BFBFBF;
}

/* STATS */
.stats-section {
    padding: 70px 0;
    background: #111;
    border-top: 1px solid #2b2b2b;
    border-bottom: 1px solid #2b2b2b;
}

.stat-number {
    font-size: 34px;
    color: #D4AF37;
    font-weight: 700;
}

.stat-label {
    color: #BFBFBF;
    margin-top: -5px;
}

/* HOW IT WORKS */
.how-section {
    padding: 100px 0;
    background: #111;
    text-align: center;
}

.how-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #F2F2F2;
    margin-bottom: 20px;
}

.how-section .section-subtitle {
    font-size: 18px;
    color: #BFBFBF;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.how-box {
    background: #1A1A1A;
    padding: 40px 25px;
    border-radius: 15px;
    border: 1px solid #2b2b2b;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.how-box:hover {
    border-color: #D4AF37;
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.step-number {
    font-size: 28px;
    color: #D4AF37;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #111;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #D4AF37;
}

.step-number i {
    font-size: 32px;
}

.how-box h4 {
    font-size: 22px;
    font-weight: 600;
    color: #F2F2F2;
    margin-bottom: 15px;
}

.how-box p {
    font-size: 16px;
    color: #BFBFBF;
    line-height: 1.6;
}





/* FOOTER SECTION */
.footer-section {
    background: #0f0f0f;
    padding: 80px 0 30px;
    border-top: 1px solid #D4AF37;
}

.footer-top {
    padding-bottom: 50px;
    border-bottom: 1px solid #2b2b2b;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: #F2F2F2;
}

.footer-desc {
    margin-top: 15px;
    color: #BFBFBF;
    line-height: 1.7;
}

/* Titles */
.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: #D4AF37;
    font-weight: 600;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #BFBFBF;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #D4AF37;
    padding-left: 5px;
}

/* Contact */
.footer-contact {
    color: #BFBFBF;
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-contact i {
    color: #D4AF37;
    margin-right: 8px;
}

/* Social Icons */
.footer-socials a {
    color: #D4AF37;
    font-size: 20px;
    margin-right: 15px;
    transition: 0.3s;
}

.footer-socials a:hover {
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

/* Footer bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    color: #7a7a7a;
    font-size: 14px;
}


/* VIDEO HERO */
.video-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    z-index: 2;
}

.hero-content {
    z-index: 3;
    padding: 20px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #F2F2F2;
}

.hero-desc {
    color: #BFBFBF;
    max-width: 650px;
    margin: 15px auto 25px;
    font-size: 18px;
}


/* LIVE CRYPTO PRICES */
.crypto-prices {
    padding: 70px 0;
    background: #111;
    border-top: 1px solid #2b2b2b;
}

.price-box {
    background: #1a1a1a;
    border: 1px solid #2b2b2b;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
}

.price-box:hover {
    border-color: #D4AF37;
    transform: translateY(-5px);
}

.price-value {
    font-size: 26px;
    font-weight: 600;
    color: #D4AF37;
}

/* TESTIMONIALS */
.testimonials {
    padding: 80px 0;
    background: #1a1a1a;
    border-top: 1px solid #2b2b2b;
}

.testimonial-box {
    background: #111;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #2b2b2b;
    text-align: center;
    color: #BFBFBF;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-box h4 {
    color: #D4AF37;
    margin-top: 20px;
}

#backToTop {
    position: fixed;
    bottom: 120px; /* raised above JivoChat */
    right: 25px;
    width: 45px;
    height: 45px;
    background: #D4AF37;
    color: #1A1A1A;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    display: none;
    z-index: 9999; /* make sure it's on top */
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s, background 0.3s;
}

#backToTop:hover {
    background: #b8942e;
    transform: translateY(-4px);
}

.overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.about-title {
    color: #F2F2F2;
    font-size: 45px;
    font-weight: 700;
}

.about-sub {
    color: #BFBFBF;
    max-width: 800px;
    margin: 10px auto 20px;
}

.why-box {
    background: #1A1A1A;
    border: 1px solid #2b2b2b;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
}

.why-box:hover {
    border-color: #D4AF37;
    transform: translateY(-8px);
}

.why-icon {
    font-size: 40px;
    color: #D4AF37;
    margin-bottom: 10px;
}

.milestone-number {
    color: #D4AF37;
    font-size: 35px;
    font-weight: bold;
}
.milestone-label {
    color: #BFBFBF;
}


/* FAQ SECTION */
.faq-section {
    background: #1A1A1A;
    border-top: 1px solid #2b2b2b;
    padding-bottom: 80px;
}

.faq-section .accordion-button {
    background: #111;
    color: #F2F2F2;
    border: 1px solid #2b2b2b;
    font-weight: 500;
    transition: 0.3s;
}

.faq-section .accordion-button:hover,
.faq-section .accordion-button:focus {
    background: #222;
    color: #D4AF37;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #222;
    color: #D4AF37;
}

.faq-section .accordion-body {
    background: #1a1a1a;
    color: #BFBFBF;
    border-top: 1px solid #2b2b2b;
}

/* PLANS HERO */
.plans-hero {
    background: #111;
    color: #F2F2F2;
}
.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}
.hero-sub {
    font-size: 18px;
    color: #BFBFBF;
}

/* PLAN CARDS */
.plan-card {
    background: #1A1A1A;
    border: 1px solid #2b2b2b;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
}
.plan-card:hover {
    border-color: #D4AF37;
    transform: translateY(-8px);
}
.plan-card.featured {
    border: 2px solid #D4AF37;
}
.plan-header h3 {
    color: #F2F2F2;
    font-weight: 700;
    margin-bottom: 5px;
}
.plan-price {
    color: #D4AF37;
    font-size: 22px;
    font-weight: 600;
}
.plan-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
    color: #BFBFBF;
}
.plan-features li {
    margin-bottom: 8px;
}
.invest-btn {
    background: #D4AF37;
    color: #1A1A1A;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    transition: 0.3s;
}
.invest-btn:hover {
    background: #b8942e;
    color: #fff;
}

/* CTA SECTION */
.plans-cta {
    background: #111;
    color: #F2F2F2;
}
.plans-cta .btn-outline-light {
    border-color: #D4AF37;
    color: #D4AF37;
}
.plans-cta .btn-outline-light:hover {
    background: #D4AF37;
    color: #1A1A1A;
}

/* RESPONSIVE */
@media(max-width:767px){
    .hero-title { font-size: 32px; }
}

.contact-hero {
    color: #F2F2F2;
}
.hero-title {
    font-size: 42px;
    font-weight: 700;
}
.hero-sub {
    color: #BFBFBF;
}

.contact-section .form-control {
    background: #111;
    color: #F2F2F2;
    border: 1px solid #2b2b2b;
}
.contact-section .form-control:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.2rem rgba(212,175,55,.25);
}

.btn-gold {
    background: #D4AF37;
    color: #1A1A1A;
    font-weight: 600;
}
.btn-gold:hover {
    background: #b8942e;
    color: #fff;
}

#formMsg {
    color: #D4AF37;
    font-weight: 500;
}


/* AUTH SECTION */
.auth-section {
    background: #111;
}
.auth-card {
    border-radius: 12px;
}
.btn-gold {
    background: #D4AF37;
    color: #1A1A1A;
    font-weight: 600;
    transition: 0.3s;
}
.btn-gold:hover {
    background: #b8942e;
    color: #fff;
}
.text-gold {
    color: #D4AF37 !important;
}

/* AUTH SECTION */
.auth-section {
    background: #111;
}
.auth-card {
    border-radius: 12px;
}
.btn-gold {
    background: #D4AF37;
    color: #1A1A1A;
    font-weight: 600;
    transition: 0.3s;
}
.btn-gold:hover {
    background: #b8942e;
    color: #fff;
}
.text-gold {
    color: #D4AF37 !important;
}
.form-control, .form-select {
    background: #111;
    color: #F2F2F2;
    border: 1px solid #2b2b2b;
}
.form-control:focus, .form-select:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.2rem rgba(212,175,55,.25);
}


.privacy-hero {
    color: #F2F2F2;
}
.hero-title {
    font-size: 42px;
    font-weight: 700;
}
.hero-sub {
    color: #BFBFBF;
}
.privacy-content h2 {
    color: #F2F2F2;
    margin-top: 25px;
}
.privacy-content p {
    font-size: 16px;
    line-height: 1.7;
}


.auth-section {
    background: #111;
}
.auth-card {
    border-radius: 12px;
}
.btn-gold {
    background: #D4AF37;
    color: #1A1A1A;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 8px;
    transition: 0.3s;
}
.btn-gold:hover {
    background: #b8942e;
    color: #fff;
}
.text-gold {
    color: #D4AF37 !important;
}
.form-control, .form-select {
    background: #111;
    color: #F2F2F2;
    border: 1px solid #2b2b2b;
}
.form-control:focus, .form-select:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 0.2rem rgba(212,175,55,.25);
}


/* Success gold check animation */
.success-check {
    font-size: 20px;
    margin-top: 10px;
    animation: pop 0.4s ease-out;
    color: #D4AF37;
}

@keyframes pop {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

/* Error shake animation */
.error-shake {
    animation: shake 0.4s ease-in-out;
    color: #FF5555 !important;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}


