@charset "UTF-8";

/* ========================================
   WOWBET PARTNER - DESIGN SYSTEM
   Color scheme inspired by wowbet.win
   ======================================== */

:root {
    /* Primary Colors - WowBet palette */
    --primary-dark: #0a0e27;
    --primary-navy: #0d1333;
    --primary-blue: #1a237e;
    --accent-blue: #2979ff;
    --accent-cyan: #00e5ff;
    --accent-light-blue: #448aff;
    --accent-gradient: linear-gradient(135deg, #2979ff 0%, #00e5ff 100%);
    --accent-gradient-hover: linear-gradient(135deg, #448aff 0%, #18ffff 100%);
    
    /* Backgrounds */
    --bg-dark: #060a1e;
    --bg-card: rgba(13, 19, 51, 0.7);
    --bg-card-hover: rgba(20, 28, 70, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-section-alt: #080c24;
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.45);
    --text-accent: #00e5ff;
    
    /* Borders */
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(41, 121, 255, 0.3);
    
    /* Shadows */
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(41, 121, 255, 0.15);
    --shadow-btn: 0 4px 20px rgba(41, 121, 255, 0.3);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

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

body {
    font-family: 'Inter', 'Rubik', sans-serif;
    position: relative;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover,
a:focus {
    color: var(--accent-cyan);
    text-decoration: none;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h3 {
    color: var(--text-secondary);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
}

h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

h5 {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-cyan);
    margin-bottom: 0.7rem;
}

p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.95rem;
}

p.lead {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.text-primary {
    color: var(--accent-blue) !important;
}

.light-font {
    font-weight: 300;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    transition: var(--transition-smooth);
    border-radius: 8px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.25);
    color: #fff;
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #fff;
    box-shadow: var(--shadow-btn);
}

.btn-primary {
    border-radius: 8px;
    background: var(--accent-gradient);
    box-shadow: var(--shadow-btn);
    font-weight: 600;
    padding: 0.75rem 2.2rem;
    border: 0;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not([disabled]):not(.disabled).active,
.btn-primary:not([disabled]):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    background: var(--accent-gradient-hover);
    box-shadow: 0 6px 30px rgba(41, 121, 255, 0.4);
    color: #FFF;
    transform: translateY(-2px);
}

.btn-light {
    border-radius: 8px;
    background: #FFF;
    box-shadow: var(--shadow-card);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
    margin: 0.5rem;
    padding: 0.7rem 1.6rem;
    line-height: 1.8;
}

.btn-group-lg>.btn,
.btn-lg {
    padding: 0.9rem 1.2rem;
    font-size: 15px;
    border-radius: 10px;
}

/* CTA Glow Button */
.btn-glow {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    padding: 0.85rem 2.5rem;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-btn);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(41, 121, 255, 0.5);
    color: #fff;
}

/* ========================================
   SECTION LAYOUTS
   ======================================== */

.light-bg {
    background-color: var(--bg-section-alt);
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title small {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

@media (max-width:767px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section {
        padding: 50px 0;
    }
}


/* ========================================
   NAVBAR
   ======================================== */

.nav-menu {
    padding: 1rem 0;
    transition: var(--transition-smooth);
    z-index: 1000;
}

.nav-menu.is-scrolling,
.nav-menu.menu-is-open {
    background: rgba(6, 10, 30, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-menu.is-scrolling {
    padding: 0;
}

.navbar-brand img,
.img-fluid-logo {
    max-height: 45px;
    filter: brightness(1.1);
    transition: var(--transition-fast);
}

.navbar-brand:hover img {
    filter: brightness(1.3);
}

.navbar-nav .nav-link {
    position: relative;
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover {
    color: var(--accent-cyan) !important;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
        font-size: 14px;
    }

    .navbar-nav>.nav-item>.nav-link.active:after {
        content: "";
        border-bottom: 2px solid var(--accent-cyan);
        left: 1rem;
        right: 1rem;
        bottom: 5px;
        height: 1px;
        position: absolute;
    }
}

@media (max-width:991px) {
    .navbar-nav.is-scrolling {
        padding-bottom: 1rem;
    }

    .navbar-nav .nav-item {
        text-align: center;
    }
}


/* ========================================
   HERO SECTION
   ======================================== */

header {
    padding: 100px 0 0;
    text-align: center;
    color: #FFF;
    position: relative;
    overflow: hidden;
}

/* Animated background particles effect */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(41, 121, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 80% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 50% 20%, rgba(41, 121, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Floating orbs decoration */
header::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: floatOrb 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(30px) scale(1.05); }
}

header .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(41, 121, 255, 0.12);
    border: 1px solid rgba(41, 121, 255, 0.25);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.bg-gradient {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-navy) 40%, #0d1944 70%, var(--primary-dark) 100%);
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.75;
}

.img-holder {
    height: 0;
    padding-bottom: 33%;
    overflow: hidden;
}

@media (max-width:1200px) {
    .img-holder {
        padding-bottom: 50%;
    }
}

@media (max-width:767px) {
    .tagline {
        font-size: 0.95rem;
    }

    .img-holder {
        padding-bottom: 100%;
    }
}

/* Hero image glow effect */
header .img-fluid {
    filter: drop-shadow(0 0 40px rgba(41, 121, 255, 0.2));
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}


/* ========================================
   FEATURE CARDS
   ======================================== */

.gradient-fill:before {
    color: var(--accent-blue);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card.features {
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
    overflow: hidden;
    position: relative;
}

.card.features .card-body {
    padding: 2rem;
}

/* Top glow line */
.card.features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.card.features:hover::before {
    opacity: 1;
}

@media (max-width:991px) {
    .card.features {
        margin-bottom: 1.5rem;
    }

    [class^="col-"]:last-child .card.features {
        margin-bottom: 0;
    }
}

.card.features:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow), var(--shadow-card);
    background: var(--bg-card-hover);
}

.card-title {
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Icon styling in cards */
.card.features .ti-3x {
    font-size: 2.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 50px;
}

.box-icon {
    box-shadow: var(--shadow-card);
    padding: 15px;
    width: 70px;
    height: 70px;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-icon {
    box-shadow: var(--shadow-glow);
    padding: 10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    color: var(--accent-cyan);
    font-size: 48px;
    text-align: center;
    line-height: 80px;
    font-weight: 300;
    transition: var(--transition-smooth);
}

@media (max-width:992px) {
    .circle-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        line-height: 50px;
    }
}

.ui-steps li:hover .circle-icon {
    background: var(--accent-gradient);
    box-shadow: var(--shadow-btn);
    color: #FFF;
}

.ui-steps li {
    padding: 15px 0;
}

.ui-steps li:not(:last-child) {
    border-bottom: 1px solid var(--border-glass);
}

.perspective-phone {
    position: relative;
    z-index: -1;
}

@media (min-width:992px) {
    .perspective-phone {
        margin-top: -150px;
    }
}


/* ========================================
   TABS
   ======================================== */

.tab-content {
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-top: none;
    box-shadow: var(--shadow-card);
    padding: 3rem;
}

@media (max-width:992px) {
    .tab-content {
        padding: 1.5rem;
    }
}

.tab-content p {
    line-height: 1.85;
    color: var(--text-secondary);
}

.tab-content h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-tabs {
    border-bottom: 0;
}

.nav-tabs .nav-item .nav-link,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-glass);
    border-bottom: none;
    font-size: 16px;
    color: var(--text-muted);
    background: rgba(13, 19, 51, 0.4);
    border-radius: 12px 12px 0 0;
    transition: var(--transition-fast);
    font-weight: 500;
}

.nav-tabs .nav-link.active {
    background: var(--bg-card);
    border-top-width: 3px;
    border-top-color: var(--accent-blue);
    border-left-color: var(--border-glass);
    border-right-color: var(--border-glass);
    color: var(--accent-cyan);
}


/* ========================================
   TESTIMONIALS / OWL CAROUSEL
   ======================================== */

.owl-carousel .owl-item img.client-img {
    width: 110px;
    margin: 30px auto;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(41, 121, 255, 0.2);
    border: 2px solid var(--border-accent);
}

.testimonials-single {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}

.blockquote {
    color: var(--text-secondary);
    font-weight: 300;
}

.owl-next.disabled,
.owl-prev.disabled {
    opacity: 0.5;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 60px;
}

.owl-theme .owl-dots .owl-dot span {
    background: rgba(41, 121, 255, 0.2);
    width: 35px;
    height: 6px;
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--accent-blue);
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--accent-gradient);
    box-shadow: var(--shadow-btn);
}


/* ========================================
   IMAGE GALLERY
   ======================================== */

.img-gallery .owl-item {
    box-shadow: var(--shadow-card);
    transform: scale(0.8);
    transition: var(--transition-smooth);
    border-radius: 12px;
    overflow: hidden;
}

.img-gallery .owl-item.center {
    transform: scale(1);
}


/* ========================================
   PRICING
   ======================================== */

@media (max-width:992px) {
    .card-deck {
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .card-deck .card {
        margin-bottom: 15px;
    }
}

.card.pricing {
    border: 1px solid var(--border-glass);
    background: var(--bg-card);
    border-radius: 16px;
}

.card.pricing.popular {
    border-top-width: 3px;
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-glow);
}

.card.pricing .card-head {
    text-align: center;
    padding: 40px 0 20px;
}

.card.pricing .card-head .price {
    display: block;
    font-size: 45px;
    font-weight: 300;
    color: var(--accent-cyan);
}

.card.pricing .card-head .price sub {
    bottom: 0;
    font-size: 55%;
}

.card.pricing .list-group-item {
    border: 0;
    text-align: center;
    color: var(--text-secondary);
    padding: 1.05rem 1.25rem;
    background: transparent;
}

.card.pricing .list-group-item del {
    color: var(--text-muted);
}

.card.pricing .card-body {
    padding: 1.75rem;
}


/* ========================================
   CONTENT SECTIONS (Registration, Sign Up, etc.)
   ======================================== */

.section .row {
    align-items: center;
}

.section .img-fluid-koli,
.section img.col-md-6 {
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.section img.col-md-6:hover {
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.section .font-weight-bold {
    font-size: 1.8rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}


/* ========================================
   VIDEO SECTION
   ======================================== */

.section video {
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-glass);
}


/* ========================================
   PAYOUT METHODS
   ======================================== */

img[src*="Payout-methods"] {
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-glass);
    margin: 0 auto;
    display: block;
    max-width: 90%;
    transition: var(--transition-smooth);
}

img[src*="Payout-methods"]:hover {
    box-shadow: var(--shadow-glow);
}


/* ========================================
   FAQ SECTION
   ======================================== */

#faq h4 {
    color: var(--text-primary);
    font-weight: 600;
    position: relative;
    padding-left: 20px;
    transition: var(--transition-fast);
}

#faq h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 20px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

#faq h4:hover {
    color: var(--accent-cyan);
}

#faq .light-font {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-glass);
}

#faq .light-font:last-child {
    border-bottom: none;
}

/* FAQ Section background card */
#faq .row {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
}

@media (max-width: 767px) {
    #faq .row {
        padding: 1.5rem;
    }
}


/* ========================================
   CALL TO ACTION
   ======================================== */

.call-to-action {
    text-align: center;
    color: #FFF;
    margin: 3rem 0;
    padding: 2rem;
}

.call-to-action .box-icon {
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    transform: scale(0.85);
    margin-bottom: 2.5rem;
}

.call-to-action h2 {
    color: #FFF;
    -webkit-text-fill-color: #fff;
}

.call-to-action .tagline {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.call-to-action .img-fluid-logo {
    max-height: 55px;
    margin-bottom: 1.5rem;
    filter: brightness(1.2);
}

/* CTA buttons container */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 52px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.cta-btn-primary {
    background: var(--accent-gradient) !important;
    color: white !important;
    box-shadow: var(--shadow-btn);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(41, 121, 255, 0.5);
}

.cta-btn-telegram {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(10px);
}

.cta-btn-telegram:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: var(--accent-cyan) !important;
    transform: translateY(-3px);
}

.btn-light img {
    margin-right: 0.4rem;
    vertical-align: text-bottom;
}


/* ========================================
   FOOTER
   ======================================== */

footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-glass);
    padding: 2rem 0;
}

footer p, footer small {
    color: var(--text-muted);
}

.social-icons {
    text-align: right;
}

.social-icons a {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    margin: 0 0.3rem;
    border-radius: 12px;
    color: var(--accent-blue);
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    text-decoration: none;
    color: var(--accent-cyan);
    background: rgba(41, 121, 255, 0.1);
    border-color: var(--border-accent);
    transform: translateY(-3px);
}

@media (max-width:991px) {
    .social-icons {
        text-align: center;
        margin-top: 2rem;
    }
}


/* ========================================
   STAT COUNTERS (new addition)
   ======================================== */

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}


/* ========================================
   ANIMATIONS
   ======================================== */

/* Fade in up animation for sections */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Shimmer effect for headings */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.shimmer-text {
    background: linear-gradient(90deg, #fff 30%, var(--accent-cyan) 50%, #fff 70%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}


/* ========================================
   GLASSMORPHISM UTILITY
   ======================================== */

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}


/* ========================================
   COMMISSION CARDS - EQUAL HEIGHT
   ======================================== */

.commission-cards-row {
    display: flex;
    flex-wrap: wrap;
}

.commission-cards-row > [class*="col-"] {
    display: flex;
    margin-bottom: 1.5rem;
}

.commission-card {
    text-align: center;
    border: 1px solid var(--border-glass) !important;
    border-radius: 20px !important;
    background: var(--bg-card) !important;
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.commission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.commission-card:hover::before {
    transform: scaleX(1);
}

.commission-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-accent) !important;
    box-shadow: var(--shadow-glow), 0 20px 40px rgba(0,0,0,0.3);
}

.commission-card .card-body {
    padding: 2.5rem 2rem !important;
}

.commission-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(41, 121, 255, 0.15), rgba(0, 229, 255, 0.15));
    border: 1px solid rgba(41, 121, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-cyan);
    transition: var(--transition-smooth);
}

.commission-card:hover .commission-icon-wrap {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: var(--shadow-btn);
}

.commission-card .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--text-primary) !important;
}

.commission-card .card-text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.commission-badge {
    display: inline-block;
    margin-top: 1.25rem;
    padding: 8px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(41, 121, 255, 0.12), rgba(0, 229, 255, 0.12));
    border: 1px solid rgba(41, 121, 255, 0.25);
    color: var(--accent-cyan);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}


/* ========================================
   CONTENT SECTIONS (Registration, Sign Up)
   ======================================== */

.content-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.content-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    pointer-events: none;
}

.content-img-wrapper:hover {
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.content-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.content-text-block {
    padding: 1rem 0;
}

.section-label {
    color: var(--accent-cyan);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.75rem;
}

.section-heading {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #2979ff, #00e5ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
    font-weight: 700;
}

@media (max-width: 991px) {
    .content-text-block {
        padding: 1.5rem 0 0;
        text-align: center;
    }
    
    .content-text-block .btn-glow {
        margin: 0 auto;
    }
}


/* ========================================
   FAQ ACCORDION
   ======================================== */

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-accent);
}

.faq-item.active {
    border-color: rgba(41, 121, 255, 0.4);
    box-shadow: 0 4px 24px rgba(41, 121, 255, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    user-select: none;
}

.faq-question:hover {
    background: rgba(255,255,255,0.02);
}

.faq-q-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.faq-q-inner span:last-child {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(41, 121, 255, 0.12), rgba(0, 229, 255, 0.12));
    border: 1px solid rgba(41, 121, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-btn);
}

.faq-arrow {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-left: 12px;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    padding-left: 4.75rem;
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
}

.faq-answer p strong {
    color: var(--accent-cyan);
    font-weight: 600;
}

.faq-answer p + p {
    padding-top: 0.5rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-q-inner span:last-child {
        font-size: 0.88rem;
    }
    
    .faq-answer p {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .faq-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 0.75rem;
    }
}


/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 600px) {
    div[style*="display: flex;"] div[style*="display: flex;"] a {
        width: 100%;
        max-width: 150px;
    }

    .cta-buttons a {
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .section-title h3 {
        font-size: 1rem;
    }
    
    .card.features .card-body {
        padding: 1.5rem;
    }
    
    .commission-card .card-body {
        padding: 1.5rem 1.25rem !important;
    }
}

@media (max-width: 991px) {
    .commission-cards-row > [class*="col-"] {
        margin-bottom: 1rem;
    }
}


/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */

/* Gradient line separator */
.gradient-divider {
    width: 80px;
    height: 3px;
    background: var(--accent-gradient);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* Glowing dot decoration */
.glow-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 12px var(--accent-cyan);
}