/* ========================================
   LANDING PAGE STYLES
   Extracted from home/landing.blade.php
   ======================================== */

html,
body {
    background-color: #0b0d10;
    color: #d1d5db;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
}

/* NAVBAR */
.landing-navbar {
    background: rgba(11, 13, 16, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 32px;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* TOP LANGUAGE BAR */
.top-lang-bar {
    background: #0b0d10;
    border-bottom: 1px solid rgba(255, 193, 7, 0.15);
    height: 32px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
}

.top-lang-bar .dropdown-toggle {
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.top-lang-bar .dropdown-toggle:hover {
    color: #ffc107;
    text-decoration: none;
}

.top-lang-bar .dropdown-menu {
    background: rgba(11, 13, 16, 0.95);
    border: 1px solid rgba(255, 193, 7, 0.2);
    min-width: 110px;
    font-size: 0.85rem;
    margin-top: 6px;
}

.top-lang-bar .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 15px;
    display: flex;
    align-items: center;
}

.top-lang-bar .dropdown-item:hover {
    background: rgba(255, 193, 7, 0.1);
    color: #fff;
}

.landing-navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo:hover {
    color: #ffc107;
    text-decoration: none;
}

.main-menu {
    max-width: 650px;
}

.main-menu .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    padding: 0.5rem 0.8rem !important;
    transition: all 0.3s;
    white-space: nowrap;
}

.main-menu .nav-link:hover,
.main-menu .nav-link.active-nav {
    color: #ffc107 !important;
}

.nav-actions .btn {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    padding: 8px 24px;
    margin-left: 10px;
}

/* SLIDING MENU CONTAINER */
.sliding-menu-wrapper {
    position: relative;
    flex: 1;
    overflow-x: clip;
    overflow-y: visible;
    margin: 0 15px;
    display: flex;
    align-items: center;
}

.sliding-menu-track {
    display: flex;
    align-items: center;
    transition: transform 0.15s ease-out;
    will-change: transform;
}

.sliding-menu-track .navbar-nav {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}

/* Edge glow indicators */
.sliding-menu-wrapper::before,
.sliding-menu-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sliding-menu-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, rgba(11, 13, 16, 0.95) 0%, transparent 100%);
}

.sliding-menu-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, rgba(11, 13, 16, 0.95) 0%, transparent 100%);
}

.sliding-menu-wrapper.can-scroll-left::before {
    opacity: 1;
}

.sliding-menu-wrapper.can-scroll-right::after {
    opacity: 1;
}

/* Edge arrow indicators */
.slide-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    color: #ffc107;
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.slide-indicator-left {
    left: 8px;
}

.slide-indicator-right {
    right: 8px;
}

.sliding-menu-wrapper.can-scroll-left .slide-indicator-left,
.sliding-menu-wrapper.can-scroll-right .slide-indicator-right {
    opacity: 0.7;
}

.sliding-menu-wrapper:hover.can-scroll-left .slide-indicator-left {
    opacity: 1;
    animation: pulseLeft 1.2s ease-in-out infinite;
}

.sliding-menu-wrapper:hover.can-scroll-right .slide-indicator-right {
    opacity: 1;
    animation: pulseRight 1.2s ease-in-out infinite;
}

@keyframes pulseLeft {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(-4px);
    }
}

@keyframes pulseRight {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(4px);
    }
}

/* HERO */
.hero-section {
    min-height: 100vh;
    background-color: #000;
    position: relative;
    padding-top: 140px;
    padding-bottom: 60px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg,
            rgba(11, 13, 16, 0.1) 0%,
            rgba(11, 13, 16, 0.12) 45%,
            rgba(11, 13, 16, 0.55) 72%,
            rgba(11, 13, 16, 0.85) 88%,
            rgba(11, 13, 16, 0.70) 100%),
        radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
}

/* TYPOGRAPHY & UTILS */
.font-weight-900 {
    font-weight: 900;
}

.text-glow {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.divider {
    width: 60px;
    height: 3px;
    background: #ffc107;
    border-radius: 2px;
}

.z-index-1 {
    z-index: 1;
}

.max-w-700 {
    max-width: 700px;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .py-6 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-section {
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .lead {
        font-size: 1rem !important;
    }
}

/* COUNTDOWN */
.countdown-wrapper {
    background: rgba(30, 35, 45, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 25px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 10px;
    margin: 0 5px;
    /* Fallback for flex gap */
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.countdown-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* PRIZE POOL MINI PANEL (inside countdown-wrapper) */
.prize-pool-mini {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.prize-pool-mini .pp-label {
    text-align: center;
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.prize-pool-mini .pp-amount {
    text-align: center;
    color: #ffc107;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
}

.prize-pool-mini .pp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.prize-pool-mini .pp-box {
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.prize-pool-mini .pp-box.pp-cash {
    background: linear-gradient(180deg, rgba(15, 85, 54, 0.40), rgba(10, 41, 29, 0.25));
    border-color: rgba(67, 225, 140, 0.22);
}

.prize-pool-mini .pp-box.pp-balance {
    background: linear-gradient(180deg, rgba(107, 79, 18, 0.32), rgba(56, 40, 9, 0.20));
    border-color: rgba(255, 193, 7, 0.22);
}

.prize-pool-mini .pp-box-name {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.prize-pool-mini .pp-box-percent {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.pp-cash .pp-box-percent {
    color: #43e18c;
}

.pp-balance .pp-box-percent {
    color: #ffc107;
}

@media screen and (max-width: 576px) {
    .countdown-item {
        min-width: 60px;
        padding: 10px 5px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .prize-pool-mini .pp-amount {
        font-size: 26px;
    }

    .prize-pool-mini .pp-box-percent {
        font-size: 22px;
    }

    .prize-pool-mini {
        margin-top: 12px;
        padding-top: 12px;
    }
}

/* BUTTONS */
.btn-premium {
    background: linear-gradient(90deg, #ff9800, #ffc107);
    color: #000 !important;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
    background: linear-gradient(90deg, #ffc107, #ff9800);
    text-decoration: none;
}

.btn-outline-premium {
    background: transparent;
    color: #ffc107 !important;
    border: 2px solid #ffc107;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-outline-premium:hover {
    background: rgba(255, 193, 7, 0.1);
    color: #fff !important;
    text-decoration: none;
}

/* FEATURE CARDS */
.feature-card {
    background: rgba(30, 35, 45, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 193, 7, 0.05);
    border-color: rgba(255, 193, 7, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* GENESIS ŞİMDİ BAŞLA BUTTON */
.btn-genesis-start {
    position: relative;
    display: inline-block;
    padding: 16px 45px;
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffeba1;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    background: linear-gradient(180deg, #8a1c00 0%, #3d0000 100%);
    border: 2px solid #b87b28;
    border-radius: 4px;
    box-shadow:
        inset 0 0 15px rgba(0, 0, 0, 0.9),
        inset 0 0 20px rgba(255, 60, 0, 0.4),
        0 0 20px rgba(255, 75, 0, 0.5);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 180, 0, 0.6);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.btn-genesis-start::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border: 1px solid rgba(255, 200, 100, 0.4);
    border-radius: 2px;
    pointer-events: none;
}

.btn-genesis-start::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-genesis-start:hover {
    color: #ffffff;
    background: linear-gradient(180deg, #b02400 0%, #520000 100%);
    box-shadow:
        inset 0 0 20px rgba(0, 0, 0, 0.9),
        inset 0 0 25px rgba(255, 100, 0, 0.7),
        0 0 40px rgba(255, 100, 0, 0.8),
        0 0 80px rgba(255, 50, 0, 0.5);
    border-color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 220, 0, 0.9);
    transform: scale(1.03);
    text-decoration: none;
}

.btn-genesis-start:hover::after {
    left: 200%;
}

/* TIMELINE (ROADMAP) */
.genesis-roadmap-v2 {
    position: relative;
    overflow: hidden;
}

.roadmap-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: .18;
}

.glow-a {
    width: 380px;
    height: 380px;
    background: rgba(255, 193, 7, 0.16);
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.glow-b {
    width: 300px;
    height: 300px;
    background: rgba(0, 210, 170, 0.08);
    bottom: 80px;
    left: 15%;
}

.roadmap-wrap {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
}

.reward-panel {
    max-width: 860px;
    margin: 0 auto 34px;
    padding: 28px;
    border-radius: 24px;
    background: rgba(30, 35, 45, 0.6);
    border: 1px solid rgba(255, 193, 7, 0.20);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32), 0 0 30px rgba(255, 193, 7, 0.04);
}

.reward-top-label {
    text-align: center;
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.reward-top-amount {
    text-align: center;
    color: #ffc107;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
}

.reward-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.split-box {
    border-radius: 18px;
    padding: 22px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.split-box.cash {
    background: linear-gradient(180deg, rgba(15, 85, 54, 0.40), rgba(10, 41, 29, 0.25));
    border-color: rgba(67, 225, 140, 0.22);
}

.split-box.balance {
    background: linear-gradient(180deg, rgba(107, 79, 18, 0.32), rgba(56, 40, 9, 0.20));
    border-color: rgba(255, 193, 7, 0.22);
}

.split-name {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.split-percent {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.cash .split-percent {
    color: #43e18c;
}

.balance .split-percent {
    color: #ffc107;
}

.reward-details {
    border-radius: 18px;
    padding: 18px;
    background: rgba(30, 35, 45, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.detail-title {
    color: #ffc107;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 12px;
}

.detail-row,
.detail-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.detail-row span,
.detail-total span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
}

.detail-row strong,
.detail-total strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.detail-total {
    border-bottom: 0;
    padding-bottom: 4px;
}

.detail-total strong {
    color: #43e18c;
}

.academy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.academy-card {
    padding: 26px 24px 22px;
    border-radius: 22px;
    background: rgba(30, 35, 45, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
    transition: .25s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.academy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.30), 0 0 28px rgba(255, 193, 7, 0.05);
}

.academy-card.official {
    border-color: rgba(255, 193, 7, 0.22);
}

.academy-card.academy-one {
    border-color: rgba(67, 225, 140, 0.16);
}

.academy-card.academy-two {
    border-color: rgba(57, 215, 255, 0.16);
}

.academy-badge {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.10);
    border: 1px solid rgba(255, 193, 7, 0.16);
    color: #ffc107;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: 14px;
}

.academy-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    font-family: 'Outfit', sans-serif;
}

.academy-date {
    color: #ffc107;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.academy-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.academy-prize-box {
    padding: 16px;
    border-radius: 16px;
    background: rgba(11, 13, 16, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}

.academy-prize-total {
    color: #43e18c;
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.academy-prize-sub {
    color: rgba(255, 255, 255, 0.60);
    font-size: 13px;
    font-weight: 700;
}

.academy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 12px;
}

.academy-list li {
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.7;
}

.academy-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffc107;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.35);
}

.prize-list li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-left: 20px;
}

.prize-list li strong {
    color: #43e18c;
    font-weight: 800;
    white-space: nowrap;
}

.academy-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 700;
}

.footer-chip.gold {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.08);
    border-color: rgba(255, 193, 7, 0.16);
}

.footer-chip.green {
    color: #43e18c;
    background: rgba(67, 225, 140, 0.08);
    border-color: rgba(67, 225, 140, 0.16);
}

.footer-chip.cyan {
    color: #39d7ff;
    background: rgba(57, 215, 255, 0.08);
    border-color: rgba(57, 215, 255, 0.16);
}

@media screen and (max-width: 1200px) {
    .academy-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .reward-top-amount {
        font-size: 38px;
    }

    .reward-split {
        grid-template-columns: 1fr;
    }

    .academy-card h3 {
        font-size: 20px;
    }

    .prize-list li {
        flex-direction: column;
        gap: 4px;
    }

    .nav-actions {
        display: none !important;
    }

    .why-card {
        margin-bottom: 1rem;
    }

    .feature-card {
        margin-bottom: 1rem;
    }

    /* Flex gap polyfill for older browsers */
    .gap-3 {
        gap: 1rem;
    }

    .gap-3>* {
        margin: 0.5rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }
}

/* WHY CARD */
.why-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.why-card .icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffc107;
    transition: transform 0.3s;
}

.why-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* FOOTER */
.landing-footer {
    background: #050608;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    color: #6b7280;
    text-align: center;
}

@media (max-width: 991.98px) {
    .landing-navbar .container {
        position: relative;
        padding-top: 10px;
    }

    .nav-logo {
        position: absolute;
        left: 50%;
        top: 0px;
        transform: translateX(-50%);
        margin: 0;
        z-index: 10;
        transition: top 0.3s ease;
    }

    .navbar-toggler {
        margin-left: auto;
        z-index: 10;
        margin-right: 10px;
    }

    #navbarResponsive {
        background: #0b0d10;
        border-radius: 8px;
        padding: 10px;
    }

    #hero-video {
        object-fit: contain !important;
        top: 100px !important;
    }

    .countdown-item {
        margin-left: 0px !important;
    }

    #countdown {
        gap: 2px !important;
    }

    .countdown-wrapper {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        margin-bottom: 10px !important;
    }

    #hero-text {
        margin-bottom: 0px !important;
    }
}

/* ========================================
   RANK PAGE STYLES
   ======================================== */

/* Page wrapper for rank pages */
.rank-page-wrapper {
    padding-top: 160px;
    padding-bottom: 60px;
    min-height: 100vh;
}

/* RANK SIDEBAR */
.rank-sidebar {
    position: sticky;
    top: 160px;
}

.rank-sidebar-nav {
    /*background: rgba(30, 35, 45, 0.6);*/
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 8px;
    overflow: hidden;
}

.rank-sidebar-nav .sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    margin-bottom: 4px;
}

.rank-sidebar-nav .sidebar-link:last-child {
    margin-bottom: 0;
}

.rank-sidebar-nav .sidebar-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    transition: all 0.25s ease;
}

.rank-sidebar-nav .sidebar-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
    text-decoration: none;
}

.rank-sidebar-nav .sidebar-link.active {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.08);
    border-color: rgba(255, 193, 7, 0.18);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.06);
}

.rank-sidebar-nav .sidebar-link.active i {
    color: #ffc107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

/* RANK CONTENT AREA */
.rank-content-area {
    min-height: 400px;
}

/* Page title header */
.rank-page-header {
    margin-bottom: 28px;
}

.rank-page-header h2 {
    color: #fff;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.rank-page-header .rank-subtitle {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    font-weight: 500;
}

/* NATION FILTER TABS */
.rank-nation-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.rank-nation-tabs .nation-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(30, 35, 45, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.rank-nation-tabs .nation-tab img {
    width: 18px;
    height: auto;
    opacity: 0.6;
    transition: opacity 0.25s ease;
}

.rank-nation-tabs .nation-tab:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.rank-nation-tabs .nation-tab:hover img {
    opacity: 1;
}

.rank-nation-tabs .nation-tab.active {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.25);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.08);
}

.rank-nation-tabs .nation-tab.active img {
    opacity: 1;
}

/* RANK TABLE */
.rank-table-wrapper {
    /*background: rgba(30, 35, 45, 0.5);*/
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
}

.rank-table {
    width: 100%;
    border-collapse: collapse;
}

.rank-table thead th {
    background: rgba(0, 0, 0, 0.3);
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    white-space: nowrap;
}

.rank-table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.rank-table tbody tr:last-child {
    border-bottom: none;
}

.rank-table tbody tr:hover {
    background: rgba(255, 193, 7, 0.03);
}

.rank-table tbody td {
    padding: 13px 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    vertical-align: middle;
}

/* Rank number styling */
.rank-table .rank-pos {
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    width: 55px;
    text-align: center;
}

/* Top 3 special styling */
.rank-table tbody tr.rank-gold {
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.06) 0%, transparent 60%);
}

.rank-table tbody tr.rank-silver {
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.04) 0%, transparent 60%);
}

.rank-table tbody tr.rank-bronze {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.04) 0%, transparent 60%);
}

.rank-medal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
}

.rank-medal-gold {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.15));
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.15);
}

.rank-medal-silver {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.15), rgba(160, 160, 160, 0.1));
    color: #c0c0c0;
    border: 1px solid rgba(192, 192, 192, 0.25);
}

.rank-medal-bronze {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.15), rgba(180, 100, 30, 0.1));
    color: #cd7f32;
    border: 1px solid rgba(205, 127, 50, 0.25);
}

/* Nation icon in table */
.rank-table .nation-icon {
    width: 22px;
    height: auto;
}

/* Class icon in table */
.rank-table .class-icon {
    width: 24px;
    height: auto;
}

/* Character name */
.rank-table .char-name {
    font-weight: 700;
    color: #fff;
}

/* Clan name link */
.rank-table .clan-link {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.rank-table .clan-link:hover {
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
}

/* NP/Points column */
.rank-table .np-value {
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: #ffc107;
    font-size: 0.95rem;
}

/* Level column */
.rank-table .level-value {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

/* Member count */
.rank-table .member-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.rank-table .member-count i {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

/* CLAN MEMBERS PAGE SPECIFIC */
.clan-info-header {
    background: rgba(30, 35, 45, 0.6);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 193, 7, 0.15);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.clan-info-header .clan-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.clan-info-header .clan-title img {
    width: 28px;
}

.clan-info-header .clan-title h3 {
    color: #fff;
    font-weight: 800;
    margin: 0;
    font-size: 1.4rem;
}

.clan-info-stats {
    display: flex;
    gap: 24px;
}

.clan-info-stat {
    text-align: center;
}

.clan-info-stat .stat-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.clan-info-stat .stat-value {
    color: #ffc107;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

/* PAGINATION STYLES (MATCHING MASTERNEW & RANK) */
.pagination {
    margin-top: 10px;
    margin-bottom: 0;
    gap: 8px;
}

.page-item .page-link {
    background: rgba(30, 35, 45, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border-radius: 8px !important;
    padding: 8px 16px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: all 0.25s ease;
}

.page-item .page-link:hover {
    background: rgba(255, 193, 7, 0.1) !important;
    border-color: rgba(255, 193, 7, 0.3) !important;
    color: #ffc107 !important;
}

.page-item.active .page-link {
    background: rgba(255, 193, 7, 0.15) !important;
    border-color: #ffc107 !important;
    color: #ffc107 !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.1);
}

.page-item.disabled .page-link {
    background: rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.04) !important;
    color: rgba(255, 255, 255, 0.3) !important;
}

.page-link:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25) !important;
}

/* RESPONSIVE */
@media screen and (max-width: 991.98px) {
    .rank-page-wrapper {
        padding-top: 130px;
    }

    .rank-sidebar {
        position: static;
        margin-bottom: 24px;
    }

    .rank-sidebar-nav {
        display: flex;
        gap: 4px;
        padding: 6px;
    }

    .rank-sidebar-nav .sidebar-link {
        flex: 1;
        justify-content: center;
        text-align: center;
        margin-bottom: 0;
        padding: 12px 14px;
        font-size: 0.85rem;
    }

    .rank-page-header h2 {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 767.98px) {
    .rank-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .rank-table {
        min-width: 600px;
    }

    .rank-nation-tabs .nation-tab {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .clan-info-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .clan-info-stats {
        width: 100%;
        justify-content: space-around;
    }
}

/* Premium Topbar Switchers */
.top-lang-bar .btn-switcher {
    background: transparent;
    border: none;
    color: #e2c079;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    transition: all 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
}

.top-lang-bar .btn-switcher:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(226, 192, 121, 0.5);
}

.top-lang-bar .premium-dropdown-menu {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(226, 192, 121, 0.2);
    backdrop-filter: blur(10px);
    min-width: 140px;
    padding: 5px 0;
    margin-top: 5px;
}

.top-lang-bar .premium-dropdown-menu .dropdown-item {
    color: #b0b0b0;
    font-size: 0.85rem;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.top-lang-bar .premium-dropdown-menu .dropdown-item:hover,
.top-lang-bar .premium-dropdown-menu .dropdown-item:focus {
    background: rgba(226, 192, 121, 0.1);
    color: #e2c079;
}

.top-lang-bar .top-lang-bar-container {
    padding: 5px 0;
}

.top-lang-bar .switcher-icon {
    color: #e2c079;
    font-size: 0.9rem;
}

.top-lang-bar .text-gold {
    color: #e2c079;
}

.blurred {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}