/**
 * StreamSpot Visual Enhancements
 * Loaded after dark.css — all overrides use equal or higher specificity.
 * Fully reversible: remove the <link> tag to revert everything.
 */

/* ===========================================
   A0. WIDER CONTENT FOR LARGE SCREENS
   Navbar keeps its own max-width from dark.css
   =========================================== */
@media (min-width: 1200px) {
    .header .container,
    .counts-area .container,
    .why-choose-us .container,
    .basic-1 .container,
    .feature .container,
    .work-process-area .container,
    .faqs .container,
    .slider-2 .container,
    .payment-methods .container,
    .footer .container {
        max-width: 1380px;
    }
    .navbar-custom .container {
        max-width: 1380px;
    }
}
@media (min-width: 1600px) {
    .header .container,
    .counts-area .container,
    .why-choose-us .container,
    .basic-1 .container,
    .feature .container,
    .work-process-area .container,
    .faqs .container,
    .slider-2 .container,
    .payment-methods .container,
    .footer .container {
        max-width: 1590px;
    }
    .navbar-custom .container {
        max-width: 1590px;
    }
}

/* ===========================================
   A1. SOFTENED COLOR FOUNDATION
   =========================================== */
body {
    background: #0a0a0a;
}
p, .navbar-custom .nav-item .nav-link {
    color: #f0f0f0;
}
.single_work_step p,
.why-choose-us .box p,
.guarantee-item p,
.counts-area .count-box p,
.basic-1 .text-container p,
.faqs p,
.slider-2 p {
    color: #a3a3a3;
}
.navbar-custom {
    background-color: #0a0a0a;
}
.navbar-custom.top-nav-collapse {
    background-color: #0a0a0a;
}
.footer {
    background: #0a0a0a;
}
.slider-2 {
    background-color: #0a0a0a;
}
.feature .feature-icons .content .icon-box .icon {
    background: #0a0a0a;
}

/* ===========================================
   A2. TYPOGRAPHY — SORA FOR HEADINGS
   =========================================== */
h1, h2, h3, h4, h5 {
    font-family: 'Sora', 'Nunito', sans-serif;
}
.header-content h1 {
    font-family: 'Sora', 'Nunito', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.section-header .h2-heading,
.basic-1 .text-container h2,
.work-process-area h2 {
    font-family: 'Sora', 'Nunito', sans-serif;
    font-weight: 700;
}
.counts-area .count-box span {
    font-family: 'Sora', 'Nunito', sans-serif;
    font-weight: 700;
}
.why-choose-us .box h3,
.social-icons .feature-box h3,
.single_work_step h5 {
    font-family: 'Sora', 'Nunito', sans-serif;
}
.faqs .faq-block__header-title h4 {
    font-family: 'Sora', 'Nunito', sans-serif;
}
.single_work_step .step-icon i {
    font-family: 'Sora', 'Nunito', sans-serif;
    font-style: normal;
    font-weight: 700;
}

/* ===========================================
   A3. HERO AMBIENT GRADIENT ORBS
   =========================================== */
.header {
    position: relative;
}
.header-content {
    position: relative;
    z-index: 2;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,102,0,0.18) 0%, transparent 70%);
    top: -120px;
    right: -80px;
    filter: blur(80px);
    animation: orb-drift-1 18s ease-in-out infinite alternate;
}
.hero-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,140,50,0.12) 0%, transparent 70%);
    bottom: -100px;
    left: -60px;
    filter: blur(100px);
    animation: orb-drift-2 22s ease-in-out infinite alternate;
}
.hero-orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245,102,0,0.08) 0%, transparent 70%);
    top: 40%;
    left: 35%;
    filter: blur(90px);
    animation: orb-drift-3 25s ease-in-out infinite alternate;
}
@keyframes orb-drift-1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 30px) scale(1.15); }
}
@keyframes orb-drift-2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -25px) scale(1.1); }
}
@keyframes orb-drift-3 {
    0%   { transform: translate(0, 0) scale(0.9); }
    100% { transform: translate(-30px, -40px) scale(1.05); }
}

/* ===========================================
   A4. NOISE/GRAIN TEXTURE OVERLAY
   Disabled — SVG feTurbulence can stall page load event
   =========================================== */

/* ===========================================
   A5a. HERO SECTION SIZING
   =========================================== */
.header .header-content {
    padding-top: 6rem;
    padding-bottom: 2rem;
}

/* ===========================================
   A5. HERO HEADLINE NEON GLOW
   =========================================== */
.header-content h1 {
    text-shadow:
        0 0 20px rgba(245, 102, 0, 0.35),
        0 0 60px rgba(245, 102, 0, 0.12);
}

/* ===========================================
   B1. GLASSMORPHISM — GUARANTEE CARDS
   =========================================== */
.guarantee-item {
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.guarantee-item:hover {
    border-color: rgba(245, 102, 0, 0.15);
    box-shadow: 0 4px 24px rgba(245, 102, 0, 0.06);
}

/* ===========================================
   B2. GLASSMORPHISM — COUNTER BOXES
   =========================================== */
.counts-area .count-box {
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    box-shadow: 0 0 30px rgba(245, 102, 0, 0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.counts-area .count-box:hover {
    border-color: rgba(245, 102, 0, 0.15);
    box-shadow: 0 4px 24px rgba(245, 102, 0, 0.08);
}

/* ===========================================
   B3. FEATURE CARD HOVER EFFECTS
   =========================================== */
.why-choose-us .box {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border-radius: 12px;
}
.why-choose-us .box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(245, 102, 0, 0.08);
}

/* Social/Offer feature boxes */
.social-icons .feature-box {
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.social-icons .feature-box:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 102, 0, 0.12);
    box-shadow: 0 8px 30px rgba(245, 102, 0, 0.06);
}

/* ===========================================
   B4. FAQ CARD REFINEMENT
   =========================================== */
.faqs .faq-block__card .card {
    background: rgba(255, 255, 255, 0.035) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 10px;
    box-shadow: none !important;
}
.faqs .faq-block__card .card:hover {
    border-color: rgba(245, 102, 0, 0.15) !important;
    box-shadow: 0 4px 24px rgba(245, 102, 0, 0.06) !important;
}
.faqs .faq-block__header {
    transition: background 0.2s ease;
    cursor: pointer;
    padding: 18px 22px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.faqs .faq-block__header:hover {
    background: rgba(255, 255, 255, 0.02);
}
.faqs .faq-block__card .card {
    padding: 0 !important;
}
.faqs .faq-block__header-title {
    flex: 1;
}
.faqs .faq-block__header-title h4 {
    margin-bottom: 0;
}
.faqs .faq-block__body {
    padding: 0 22px 18px 22px;
}
.faqs .faq-block__body-description p {
    margin-bottom: 0;
}
.faqs .faq-block__header-icon i {
    transition: transform 0.3s ease;
}
.faqs .faq-block__header[aria-expanded="true"] .faq-block__header-icon i,
.faqs .faq-block__header:not(.collapsed) .faq-block__header-icon i {
    transform: rotate(180deg);
}

/* ===========================================
   B5. SMOOTH SECTION TRANSITIONS
   =========================================== */
.why-choose-us {
    background: linear-gradient(to bottom, #0a0a0a 0%, #131316 8%, #131316 45%, #0a0a0a 55%) !important;
    padding-top: 2rem;
}
.why-choose-us .row:last-child {
    padding-top: 2rem;
}
.feature {
    background: linear-gradient(to bottom, #0a0a0a 0%, #131316 80px, #131316 calc(100% - 80px), #0a0a0a 100%) !important;
    padding-top: 2rem;
}
.faqs {
    background: linear-gradient(to bottom, #0a0a0a 0%, #131316 80px, #131316 calc(100% - 80px), #0a0a0a 100%) !important;
    padding-top: 2rem;
}

/* ===========================================
   C1. CTA BUTTON GLOW + HOVER
   =========================================== */
.btn-getstarted {
    transition: all 0.3s ease !important;
    box-shadow: 0 0 0 rgba(245, 102, 0, 0);
}
.btn-getstarted:hover {
    box-shadow: 0 4px 24px rgba(245, 102, 0, 0.4) !important;
    transform: translateY(-2px);
}
.btn-getstarted:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 12px rgba(245, 102, 0, 0.3) !important;
}

/* Discord button */
.btn-discord {
    transition: all 0.3s ease;
}
.btn-discord:hover {
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
    transform: translateY(-2px);
}

/* ===========================================
   C2. NAV LINK HOVER UNDERLINE
   =========================================== */
.navbar-custom .nav-item .nav-link,
.navbar-custom .btn-login {
    position: relative;
}
.navbar-custom .nav-item .nav-link::after,
.navbar-custom .btn-login::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #f56600;
    transition: width 0.3s ease, left 0.3s ease;
}
.navbar-custom .nav-item .nav-link:hover::after,
.navbar-custom .nav-item .nav-link.active::after,
.navbar-custom .btn-login:hover::after,
.navbar-custom .btn-login.active::after {
    width: 70%;
    left: 15%;
}

/* ===========================================
   C3. SCROLL-TO-TOP BUTTON
   =========================================== */
a.back-to-top {
    background: rgba(245, 102, 0, 0.9) !important;
    background-image: none !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    text-indent: -9999px !important;
    overflow: hidden;
    position: fixed;
}
a.back-to-top::after {
    content: '\f077';
    font-family: 'Font Awesome 5 Free';
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-indent: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%);
}
a.back-to-top:hover {
    background: #f56600 !important;
    box-shadow: 0 4px 20px rgba(245, 102, 0, 0.4) !important;
    transform: translateY(-2px);
}

/* ===========================================
   D3. DECORATIVE EQUALIZER BARS
   =========================================== */
.eq-bars {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 28px;
    margin-left: 14px;
    vertical-align: middle;
}
.eq-bars span {
    display: block;
    width: 3px;
    background: #f56600;
    border-radius: 2px;
    animation: eq-bounce 1.2s ease-in-out infinite;
}
.eq-bars span:nth-child(1) { height: 12px; animation-delay: 0s; }
.eq-bars span:nth-child(2) { height: 20px; animation-delay: 0.15s; }
.eq-bars span:nth-child(3) { height: 8px;  animation-delay: 0.3s; }
.eq-bars span:nth-child(4) { height: 16px; animation-delay: 0.45s; }
.eq-bars span:nth-child(5) { height: 24px; animation-delay: 0.6s; }
@keyframes eq-bounce {
    0%, 100% { transform: scaleY(0.4); }
    50%      { transform: scaleY(1); }
}

/* ===========================================
   D4. PAYMENT SLIDER SPACING + EDGE FADE
   =========================================== */
.payment-methods .section-header {
    margin-bottom: 1.5rem;
}
.payment-methods .image-slider .swiper-slide img {
    max-height: 126px !important;
    max-width: 126px !important;
}
.payment-methods .image-slider .swiper-slide img[alt*="Tether"],
.payment-methods .image-slider .swiper-slide img[alt*="Polygon"],
.payment-methods .image-slider .swiper-slide img[alt*="Dogecoin"],
.payment-methods .image-slider .swiper-slide img[alt*="Binance"],
.payment-methods .image-slider .swiper-slide img[alt*="Bitcoin"],
.payment-methods .image-slider .swiper-slide img[alt*="Shiba"] {
    max-height: 132px !important;
    max-width: 132px !important;
}
.payment-methods .image-slider .swiper-slide img[alt*="Solana"] {
    max-height: 135px !important;
    max-width: 135px !important;
}
.payment-methods .slider-container {
    position: relative;
}
.payment-methods .slider-container::before,
.payment-methods .slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 10;
    pointer-events: none;
}
.payment-methods .slider-container::before {
    left: 0;
    background: linear-gradient(to right, #0a0a0a, transparent);
}
.payment-methods .slider-container::after {
    right: 0;
    background: linear-gradient(to left, #0a0a0a, transparent);
}

/* ===========================================
   COUNTER — TABULAR NUMS
   =========================================== */
.counts-area .count-box span {
    font-variant-numeric: tabular-nums;
}

/* ===========================================
   RESPONSIVE — disable heavy effects on mobile
   =========================================== */
@media (max-width: 768px) {
    .hero-orb { display: none; }
    .header::after { display: none; }
    .eq-bars { display: none; }
    .payment-methods .slider-container::before,
    .payment-methods .slider-container::after { display: none; }
}
