/* ============================================================
   CLUB99 AFFILIATE SITE — DARK NEON REVAMP
   Pure CSS (no SCSS)
   ============================================================ */

/* ---- Google Fonts import ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800&family=Hind+Siliguri:wght@400;500;600;700&display=swap');

/* ============================================================
   GLOBAL
   ============================================================ */
html {
    scroll-behavior: smooth;
}

body {
    background: #080814;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

/* Bengali language — swap to Hind Siliguri which has full Bengali glyph support */
:lang(bn),
:lang(bn) * {
    font-family: 'Hind Siliguri', sans-serif !important;
}

section {
    padding: 80px 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    background: rgba(8, 8, 20, 0.97);
    border-bottom: 1px solid rgba(0, 229, 255, 0.12);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9997;
    height: 70px;
    display: flex;
    align-items: center;
}

/* Blur via pseudo-element — keeps header from becoming a containing block
   that traps position:fixed children (e.g. mobile nav panel) */
.header::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
    pointer-events: none;
}

/* Override Bootslander CSS variables for dark neon theme */
:root {
    --nav-color: #ffffff;
    --nav-hover-color: #00e5ff;
    --nav-mobile-background-color: #0a0a1e;
    --nav-dropdown-background-color: #0d0d24;
    --nav-dropdown-color: rgba(255, 255, 255, 0.85);
    --nav-dropdown-hover-color: #00e5ff;
}

/* ---- Nav links ---- */
.navmenu a,
.navmenu a:focus {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: color 0.3s;
}

.navmenu a:hover {
    color: #00e5ff;
}

.navmenu a.active {
    color: #00e5ff;
}

/* ---- Mobile nav overlay + panel ---- */
.mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 18, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9998;
    overflow: hidden;
}

.mobile-nav-active .navmenu > ul {
    display: block;
    position: absolute;
    inset: 60px 16px 20px 16px;
    background: linear-gradient(160deg, #0d0d24, #111130);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 14px;
    padding: 10px 0;
    overflow-y: auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.mobile-nav-active .navmenu a,
.mobile-nav-active .navmenu a:focus {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-active .navmenu a:hover,
.mobile-nav-active .navmenu .active,
.mobile-nav-active .navmenu .active:focus {
    color: #00e5ff;
    background: rgba(0, 229, 255, 0.06);
}

/* Dropdown sub-list inside mobile nav */
.mobile-nav-active .navmenu .dropdown ul {
    background: rgba(0, 229, 255, 0.04);
    border-radius: 8px;
    margin: 4px 12px;
    padding: 4px 0;
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.mobile-nav-active .navmenu .dropdown ul a {
    font-size: 13px;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: none;
}

.mobile-nav-active .navmenu .dropdown ul a:hover {
    color: #00e5ff;
    background: transparent;
}

/* Close (×) toggle icon */
.mobile-nav-active .mobile-nav-toggle {
    color: #00e5ff;
    z-index: 9999;
}

/* ---- Logo image ---- */
.header .logo img {
    max-height: 50px;
}

/* ============================================================
   SCROLL-TOP BUTTON
   ============================================================ */
#scroll-top {
    background: linear-gradient(135deg, #00e5ff, #0088aa);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9998;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

#scroll-top:hover {
    background: linear-gradient(135deg, #00ffea, #00aad4);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: #080814;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 229, 255, 0.2);
    border-top-color: #00e5ff;
    border-radius: 50%;
    animation: preloader-spin 0.8s linear infinite;
}

@keyframes preloader-spin {
    to { transform: rotate(360deg); }
}

/* ============================================================
   BUTTON — NEON PILL
   ============================================================ */
.btn-neon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 30px;
    background: #08080f;
    border: 2px solid #d400a0;
    border-radius: 50px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 0 16px rgba(212, 0, 160, 0.5), 0 0 32px rgba(212, 0, 160, 0.15);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-neon:hover {
    box-shadow: 0 0 28px rgba(212, 0, 160, 0.8), 0 0 50px rgba(212, 0, 160, 0.25);
    transform: translateY(-2px);
    color: #fff;
}

.btn-neon .btn-arrow {
    color: #00e5ff;
}

/* ============================================================
   LOGO TEXT
   ============================================================ */
.logo-text {
    background: linear-gradient(90deg, #00e5ff, #00ffea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
}

/* ============================================================
   SECTION TITLE
   ============================================================ */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.25;
    color: #ffffff;
    margin: 0;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: center;
    min-width: 0;
}

.section-title h2::before,
.section-title h2::after {
    display: none;
}

/* ── Single flex row: dot — dash — h2 — dash — dot ── */
.st-decorated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.st-decorated h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.25;
    color: #ffffff;
    margin: 0;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: center;
    min-width: 0;
    flex-shrink: 1;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00e5ff;
    box-shadow: 0 0 10px #00e5ff;
    display: inline-block;
    flex-shrink: 0;
}

/* Gradient lines flanking the title */
.st-dash-l,
.st-dash-r {
    display: block;
    width: 60px;
    min-width: 40px;
    height: 2px;
    flex-shrink: 0;
}

.st-dash-l {
    background: linear-gradient(90deg, transparent, #00e5ff);
}

.st-dash-r {
    background: linear-gradient(270deg, transparent, #00e5ff);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #080814 0%, #0d0d22 60%, #080814 100%);
    position: relative;
    overflow: hidden;
    padding-top: 70px;
    padding-bottom: 0;
}

.hero h1,
#hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero .subtitle,
#hero .subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    font-family: 'Montserrat', sans-serif;
}

.hero-img img,
#hero .hero-img img {
    max-width: 100%;
    filter: drop-shadow(0 0 30px rgba(120, 60, 200, 0.3));
}

/* Bigger mascot, flush to bottom of hero */
.hero-mascot {
    width: 100%;
    max-width: 520px;
    display: block;
    margin: 0 auto;
    margin-bottom: -4px;
    filter: drop-shadow(0 0 40px rgba(120, 60, 200, 0.4));
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
    background: #0a0a1e;
}

.about-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.about-item .ab-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-item .ab-icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.about-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 5px;
}

.about-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.about-char {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    margin-left: -16px;
}

.about-char img {
    max-height: 440px;
    width: auto;
}

/* ============================================================
   CLUB99 INFO SECTION
   ============================================================ */
#club99info {
    background: #080814;
    border-top: 1px solid rgba(0, 229, 255, 0.07);
    padding: 60px 0;
}

.info-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin: 0;
}

.info-agent {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.info-agent img {
    max-height: 300px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.1));
}

/* ============================================================
   SERVICES / FEATURES SECTION
   ============================================================ */
#features {
    background: #0a0a1e;
}

.service-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(0, 229, 255, 0.04);
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 50px;
    padding: 13px 24px;
    margin-bottom: 14px;
}

.service-pill .sp-toggle {
    width: 38px;
    height: 20px;
    background: rgba(0, 229, 255, 0.15);
    border: 1.5px solid #00e5ff;
    border-radius: 10px;
    flex-shrink: 0;
    position: relative;
}

.service-pill .sp-toggle::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #00e5ff;
    border-radius: 50%;
    top: 3px;
    right: 3px;
    box-shadow: 0 0 6px #00e5ff;
}

.service-pill span {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #ffffff;
}

/* ============================================================
   ADVANTAGES / DETAILS SECTION
   ============================================================ */
#details,
#advantages {
    background: linear-gradient(180deg, #080814, #0d0d22);
}

.adv-left-card {
    background: linear-gradient(145deg, #0e0e22, #131330);
    border-radius: 20px;
    padding: 28px 28px 0;
    overflow: hidden;
    min-height: 420px;
}

.adv-left-card .adv-text-block {
    padding: 28px 24px;
    /* vertical centering handled by align-items-center on the row */
}

/* Mascot column — flex so image sits at the bottom */
.adv-left-card .col-lg-5 {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.adv-badge {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #00e5ff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.adv-left-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 6px;
}

/* Mascot — right-aligned, bigger, flush to bottom */
.adv-left-card .adv-mascot {
    display: block;
    height: 380px;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
    margin-top: 0;
}

/* Commission details below the full-width banner */
.adv-detail-below {
    margin-top: 32px;
    padding: 28px;
    background: rgba(0, 229, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.adv-detail h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 10px;
}

.adv-detail h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #00e5ff;
    margin-bottom: 10px;
}

.adv-detail p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
}

.adv-detail ul {
    list-style: none;
    padding: 0;
}

.adv-detail ul li {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    padding: 5px 0 5px 20px;
    position: relative;
}

.adv-detail ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #00e5ff;
    font-size: 20px;
    line-height: 1.2;
}

.adv-divider {
    height: 1px;
    background: rgba(0, 229, 255, 0.12);
    margin: 28px 0;
}

/* ============================================================
   COMMISSION SECTION
   ============================================================ */
#commission {
    background: #0a0a1e;
}

.comm-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 38px;
    color: #ffffff;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 32px;
}

.comm-vault-center {
    text-align: center;
    margin-bottom: 32px;
}

.comm-vault-center img {
    max-width: 480px;
    width: 100%;
    filter: drop-shadow(0 0 40px rgba(212, 0, 160, 0.2));
}

.comm-bottom {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.comm-sub-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 12px;
}

.comm-body {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
}

.comm-vault img {
    max-width: 100%;
    filter: drop-shadow(0 0 40px rgba(212, 0, 160, 0.2));
}

/* ---- Commission table card wrapper ---- */
.comm-table-card {
    background: linear-gradient(145deg, #0b0b20, #10102a);
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 16px;
    padding: 24px 22px 18px;
    margin-bottom: 28px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4), 0 0 0 0.5px rgba(0,229,255,0.06) inset;
}

/* Label row above each table */
.comm-table-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.comm-table-label .tl-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 3px 11px;
    border-radius: 20px;
    border: 1px solid;
}

.comm-table-label .tl-badge.badge-others {
    color: #ff4d6d;
    border-color: rgba(255, 77, 109, 0.4);
    background: rgba(255, 77, 109, 0.08);
}

.comm-table-label .tl-badge.badge-c99 {
    color: #00e5ff;
    border-color: rgba(0, 229, 255, 0.4);
    background: rgba(0, 229, 255, 0.08);
}

.comm-table-label .tl-total {
    font-size: 14px;
    font-weight: 800;
}

.comm-table-label .tl-total.tl-neg { color: #ff4d6d; }
.comm-table-label .tl-total.tl-pos { color: #00e5ff; }

/* ---- Commission table styling for dark theme ---- */
#commission .table,
#commission table {
    color: rgba(255, 255, 255, 0.82);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 0;
}

#commission .table thead tr,
#commission table thead tr {
    background: rgba(0, 229, 255, 0.07);
}

#commission .table thead td,
#commission table thead td {
    color: #00e5ff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 11px 12px;
    border-bottom: 1px solid rgba(0, 229, 255, 0.3);
    border-top: none;
    white-space: nowrap;
}

#commission .table tbody td,
#commission table tbody td {
    padding: 9px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

/* Last body row (Total) — no bottom border */
#commission .table tbody tr:last-child td,
#commission table tbody tr:last-child td {
    border-bottom: none;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 229, 255, 0.05);
}

/* Strip Bootstrap's default --bs-table-bg so our card background shows through */
#commission .table,
#commission .table > :not(caption) > * > * {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: transparent;
    --bs-table-hover-bg: transparent;
    background-color: transparent;
}

/* Hover rows */
#commission .table tbody tr:not(:last-child):hover td,
#commission table tbody tr:not(:last-child):hover td {
    background: rgba(0, 229, 255, 0.04);
}

/* Positive / Negative values */
#commission .positive, .positive { color: #00e5a0; font-weight: 700; }
#commission .negative, .negative { color: #ff4d6d; font-weight: 700; }

/* ============================================================
   PLAYER FREE SECTION
   ============================================================ */
#playerfree {
    background: #080814;
}

.pf-block h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 12px;
}

.pf-block p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.pf-char img {
    max-height: 480px;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.15));
}

/* ============================================================
   GALLERY / PROMOTIONS SECTION
   ============================================================ */
#gallery {
    background: #0a0a1e;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.1);
    transition: transform 0.3s;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 300px;
    height: 300px;
    display: block;
    object-fit: cover;
}

/* ============================================================
   COMPARISON / PRICING SECTION
   ============================================================ */
#pricing {
    background: linear-gradient(180deg, #080814, #0d0d22);
}

.compare-team {
    text-align: center;
    margin-bottom: 32px;
}

.compare-team img {
    max-height: 200px;
}

/* Full-width team image with faded left/right edges */
.compare-team-full {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 229, 255, 0.15);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.06);
}

.compare-team-full img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    object-position: center top;
    display: block;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 18%,
        black 82%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 18%,
        black 82%,
        transparent 100%
    );
}

.compare-card {
    background: #0e0e22;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.compare-card.featured {
    border: 2px solid #00e5ff;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.12);
}

.compare-card .popular {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #00e5ff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.compare-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 14px;
}

.compare-card .comm-badge {
    display: inline-block;
    padding: 6px 22px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid #00e5ff;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #00e5ff;
    margin-bottom: 24px;
}

.compare-card ul {
    list-style: none;
    padding: 0;
    flex: 1;
}

.compare-card ul li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.compare-card ul li:last-child {
    border-bottom: none;
}

.feat-check {
    color: #00cc66;
    font-size: 15px;
    font-weight: 700;
}

.feat-cross {
    color: #ff4444;
    font-size: 15px;
    font-weight: 700;
}

.compare-card .cta-wrap {
    margin-top: 24px;
    text-align: center;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
#faq {
    background: #0a0a1e;
    border-top: 1px solid rgba(0, 229, 255, 0.07);
}

.faq-content h3,
#faq .content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 26px;
    color: #ffffff;
}

.faq-content > p,
#faq .content > p {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.65);
}

.faq-container .faq-item {
    background: #0e0e22;
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 10px;
    padding: 18px 22px;
    margin-bottom: 12px;
    position: relative;
    cursor: pointer;
}

.faq-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    margin: 0 30px 0 36px;
}

.faq-item .faq-icon {
    color: #00e5ff;
    font-size: 20px;
    margin-right: 10px;
    position: absolute;
    left: 18px;
    top: 18px;
}

.faq-item .faq-toggle {
    position: absolute;
    right: 18px;
    top: 18px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s, color 0.3s;
}

.faq-item.faq-active .faq-toggle {
    transform: rotate(90deg);
    color: #00e5ff;
}

.faq-item .faq-content {
    display: none;
    padding-left: 36px;
}

.faq-item.faq-active .faq-content {
    display: block;
}

.faq-item .faq-content p {
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
}

.faq-item .faq-content a {
    color: #00e5ff;
    font-weight: bold;
}

.faq-img img {
    border-radius: 16px;
    opacity: 0.7;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
    background: #080814;
}

.contact-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #ffffff;
}

.contact-info p {
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info .info-item i {
    color: #00e5ff;
    font-size: 22px;
    margin-top: 2px;
}

.contact-info .info-item h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-form input,
.contact-form textarea,
.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    padding: 12px 16px;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form .form-control:focus {
    border-color: #00e5ff;
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.contact-form textarea,
.contact-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

/* php-email-form compatibility */
.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
}

.php-email-form .sent-message {
    color: #00e5ff;
}

.php-email-form .error-message {
    color: #ff4444;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #050510;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    color: rgba(255, 255, 255, 0.65);
}

.footer h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 14px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #00e5ff;
}

.footer .social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: #00e5ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: all 0.3s;
}

.footer .social-links a:hover {
    background: rgba(0, 229, 255, 0.2);
}

.footer .copyright {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer .sitename {
    color: #00e5ff;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-cyan {
    color: #00e5ff;
}

.negative {
    color: #fb3a3a;
    font-weight: bold;
}

.positive {
    color: #38e338;
    font-weight: bold;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.3), transparent);
    margin: 16px 0;
}

/* min-vh-80 helper */
.min-vh-80 {
    min-height: 80vh;
}

/* ============================================================
   DARK TABLE OVERRIDES (used in commission detail tables)
   ============================================================ */
.table-borderless td,
.table-borderless th {
    border: none;
}

table.table {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

table.table thead {
    background: #023a82;
    color: #ffffff;
}

table.table thead td,
table.table thead th {
    color: #ffffff;
    border: none;
}

table.table tbody tr td {
    border-color: rgba(255, 255, 255, 0.06);
}

table.table-hover tbody tr:hover {
    background: rgba(0, 229, 255, 0.06);
    color: #ffffff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    #hero,
    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 60px;
    }

    #hero h1,
    .hero h1 {
        font-size: 28px;
    }

    .comm-heading {
        font-size: 28px;
    }

    .adv-left-card h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 20px;
        white-space: normal;
        word-break: break-word;
    }

    /* On mobile, stack decoration vertically so h2 gets its own full-width line */
    .st-decorated {
        flex-direction: column;
        gap: 6px;
    }

    .st-decorated h2 {
        font-size: 20px;
        white-space: normal;
        word-break: break-word;
        width: 100%;
        flex-shrink: unset;
    }

    /* Hide dashes on mobile — dots appear above/below the title */
    .st-dash-l,
    .st-dash-r {
        display: none;
    }

    /* Keep icons uniform on mobile */
    .about-item .ab-icon,
    .about-item .ab-icon img {
        width: 44px;
        height: 44px;
    }

    .compare-card {
        margin-bottom: 20px;
    }

    .pf-char {
        display: none;
    }

    .section-title h2::before,
    .section-title h2::after {
        width: 40px;
    }

    .about-char {
        margin-left: 0;
    }

    .hero-mascot {
        max-width: 360px;
    }
}

/* ============================================================
   CONTAINER MAX-WIDTH — constrain to ~1000px
   ============================================================ */
.container {
    max-width: 1000px !important;
}
