:root {
    --bg-main: #040711;
    --bg-card: #0b1020;
    --bg-soft: #111827;
    --primary: #1577ff;
    --primary-soft: rgba(21, 119, 255, 0.18);
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --border: rgba(255, 255, 255, 0.08);
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
}

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

body {
    background:
        radial-gradient(circle at top right, rgba(21,119,255,.18), transparent 35%),
        radial-gradient(circle at bottom left, rgba(21,119,255,.10), transparent 30%),
        var(--bg-main);
    color: var(--text-main);
    font-family: "Segoe UI", Arial, sans-serif;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

.dashboard-layout {
    min-height: 100vh;
}

/* Main */
.main-area {
    width: 100%;
    margin-left: 0;
    padding: 26px;
}

/* PC navbar */
.topbar {
    min-height: 78px;
    border: 1px solid var(--border);
    background: rgba(11,16,32,.78);
    backdrop-filter: blur(18px);
    border-radius: 24px;
    padding: 18px 22px;
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.topbar-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(21,119,255,.75));
}

.topbar-brand h5 {
    margin: 0;
    font-weight: 900;
}

.topbar-brand p {
    margin: 2px 0 0;
    color: var(--text-muted);
    font-size: 13px;
}

.topbar-brand:hover {
    color: white;
}

.desktop-navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-navbar a {
    color: #d1d5db;
    font-weight: 700;
    transition: .25s;
}

.desktop-navbar a:hover {
    color: #60a5fa;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-btn {
    display: none;
    border: none;
    background: var(--primary);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 20px;
}

.btn-primary {
    background: linear-gradient(135deg, #1577ff, #0057d9);
    border: none;
    box-shadow: 0 10px 25px rgba(21,119,255,.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2d8cff, #0066ff);
}

.btn-outline-light {
    border-color: rgba(255,255,255,.22);
}

/* Sidebar hidden on PC */
.sidebar {
    display: none;
}

.sidebar-overlay {
    display: none;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
    margin-bottom: 36px;
}

.brand img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(21,119,255,.8));
}

.brand h4 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
}

.brand span {
    color: #60a5fa;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 700;
}

.menu-title {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

.side-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu li {
    margin-bottom: 10px;
}

.side-menu a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 16px;
    border-radius: 16px;
    color: #d1d5db;
    font-weight: 600;
    transition: .25s;
}

.side-menu a i {
    width: 22px;
    color: #60a5fa;
}

.side-menu a:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.side-menu a:hover i {
    color: white;
}

.sidebar-card {
    margin-top: 40px;
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(21,119,255,.25), rgba(255,255,255,.04));
    border: 1px solid var(--border);
}

.sidebar-card h6 {
    font-weight: 800;
    margin-bottom: 8px;
}

.sidebar-card p {
    font-size: 14px;
    color: var(--text-muted);
}

.sidebar-card a {
    display: inline-block;
    margin-top: 6px;
    color: white;
    font-weight: 700;
}

/* Hero */
.hero {
    min-height: 520px;
    padding: 58px;
    border-radius: 34px;
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at right, rgba(21,119,255,.32), transparent 33%),
        linear-gradient(135deg, rgba(15,23,42,.96), rgba(4,7,17,.96));
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(21,119,255,.08);
    left: -120px;
    bottom: -140px;
}

.hero-left {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.badge-soft {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: #7db7ff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 18px;
    border: 1px solid rgba(21,119,255,.2);
}

.hero h1 {
    font-size: 62px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

.hero p {
    color: #cbd5e1;
    font-size: 18px;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-right {
    position: relative;
    z-index: 2;
}

.logo-glow {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle, rgba(21,119,255,.34), transparent 68%);
    animation: pulseGlow 3s infinite ease-in-out;
}

.logo-glow img {
    width: 210px;
    filter: drop-shadow(0 0 40px rgba(21,119,255,.95));
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.04);
        opacity: .9;
    }
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.stat-box {
    padding: 26px;
    border-radius: 24px;
    background: rgba(11,16,32,.82);
    border: 1px solid var(--border);
    transition: .25s;
}

.stat-box:hover {
    transform: translateY(-6px);
    border-color: rgba(21,119,255,.4);
}

.stat-box i {
    font-size: 28px;
    color: #60a5fa;
    margin-bottom: 16px;
}

.stat-box h3 {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 6px;
}

.stat-box p {
    color: var(--text-muted);
    margin: 0;
}

/* Section */
.section-block {
    margin-top: 32px;
    padding: 30px;
    border-radius: 28px;
    background: rgba(11,16,32,.7);
    border: 1px solid var(--border);
}

.section-heading {
    margin-bottom: 24px;
}

.section-heading h2 {
    font-size: 32px;
    font-weight: 900;
}

.section-heading p {
    color: var(--text-muted);
}

.feature-card {
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255,255,255,.035);
    border: 1px solid var(--border);
    transition: .25s;
}

.feature-card:hover {
    background: rgba(21,119,255,.1);
    transform: translateY(-6px);
}

.feature-card span {
    color: #60a5fa;
    font-weight: 900;
    font-size: 14px;
}

.feature-card h4 {
    margin-top: 14px;
    font-weight: 800;
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Page Header */
.page-header {
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(21,119,255,.18), rgba(255,255,255,.03));
    border: 1px solid var(--border);
    margin-bottom: 28px;
}

.page-header h1 {
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 8px;
}

.page-header p {
    color: var(--text-muted);
    margin: 0;
}

/* Events */
.event-card {
    height: 100%;
    padding: 28px;
    border-radius: 28px;
    background: rgba(11,16,32,.82);
    border: 1px solid var(--border);
    position: relative;
    transition: .25s;
}

.event-card:hover {
    transform: translateY(-7px);
    border-color: rgba(21,119,255,.45);
}

.event-status {
    display: inline-block;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(245,158,11,.15);
    color: #fbbf24;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 18px;
}

.event-status.live {
    background: rgba(255,47,61,.15);
    color: red;
}

.event-status.completed {
    background: rgba(34,197,94,.16);
    color: #4ade80;
}

.event-card h3 {
    font-weight: 900;
    margin-bottom: 12px;
}

.event-date {
    color: #d1d5db;
}

.event-date i {
    color: #60a5fa;
    margin-right: 6px;
}

.event-text {
    color: var(--text-muted);
    line-height: 1.6;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
}

.event-footer span {
    color: #60a5fa;
    font-weight: 800;
}

/* Event Detail */
.event-detail-box {
    padding: 28px;
    border-radius: 28px;
    background: rgba(11,16,32,.82);
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-detail-box h3 {
    font-weight: 900;
}

.event-detail-box p {
    color: var(--text-muted);
    margin-bottom: 6px;
}

.event-detail-box i {
    color: #60a5fa;
    width: 22px;
}

.fight-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,.035);
    border: 1px solid var(--border);
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.fighter h4 {
    font-weight: 900;
    margin-bottom: 4px;
}

.fighter span {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.vs {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    display: grid;
    place-items: center;
    font-weight: 900;
}

/* Leaderboard */
.leaderboard-card {
    padding: 24px;
    border-radius: 28px;
    background: rgba(11,16,32,.82);
    border: 1px solid var(--border);
}

.table {
    margin-bottom: 0;
    --bs-table-bg: transparent;
    --bs-table-border-color: rgba(255,255,255,.08);
}

.table thead th {
    color: #60a5fa;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.table tbody td {
    padding: 18px 10px;
}

/* Profile */
.profile-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
}

.profile-card,
.profile-stats {
    padding: 30px;
    border-radius: 28px;
    background: rgba(11,16,32,.82);
    border: 1px solid var(--border);
}

.profile-card {
    text-align: center;
}

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--primary-soft);
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border: 1px solid rgba(21,119,255,.35);
}

.avatar i {
    font-size: 42px;
    color: #60a5fa;
}

.profile-card h3 {
    font-weight: 900;
}

.profile-card p {
    color: var(--text-muted);
}

.rank-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--primary);
    font-weight: 800;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    text-align: center;
}

.profile-stats h3 {
    font-size: 42px;
    font-weight: 900;
    color: #60a5fa;
}

.profile-stats p {
    color: var(--text-muted);
    margin: 0;
}

.pick-list {
    display: grid;
    gap: 12px;
}

.pick-item {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,.035);
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Auth */
.auth-wrapper {
    min-height: calc(100vh - 140px);
    display: grid;
    place-items: center;
}

.auth-card {
    width: 100%;
    max-width: 460px;
    padding: 36px;
    border-radius: 30px;
    background: rgba(11,16,32,.88);
    border: 1px solid var(--border);
}

.auth-card h2 {
    font-weight: 900;
    margin-bottom: 8px;
}

.auth-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.auth-card label {
    font-weight: 700;
    margin-bottom: 8px;
}

.form-control {
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
    color: white;
    border-radius: 14px;
    padding: 13px 15px;
}

.form-control:focus {
    background: rgba(255,255,255,.08);
    color: white;
    border-color: var(--primary);
    box-shadow: none;
}

.form-control::placeholder {
    color: #6b7280;
}

.auth-link {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
}

.auth-link a {
    color: #60a5fa;
    font-weight: 800;
}

/* Responsive */
@media (max-width: 1100px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .main-area {
        padding: 18px;
    }

    .desktop-navbar {
        display: none;
    }

    .topbar {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 14px;
    }

    .topbar-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .sidebar {
        display: block;
        position: fixed;
        right: -290px;
        left: auto;
        top: 0;
        width: 280px;
        height: 100vh;
        padding: 24px;
        background: rgba(8,13,30,.96);
        border-left: 1px solid var(--border);
        backdrop-filter: blur(18px);
        transition: all .3s ease;
        z-index: 1001;
    }

    .sidebar.active {
        right: 0;
    }

    .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.65);
        z-index: 1000;
    }

    .sidebar-overlay.active {
        display: block;
    }

    .topbar-brand img {
        width: 42px;
        height: 42px;
    }

    .topbar-brand h5 {
        font-size: 15px;
    }

    .topbar-brand p {
        font-size: 11px;
    }

    .hero {
        padding: 34px 22px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 38px;
    }

    .logo-glow {
        width: 220px;
        height: 220px;
    }

    .logo-glow img {
        width: 160px;
    }

    .page-header h1 {
        font-size: 34px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .event-detail-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .fight-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fighter.text-end {
        text-align: center !important;
    }

    .vs {
        margin: auto;
    }

    .profile-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.event-image {
    display: block;
    width: 100%;
    height: 210px;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    position: relative;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}

.event-image:hover img {
    transform: scale(1.08);
}

.event-image::after {
    content: "View Event";
    position: absolute;
    inset: 0;
    background: rgba(4, 7, 17, 0.45);
    display: grid;
    place-items: center;
    color: white;
    font-weight: 900;
    opacity: 0;
    transition: .3s ease;
}

.event-image:hover::after {
    opacity: 1;
}


.prediction-card {
    height: 100%;
    padding: 24px;
    border-radius: 18px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(0, 217, 255, .35);
    box-shadow: 0 0 22px rgba(0,217,255,.06);
}

.fight-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
}

.fight-number {
    color: #ffd600;
    font-size: 18px;
    margin-right: 8px;
}

.fight-top p,
.tokens p {
    margin: 6px 0 0;
    color: var(--text-muted);
    font-size: 13px;
}

.tokens {
    text-align: right;
}

.tokens i,
.tokens strong {
    color: #00e676;
}

.fighter-vs-box {
    display: grid;
    grid-template-columns: 1fr 70px 1fr;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.fighter-pick {
    cursor: pointer;
    padding: 10px 6px;
    border-radius: 18px;
    transition: .25s;
    border: 1px solid transparent;
}

.fighter-pick input {
    display: none;
}

.fighter-pick:hover {
    background: rgba(21,119,255,.10);
    border-color: rgba(96,165,250,.35);
}

.fighter-pick:has(input:checked) {
    background: rgba(21,119,255,.16);
    border-color: var(--primary);
    box-shadow: 0 0 22px rgba(21,119,255,.25);
}

.fighter-avatar {
    width: 68px;
    height: 68px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 22px;
    font-weight: 900;
}

.fighter-avatar.blue {
    background: #0d8bff;
    box-shadow: 0 0 20px #00d9ff;
}

.fighter-avatar.red {
    background: #ff2f3d;
    box-shadow: 0 0 20px #ff2f3d;
}

.fighter-pick h4 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 4px;
}

.fighter-pick p {
    color: #00e676;
    font-size: 14px;
    font-weight: 800;
    margin: 0;
}

.vs-content strong {
    display: block;
    color: #ffd600;
    font-size: 24px;
    font-weight: 900;
    text-shadow: 0 0 10px #ffd600;
}

.vs-content span {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
}

.fight-meta {
    margin-top: 26px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.10);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--text-muted);
    font-size: 12px;
}

.fight-submit {
    margin-top: 18px;
    text-align: center;
}

.fight-submit .btn {
    width: 100%;
    border-radius: 12px;
    padding: 12px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .prediction-card {
        padding: 18px;
        border-radius: 16px;
    }

    .fighter-vs-box {
        grid-template-columns: 1fr 60px 1fr;
        gap: 8px;
    }

    .fighter-avatar {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }

    .fighter-pick h4 {
        font-size: 14px;
    }

    .fighter-pick p {
        font-size: 12px;
    }

    .vs-content strong {
        font-size: 20px;
    }

    .fight-meta {
        font-size: 11px;
        flex-wrap: wrap;
    }

    .event-status {
        font-size: 10px;
        padding: 4px 8px;
    }

    .tokens p {
        font-size: 11px;
    }
}

.event-header-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.event-header-left{
    flex:1;
}

.event-header-image{
    width:420px;
    flex-shrink:0;
}

.event-header-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.1);
    box-shadow:0 0 30px rgba(21,119,255,.25);
}

.event-header-meta{
    display:flex;
    gap:20px;
    margin-top:20px;
    flex-wrap:wrap;
}

.event-header-meta span{
    display:flex;
    align-items:center;
    gap:8px;
    color:#cbd5e1;
    font-weight:600;
}

.event-header-meta i{
    color:#60a5fa;
}

@media (max-width: 991px){

    .event-header-content{
        flex-direction:column-reverse;
        text-align:center;
    }

    .event-header-image{
        width:100%;
    }

    .event-header-image img{
        height:220px;
    }

    .event-header-meta{
        justify-content:center;
    }
}

.pick-link {
    color: white;
    transition: .25s;
}

.pick-link:hover {
    transform: translateX(6px);
    border-color: rgba(21,119,255,.45);
    background: rgba(21,119,255,.08);
}

.pick-event {
    display: block;
    color: #60a5fa;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 5px;
}

.pick-item h5 {
    margin: 0 0 5px;
    font-weight: 900;
}

.pick-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}


.table-event {
    color: #60a5fa;
    font-weight: 800;
}

.picked-fighter {
    color: #fff;
    font-weight: 700;
}

.table tbody tr {
    transition: .25s;
}

.table tbody tr:hover {
    background: rgba(21, 119, 255, .08);
}

.fight-mini {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mini-fighter {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 12px;
    font-weight: 900;
    flex-shrink: 0;
}

.blue-fighter {
    background: #0d8bff;
    box-shadow: 0 0 15px rgba(0, 217, 255, .7);
}

.red-fighter {
    background: #ff2f3d;
    box-shadow: 0 0 15px rgba(255, 47, 61, .7);
}

.fight-name {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.fight-name strong {
    color: white;
    font-size: 14px;
}

.fight-name span {
    color: #ffd600;
    font-weight: 900;
    font-size: 12px;
}

.table td,
.table th {
    vertical-align: middle;
}

@media (max-width: 768px) {

    .fight-mini {
        min-width: 280px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .fight-name {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-wrap: nowrap;
    }

    .fight-name strong {
        font-size: 12px;
    }

    .fight-name span {
        display: inline-block;
        color: #ffd600;
        font-weight: 900;
        font-size: 10px;
        text-shadow: 0 0 8px #ffd600;
    }
}


.leaderboard-meta,
.reward-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.leaderboard-meta span,
.reward-dates span {
    color: #cbd5e1;
    font-weight: 700;
    font-size: 14px;
}

.leaderboard-meta i,
.reward-dates i {
    color: #60a5fa;
    margin-right: 6px;
}

.elite-reward-card {
    margin-bottom: 28px;
    padding: 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at right, rgba(245, 158, 11, .18), transparent 30%),
        linear-gradient(135deg, rgba(21,119,255,.14), rgba(255,255,255,.035));
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.reward-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, .18);
    color: #fbbf24;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 14px;
}

.elite-reward-card h2 {
    font-weight: 900;
    margin-bottom: 10px;
}

.elite-reward-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.elite-reward-card p strong {
    color: #fbbf24;
}

.winner-box {
    min-width: 220px;
    padding: 24px;
    border-radius: 22px;
    text-align: center;
    background: rgba(245, 158, 11, .12);
    border: 1px solid rgba(245, 158, 11, .35);
}

.winner-box small {
    color: #fbbf24;
    font-weight: 800;
}

.winner-box h3 {
    margin: 8px 0;
    font-weight: 900;
}

.winner-box p {
    margin: 0;
    color: #fff;
    font-weight: 800;
}

.top-rank {
    background: rgba(245, 158, 11, .08);
}

.rank-number {
    font-weight: 900;
    color: #60a5fa;
}

.rank-number.gold {
    color: #fbbf24;
}

.fan-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fan-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: #60a5fa;
    font-weight: 900;
}

.gold-avatar {
    background: rgba(245, 158, 11, .18);
    color: #fbbf24;
    box-shadow: 0 0 18px rgba(245, 158, 11, .35);
}

.fan-info p {
    margin: 2px 0 0;
    color: var(--text-muted);
    font-size: 13px;
}

@media (max-width: 768px) {
    .elite-reward-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .winner-box {
        width: 100%;
    }

    .leaderboard-meta,
    .reward-dates {
        flex-direction: column;
        gap: 8px;
    }
}

.elite-pass-section {
    overflow: hidden;
    position: relative;
}

.elite-pass-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: rgba(245, 158, 11, .08);
}

.elite-pass-section h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
}

.elite-text {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 17px;
}

.elite-text strong {
    color: #fbbf24;
}

.elite-features {
    margin-top: 25px;
    display: grid;
    gap: 12px;
}

.elite-features div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.elite-features i {
    color: #fbbf24;
}

.elite-reward-box {
    text-align: center;
    padding: 35px;
    border-radius: 28px;
    background:
        linear-gradient(135deg,
            rgba(245, 158, 11, .18),
            rgba(255,255,255,.03));
    border: 1px solid rgba(245, 158, 11, .25);
}

.elite-crown {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(245, 158, 11, .15);
}

.elite-crown i {
    font-size: 42px;
    color: #fbbf24;
}

.elite-reward-box h3 {
    margin-top: 18px;
    font-weight: 900;
}

.elite-tag {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #fbbf24;
    color: #111827;
    font-weight: 900;
    font-size: 13px;
}


.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand img {
    width: 80px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(21,119,255,.8));
}

.footer-brand h4 {
    font-weight: 900;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-links h5 {
    margin-bottom: 15px;
    font-weight: 800;
    color: white;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
    transition: .25s;
}

.footer-links a:hover {
    color: #60a5fa;
    transform: translateX(5px);
}

.footer-links p {
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links strong {
    color: #fbbf24;
}

.site-footer {
    margin-top: 50px;
    margin-left: 20px;
    margin-right: 20px;

    padding: 40px;
    border-radius: 30px;
    background: rgba(11,16,32,.85);
    border: 1px solid var(--border);
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.08);

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.05);
    color: white;
    transition: .25s;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

@media(max-width:991px){

    .footer-top{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .site-footer{
        padding:25px;
    }

    .footer-top{
        grid-template-columns:1fr;
        gap:30px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }
}


.event-search-form {
    min-width: 320px;
}

.event-search-form .form-control {
    background: #111827;
    border: 1px solid #2b3548;
    color: #fff;
    height: 48px;
}

.event-search-form .form-control:focus {
    background: #111827;
    color: #fff;
    box-shadow: none;
    border-color: #4f46e5;
}

.event-search-form .btn {
    height: 48px;
    min-width: 55px;
}

@media (max-width: 768px) {

    .event-search-form {
        width: 100%;
        min-width: 100%;
    }

}


.fight-result-box {
    padding: 10px 12px;
    border-radius: 12px;
    background: #0A0E1D;
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.leaderboard-filter-card{
    background: #0A0E1D;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:25px;
    backdrop-filter: blur(12px);
}

.filter-header{
    margin-bottom:20px;
}

.filter-header h4{
    color:#fff;
    margin-bottom:5px;
    font-weight:700;
}

.filter-header p{
    color:#bdbdbd;
    margin-bottom:0;
}

.filter-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:6px 12px;
    border-radius:50px;
    background:var(--bg-main);
    color:#fff;
    font-size:12px;
    margin-bottom:12px;
}

.leaderboard-filter-card .form-label{
    color:#fff;
    font-weight:600;
}

.leaderboard-filter-card .form-select,
.leaderboard-filter-card .form-control{
    background:var(--bg-main);
    border:1px solid rgba(255,255,255,.1);
    color:#fff;
    min-height:48px;
}

.leaderboard-filter-card .form-select:focus,
.leaderboard-filter-card .form-control:focus{
    border-color:#0A0E1D;
    box-shadow:none;
}