/* =========================
   THEME
========================= */
:root {
    --wwe-black: #0b0b0b;
    --wwe-red: #d20a10;
    --wwe-white: #ffffff;
    --wwe-gray: #1a1a1a;
    --wwe-border: #2a2a2a;
    --wwe-panel: #121212;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: var(--wwe-black);
    color: var(--wwe-white);
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: var(--wwe-black);
    color: var(--wwe-white);
}

a {
    color: inherit;
    text-decoration: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* =========================
   LAYOUT GENERALE
========================= */
.page-shell {
    min-height: 100vh;
    background: var(--wwe-black);
}

.main-content {
    padding: 24px;
}

.full-width-content {
    width: 100%;
    max-width: 100%;
}

/* =========================
   TOPBAR
========================= */
.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 12px 24px;
    background: #070707;
    border-bottom: 1px solid var(--wwe-border);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    min-width: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 40px;
    height: auto;
    display: block;
}

.brand-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--wwe-white);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.desktop-nav-wrap {
    display: contents;
}

.topnav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topnav-link,
.admin-dropdown-btn,
.user-pill,
.logout-btn,
.mobile-nav-link {
    color: var(--wwe-white);
    background: transparent;
    border: 1px solid transparent;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

    .topnav-link.active,
    .topnav-link:hover,
    .mobile-nav-link.active,
    .mobile-nav-link:hover,
    .admin-dropdown-btn:hover,
    .user-pill:hover,
    .logout-btn:hover,
    .admin-dropdown[open] .admin-dropdown-btn {
        background: rgba(210, 10, 16, .16);
        border-color: rgba(210, 10, 16, .30);
    }

.logout-form {
    margin: 0;
}

/* =========================
   ADMIN DROPDOWN
========================= */
.admin-dropdown {
    position: relative;
}

    .admin-dropdown summary {
        list-style: none;
    }

.admin-dropdown-btn {
    user-select: none;
}

.admin-dropdown-menu {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    min-width: 200px;
    background: #111;
    border: 1px solid var(--wwe-border);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,.35);
    padding: 8px;
    z-index: 2000;
}

.admin-dropdown[open] .admin-dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-dropdown-item {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
}

    .admin-dropdown-item:hover {
        background: rgba(210,10,16,.16);
    }

/* =========================
   MOBILE MENU
========================= */
.hamburger-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--wwe-border);
    border-radius: 10px;
    background: #111;
    padding: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

    .hamburger-btn span {
        display: block;
        width: 22px;
        height: 2px;
        background: #fff;
        border-radius: 999px;
    }

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 2100;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100vh;
    background: #0d0d0d;
    border-left: 1px solid var(--wwe-border);
    z-index: 2200;
    padding: 72px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: -10px 0 30px rgba(0,0,0,.35);
}

.mobile-nav-link {
    display: block;
}

.mobile-menu-section-title {
    margin-top: 8px;
    padding: 8px 4px 4px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #bbb;
}

.mobile-logout-form {
    margin-top: 8px;
}

.mobile-logout-btn {
    width: 100%;
}

.user-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* =========================
   AUTH
========================= */
.wwe-auth {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(180deg, rgba(0,0,0,.82), rgba(0,0,0,.92));
}

.wwe-card {
    width: 100%;
    max-width: 430px;
    background: linear-gradient(180deg, #121212, #0b0b0b);
    border: 1px solid var(--wwe-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.45);
}

.login-card {
    text-align: center;
}

.wwe-logo {
    width: 90px;
    max-width: 90px;
    height: auto;
    display: block;
    margin: 0 auto 14px;
}

.wwe-logo-large {
    width: 180px;
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto 18px;
}

.wwe-card h1 {
    text-align: center;
    margin: 0 0 18px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* =========================
   FORM ELEMENTS
========================= */
.wwe-input {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--wwe-border);
    background: #0f0f0f;
    color: var(--wwe-white);
    outline: none;
}

.wwe-btn {
    width: 100%;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 0;
    background: var(--wwe-red);
    color: var(--wwe-white);
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
}

    .wwe-btn:hover {
        filter: brightness(1.05);
    }

    .wwe-btn.small {
        padding: 8px 10px;
        border-radius: 10px;
        font-size: 12px;
    }

    .wwe-btn.secondary {
        background: #222;
        border: 1px solid var(--wwe-border);
    }

.wwe-alert {
    background: rgba(168,255,168,.15);
    border: 1px solid rgba(83,255,61,.45);
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.form-row {
    margin-bottom: 14px;
}

    .form-row label {
        display: block;
        margin-bottom: 6px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        color: #ddd;
    }

.switch-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =========================
   PANELS / TABLES
========================= */
.admin-panel {
    background: linear-gradient(180deg, #121212, #0b0b0b);
    border: 1px solid var(--wwe-border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

    .admin-panel h2 {
        margin: 0 0 16px;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

.roles-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid var(--wwe-border);
    border-radius: 12px;
    background: #0d0d0d;
}

    .roles-box.compact {
        min-width: 180px;
    }

.role-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.users-table-wrap {
    overflow: auto;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
}

    .users-table th,
    .users-table td {
        text-align: left;
        padding: 12px 10px;
        border-bottom: 1px solid #202020;
        vertical-align: top;
    }

    .users-table th {
        text-transform: uppercase;
        font-size: 12px;
        color: #ccc;
        letter-spacing: .5px;
    }

.table-btn {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--wwe-border);
    background: #151515;
    color: var(--wwe-white);
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
}

    .table-btn:hover {
        background: rgba(210,10,16,.16);
        border-color: rgba(210,10,16,.30);
    }

    .table-btn.secondary {
        background: #202020;
    }

/* =========================
   MODAL
========================= */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.modal-card {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(180deg, #121212, #0b0b0b);
    border: 1px solid var(--wwe-border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

    .modal-card h2 {
        margin-top: 0;
        text-transform: uppercase;
    }

.modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

    .modal-actions .wwe-btn {
        width: auto;
        margin-top: 0;
    }

/* =========================
   PAGE LAYOUTS
========================= */
.admin-users-page {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 24px;
    align-items: start;
}

.events-admin-grid,
.titles-admin-grid,
.season-admin-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 24px;
    align-items: start;
}

.event-cards-grid {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    width: 100%;
}

.roster-page-grid {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.roster-left-panel,
.roster-right-panel {
    min-width: 0;
}

.page-top-filters {
    margin-bottom: 20px;
}

.page-top-filters-grid {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 16px;
    align-items: end;
}

/* =========================
   ROSTER
========================= */
.roster-admin-grid {
    display: grid;
    grid-template-columns: 420px;
    margin-bottom: 24px;
}

.roster-admin-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

    .roster-admin-actions .wwe-btn {
        width: auto;
        margin-top: 0;
    }

.roster-filters-panel {
    margin-bottom: 20px;
}

.roster-filters-grid {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 16px;
    align-items: end;
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.roster-grid-full {
    width: 100%;
}

.roster-card {
    background: linear-gradient(180deg, #121212, #0b0b0b);
    border: 1px solid var(--wwe-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.20);
}

.roster-image-wrap {
    position: relative;
    width: 100%;
    height: 280px;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.roster-image {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    object-fit: contain;
    object-position: center center;
    display: block;
    margin: 8px;
    background: #050505;
}

.roster-belt-icons {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.roster-belt-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    background: rgba(0,0,0,.75);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    padding: 4px;
}

.roster-card-body {
    padding: 16px;
}

.roster-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.roster-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #ddd;
    flex-wrap: wrap;
}

.roster-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.roster-preview-box,
.event-logo-preview-box,
.title-preview-box {
    margin: 12px 0 16px;
    border: 1px solid var(--wwe-border);
    border-radius: 12px;
    overflow: hidden;
    background: #070707;
}

.roster-preview-img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    display: block;
    background: #070707;
}

.wrestler-titles-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.wrestler-title-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(210,10,16,.14);
    border: 1px solid rgba(210,10,16,.30);
    color: #fff;
}

/* =========================
   STATUS
========================= */
.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

    .status-pill.active {
        background: rgba(30,180,80,.15);
        border: 1px solid rgba(30,180,80,.35);
        color: #8bf0b0;
    }

    .status-pill.inactive {
        background: rgba(180,180,180,.10);
        border: 1px solid rgba(180,180,180,.20);
        color: #cfcfcf;
    }

/* =========================
   EVENTS
========================= */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-admin-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
    width: 100%;
    border: 1px solid var(--wwe-border);
    border-radius: 16px;
    overflow: hidden;
    background: #0b0b0b;
}

.event-admin-logo-wrap {
    background: #050505;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-admin-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-admin-body {
    padding: 16px;
}

    .event-admin-body.full {
        grid-column: 1 / -1;
        width: 100%;
    }

.event-admin-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.event-admin-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #ddd;
    margin-bottom: 12px;
}

.event-admin-notes {
    margin-bottom: 14px;
    color: #bbb;
}

.event-logo-preview-img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    display: block;
}

/* =========================
   TITLES
========================= */
.titles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.title-card {
    background: linear-gradient(180deg, #121212, #0b0b0b);
    border: 1px solid var(--wwe-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.20);
}

.title-image-wrap {
    width: 100%;
    height: 240px;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.title-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #050505;
}

.title-card-body {
    padding: 16px;
}

.title-name {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.title-preview-img {
    width: 100%;
    max-height: 240px;
    object-fit: contain;
    display: block;
    background: #070707;
}

/* =========================
   SEASONS
========================= */
.season-winner-box {
    margin-bottom: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
}

    .season-winner-box .wwe-input {
        margin: 0;
    }

.profile-season-belts {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.profile-season-belt-card {
    width: 170px;
    border: 1px solid var(--wwe-border);
    border-radius: 14px;
    background: #0d0d0d;
    padding: 12px;
    text-align: center;
}

.profile-season-belt-img {
    width: 100%;
    max-width: 140px;
    height: 70px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}

/* =========================
   EVENT CARDS
========================= */
.section-divider {
    border: 0;
    border-top: 1px solid var(--wwe-border);
    margin: 20px 0;
}

.participants-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.participant-row {
    display: grid;
    grid-template-columns: 1fr 110px;
    gap: 10px;
}

.team-number-input {
    margin: 0;
}

.match-participants-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.match-participant-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: #141414;
    border: 1px solid var(--wwe-border);
}

.result-box {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid var(--wwe-border);
    border-radius: 14px;
    background: #0d0d0d;
}

    .result-box h3 {
        margin: 0 0 12px;
        text-transform: uppercase;
        font-size: 15px;
    }

.match-title-belts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 14px;
}

.match-title-belt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid var(--wwe-border);
    background: #111;
}

    .match-title-belt img {
        width: 34px;
        height: 34px;
        object-fit: contain;
    }

    .match-title-belt span {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
    }

/* =========================
   BETS
========================= */
.bet-wrestlers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin: 16px 0 20px;
}

.bet-wrestler-card {
    background: linear-gradient(180deg, #111, #0a0a0a);
    border: 1px solid var(--wwe-border);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.22);
    transition: transform .15s ease;
}

    .bet-wrestler-card:hover {
        transform: translateY(-2px);
    }

.bet-wrestler-img-wrap {
    width: 100%;
    height: 220px;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bet-wrestler-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    display: block;
    background: #050505;
}

.bet-wrestler-name {
    padding: 12px 10px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 15px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.bet-pick-grid,
.bet-team-pick-grid {
    display: grid;
    gap: 14px;
    margin-top: 10px;
}

.bet-pick-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.bet-team-pick-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.bet-pick-card,
.bet-team-pick-card {
    border: 1px solid var(--wwe-border);
    background: #101010;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    color: #fff;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

    .bet-pick-card:hover,
    .bet-team-pick-card:hover {
        transform: translateY(-2px);
    }

    .bet-pick-card.selected,
    .bet-team-pick-card.selected {
        border-color: #e10600;
        box-shadow: 0 0 0 2px rgba(225,6,0,.25);
    }

.bet-pick-img-wrap {
    height: 220px;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bet-pick-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

.bet-pick-name,
.bet-team-pick-name {
    padding: 12px 10px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.06);
}

.bet-team-pick-images,
.team-pick-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #050505;
    overflow: hidden;
}

.bet-team-pick-images {
    gap: 0;
}

.team-pick-collage {
    height: 220px;
}

.bet-team-pick-image-wrap {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,.04);
}

    .bet-team-pick-image-wrap:last-child {
        border-right: 0;
    }

.bet-team-pick-image,
.team-pick-collage-img {
    width: 100%;
    object-position: center top;
    display: block;
}

.bet-team-pick-image {
    height: 100%;
    object-fit: contain;
    background: #050505;
}

.team-pick-collage-img {
    height: 110px;
    object-fit: cover;
}

/* =========================
   HEADER IMAGES / MITB
========================= */
.season-image-top-grid {
    align-items: center;
}

.season-header-image-box,
.event-header-image-box {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--wwe-border);
    border-radius: 14px;
    background: #0d0d0d;
    padding: 8px 12px;
}

.season-header-image,
.event-header-image {
    width: 100%;
    max-height: 80px;
    object-fit: contain;
    display: block;
}

.panel-header-with-image {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 18px;
    align-items: center;
    margin-bottom: 12px;
}

.mitb-holder-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--wwe-border);
    background: #111;
    margin: 12px 0;
}

    .mitb-holder-box img:first-child {
        width: 60px;
        height: 60px;
        object-fit: cover;
        object-position: center top;
        border-radius: 10px;
        background: #050505;
    }

.mitb-holder-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    opacity: .9;
}

.mitb-holder-name {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}

.mitb-mini-briefcase {
    width: 42px !important;
    height: 28px !important;
    object-fit: contain !important;
    margin-left: auto;
    border-radius: 0 !important;
    background: transparent !important;
}

/* =========================
   CHAMPION BADGE
========================= */
.menu-champion-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255,215,120,.35);
    background: rgba(255,215,120,.10);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.25);
}

    .menu-champion-badge img {
        width: 28px;
        height: 18px;
        object-fit: contain;
    }

/* =========================
   TOAST
========================= */
.toast-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    padding: 20px;
}

.toast-popup {
    width: min(520px, 92vw);
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
    border: 1px solid transparent;
    text-align: center;
}

.toast-success {
    background: linear-gradient(180deg, #102815, #0d1d10);
    border-color: rgba(80, 220, 110, .35);
    color: #d7ffd9;
}

.toast-error {
    background: linear-gradient(180deg, #2a1010, #1d0d0d);
    border-color: rgba(255, 90, 90, .35);
    color: #ffd8d8;
}

.toast-title {
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.toast-message {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 16px;
}

.toast-close-btn {
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
    .event-cards-grid {
        grid-template-columns: 1fr;
    }

    .participant-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .admin-users-page,
    .events-admin-grid,
    .titles-admin-grid,
    .season-admin-grid,
    .roster-page-grid {
        grid-template-columns: 1fr;
    }

    .event-admin-card {
        grid-template-columns: 1fr;
    }

    .season-winner-box {
        flex-direction: column;
        align-items: stretch;
    }

    .roster-filters-grid,
    .panel-header-with-image {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .desktop-nav-wrap {
        display: none;
    }

    .hamburger-btn {
        display: inline-flex;
    }

    .topbar {
        padding: 12px 16px;
    }

    .topbar-left {
        gap: 12px;
    }

    .brand-text {
        font-size: 18px;
    }

    .main-content {
        padding: 16px;
    }

    .event-cards-grid,
    .events-admin-grid,
    .admin-users-page,
    .titles-admin-grid,
    .season-admin-grid {
        grid-template-columns: 1fr;
    }

    .event-admin-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .page-top-filters-grid {
        grid-template-columns: 1fr;
    }
}
