:root {
    --brand: 141, 149, 226;
    --accent-1: 222, 138, 92;
    --accent-2: 200, 86, 111;
    --danger: 217, 61, 82;
    --success: 62, 181, 122;

    --bs-primary: var(--brand);

    --sidebar-w: 272px;
    --radius: 16px;
    --radius-sm: 10px;
}

[theme=dark],
:root {
    --bg: 9, 11, 16;
    --bg-elev: 16, 19, 27;
    --bg-elev-2: 22, 26, 36;
    --border-rgb: 255, 255, 255;
    --border-a: .08;
    --text: 233, 237, 245;
    --text-muted: 146, 155, 173;
    --shadow-a: .45;
}

[theme=light] {
    --bg: 242, 244, 249;
    --bg-elev: 255, 255, 255;
    --bg-elev-2: 234, 238, 245;
    --border-rgb: 20, 24, 33;
    --border-a: .08;
    --text: 24, 28, 38;
    --text-muted: 101, 110, 128;
    --shadow-a: .12;
}

* {
    box-sizing: border-box;
}

html, body {
    min-height: 100vh;
}

body {
    margin: 0;
    background: rgb(var(--bg));
    color: rgb(var(--text));
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -.01em;
}

a {
    color: inherit;
}

::selection {
    background: rgba(var(--brand), .35);
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(var(--border-rgb), .18);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--brand), .4);
}

/* Utilities */
.gradient-text {
    background: linear-gradient(135deg, rgb(var(--accent-1)), rgb(var(--accent-2)));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.glass-panel {
    background: rgba(var(--bg-elev), .92);
    border: 1px solid rgba(var(--border-rgb), var(--border-a));
    border-radius: var(--radius);
    box-shadow: 0 20px 40px -24px rgba(0,0,0,var(--shadow-a));
}

.content-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.section-block {
    margin-top: 2.5rem;
}

.section-title {
    font-size: 1.15rem;
    margin-bottom: 0;
}

/* ============ APP SHELL ============ */
.app-shell {
    display: flex;
    min-height: 100vh;
}

.app-main {
    flex: 1 1 auto;
    min-width: 0;
    margin-left: var(--sidebar-w);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.app-content {
    flex: 1 1 auto;
    padding-top: 2.5rem;
}

.app-footer {
    padding: 1.5rem;
    text-align: center;
    color: rgb(var(--text-muted));
    font-size: .8rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.app-footer-dot {
    margin: 0 .4rem;
    opacity: .5;
}

/* ============ SIDEBAR ============ */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--sidebar-w);
    display: flex;
    flex-direction: column;
    background: rgba(var(--bg-elev), .96);
    border-right: 1px solid rgba(var(--border-rgb), var(--border-a));
    padding: 1.5rem 1.25rem;
    overflow-y: auto;
    z-index: 1040;
    transition: transform .25s ease;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    color: rgb(var(--text));
    padding: .25rem .25rem 1.25rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(var(--border-rgb), var(--border-a));
}

.sidebar-brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-brand-text {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    min-width: 0;
}

.sidebar-brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -.01em;
    text-transform: lowercase;
}

.sidebar-brand-tag {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgb(var(--brand));
}

.side-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.side-nav-item {
    position: relative;
}

.side-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: 0;
    text-align: left;
    text-decoration: none;
    color: rgb(var(--text-muted));
    font-weight: 500;
    font-size: .92rem;
    padding: .6rem .75rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

.side-nav-link:hover {
    background: rgba(var(--brand), .1);
    color: rgb(var(--text));
}

.side-nav-caret {
    transition: transform .2s ease;
    opacity: .6;
}

.side-nav-item.is-open .side-nav-caret {
    transform: rotate(180deg);
}

.side-dropdown {
    list-style: none;
    margin: 0;
    padding: 0 0 0 .9rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease;
}

.side-nav-item.is-open .side-dropdown {
    max-height: 320px;
}

.side-dropdown-link {
    display: block;
    padding: .5rem .75rem;
    text-decoration: none;
    color: rgb(var(--text-muted));
    font-size: .87rem;
    border-left: 2px solid rgba(var(--border-rgb), var(--border-a));
}

.side-dropdown-link:hover {
    color: rgb(var(--accent-1));
    border-left-color: rgb(var(--accent-1));
}

.sidebar-divider {
    height: 1px;
    background: rgba(var(--border-rgb), var(--border-a));
    margin: 1.25rem 0;
}

.side-search {
    position: relative;
    margin-bottom: 1.25rem;
}

.side-search-field {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgb(var(--bg-elev-2));
    border-radius: var(--radius-sm);
    padding: .55rem .75rem;
    color: rgb(var(--text-muted));
}

.side-search-field:focus-within {
    box-shadow: 0 0 0 2px rgba(var(--brand), .5);
    color: rgb(var(--text));
}

.search-box {
    background: transparent;
    border: 0;
    outline: none;
    color: rgb(var(--text));
    width: 100%;
    font-size: .88rem;
}

.search-box::placeholder {
    color: rgb(var(--text-muted));
}

.search-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + .4rem);
    background: rgb(var(--bg-elev-2));
    border: 1px solid rgba(var(--border-rgb), var(--border-a));
    border-radius: var(--radius-sm);
    overflow: hidden;
    z-index: 20;
}

.search-suggestion {
    padding: .5rem .75rem;
    font-size: .87rem;
}

.search-suggestion:hover {
    background: rgba(var(--brand), .15);
}

.side-status {
    margin-top: auto;
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.side-status-row {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .85rem;
    color: rgb(var(--text-muted));
}

.side-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(var(--success));
    box-shadow: 0 0 0 4px rgba(var(--success), .18);
    flex-shrink: 0;
}

.side-status-text .player_count {
    color: rgb(var(--text));
    font-weight: 600;
}

.side-ip {
    background: linear-gradient(135deg, rgba(var(--accent-1), .16), rgba(var(--accent-2), .16));
    border: 1px solid rgba(var(--accent-1), .3);
    border-radius: var(--radius-sm);
    padding: .75rem .9rem;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease;
}

.side-ip:hover {
    transform: translateY(-1px);
}

.side-ip-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgb(var(--text-muted));
    margin-bottom: .2rem;
}

.side-ip-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: .92rem;
}

.side-ip small {
    display: block;
    color: rgb(var(--text-muted));
    font-size: .72rem;
    margin-top: .2rem;
}

/* Mobile nav toggle */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1060;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(var(--bg-elev), .95);
    border: 1px solid rgba(var(--border-rgb), var(--border-a));
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 18px;
    height: 2px;
    background: rgb(var(--text));
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

.sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 1030;
}

@media (max-width: 991px) {
    .app-main {
        margin-left: 0;
    }

    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.is-open {
        transform: translateX(0);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .sidebar-backdrop.is-open {
        display: block;
    }

    .app-hero {
        padding-top: 4.5rem !important;
    }
}

/* ============ HERO / HEADER ============ */
.app-hero {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.app-hero-overlay {
    background: linear-gradient(180deg, rgba(var(--bg), .35) 0%, rgb(var(--bg)) 100%);
    padding: 3.5rem 1.5rem 2.5rem;
}

.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.hero-mode-logo {
    display: block;
    height: 30px;
    width: auto;
    margin-bottom: .85rem;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}

.hero-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: .72rem;
    letter-spacing: .12em;
    font-weight: 600;
    background: linear-gradient(135deg, rgb(var(--accent-1)), rgb(var(--accent-2)));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: .5rem;
}

.hero-title {
    font-size: 2rem;
    margin: 0;
}

/* Profile hero */
.profile-hero {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.profile-hero-avatar {
    width: 84px;
    height: 84px;
    border-radius: 20px;
    box-shadow: 0 0 0 3px rgba(var(--brand), .45), 0 20px 40px -20px rgba(0,0,0,.6);
}

.profile-hero-name {
    font-size: 1.6rem;
    margin: 0;
}

.rank-pill {
    display: inline-block;
    padding: .3rem .7rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
}

/* Fight hero */
.fight-hero {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}

.fight-hero-mode-logo {
    display: inline-block;
    height: 32px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,.4));
}

.fight-hero-versus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.fight-hero-side {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-end;
    min-width: 200px;
}

.fight-hero-side.is-rtl {
    justify-content: flex-start;
}

.fight-hero-orb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    color: #fff;
    background: linear-gradient(135deg, rgb(var(--accent-1)), rgb(var(--accent-2)));
    box-shadow: 0 12px 28px -10px rgba(var(--accent-2), .7);
}

.fight-hero-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.75rem;
    margin-top: 1.75rem;
    color: rgb(var(--text-muted));
    font-size: .88rem;
}

.fight-hero-meta-item {
    display: flex;
    align-items: center;
    gap: .4rem;
}

/* Versus player (shared: header + match list) */
.versus-player {
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.versus-player-avatar {
    border-radius: 8px;
}

.versus-player-name {
    font-weight: 600;
}

.versus-player-elo {
    font-size: .82rem;
    font-weight: 500;
}

.versus-player-elo.is-muted { color: rgb(var(--text-muted)); }
.versus-player-elo.is-negative { color: rgb(var(--danger)); }
.versus-player-elo.is-positive { color: rgb(var(--success)); }

.match-row-vs {
    margin: 0 1rem;
    color: rgb(var(--text-muted));
    font-weight: 500;
    font-size: .85rem;
}

/* ============ SEGMENTED TABS (home) ============ */
.segmented-wrap {
    width: 100%;
}

.segmented-control {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 0 0 1.25rem;
    padding: .75rem;
    background: rgb(var(--bg-elev));
    border: 1px solid rgba(var(--border-rgb), var(--border-a));
    border-radius: var(--radius);
}

.segmented-item {
    flex: 0 0 auto;
}

.segmented-link {
    border: 1px solid rgba(var(--border-rgb), var(--border-a));
    background: rgba(var(--bg-elev-2), .6);
    padding: .55rem 1.1rem;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    color: rgb(var(--text-muted));
    white-space: nowrap;
    cursor: pointer;
    transition: color .15s ease, background .15s ease, border-color .15s ease, transform .1s ease;
}

.segmented-link:hover {
    color: rgb(var(--text));
    border-color: rgba(var(--brand), .4);
}

.segmented-link:active {
    transform: scale(.97);
}

.segmented-link.active {
    color: #fff;
    background: linear-gradient(135deg, rgb(var(--accent-1)), rgb(var(--accent-2)));
    border-color: transparent;
}

/* ============ TABLE ============ */
.table-panel {
    padding: .5rem;
    overflow: hidden;
}

.nova-table-toolbar {
    padding: 1rem 1.25rem .5rem;
}

.nova-table-footer {
    padding: .75rem 1.25rem 1.25rem;
}

table.nova-table {
    border-color: transparent;
    margin-bottom: 0;
    color: rgb(var(--text));
}

table.nova-table thead th {
    text-transform: uppercase;
    font-size: .7rem;
    letter-spacing: .07em;
    color: rgb(var(--text-muted));
    border-bottom: 1px solid rgba(var(--border-rgb), var(--border-a));
    padding: .85rem 1rem;
}

table.nova-table tbody td {
    padding: .7rem 1rem;
    border-bottom: 1px solid rgba(var(--border-rgb), calc(var(--border-a) * .6));
    vertical-align: middle;
}

table.nova-table tbody tr:hover {
    background: rgba(var(--brand), .06);
}

.table-player-head {
    width: 2.4rem;
    border-radius: 8px;
}

.rank-number {
    color: rgb(var(--text-muted));
    font-weight: 600;
}

.trophy-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 0 4px currentColor;
    opacity: .85;
}

/* dataTables overrides */
.dataTables_wrapper .dataTables_filter input {
    background: rgb(var(--bg-elev-2));
    border: 1px solid rgba(var(--border-rgb), var(--border-a));
    border-radius: var(--radius-sm);
    color: rgb(var(--text));
    padding: .4rem .6rem;
    margin-left: .5rem;
}

.dataTables_wrapper .dataTables_filter input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--brand), .5);
}

.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_length {
    color: rgb(var(--text-muted));
    font-size: .82rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: var(--radius-sm) !important;
    margin-left: .25rem;
    color: rgb(var(--text)) !important;
    border: 1px solid transparent !important;
    background: transparent !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: linear-gradient(135deg, rgb(var(--accent-1)), rgb(var(--accent-2))) !important;
    color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: rgba(var(--brand), .15) !important;
    color: rgb(var(--text)) !important;
}

/* Bootstrap pagination (Laravel links()) */
.page-link {
    background-color: rgb(var(--bg-elev));
    border-color: rgba(var(--border-rgb), var(--border-a));
    color: rgb(var(--text));
}

.page-item.active .page-link {
    background: linear-gradient(135deg, rgb(var(--accent-1)), rgb(var(--accent-2)));
    border-color: transparent;
}

.page-item.disabled .page-link {
    background-color: rgb(var(--bg-elev));
    color: rgb(var(--text-muted));
}

/* ============ BUTTONS / FORMS ============ */
.btn-nova-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: .55rem 1.2rem;
    font-weight: 600;
    font-size: .85rem;
    color: #fff !important;
    background: linear-gradient(135deg, rgb(var(--accent-1)), rgb(var(--accent-2)));
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}

.btn-nova-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -12px rgba(var(--accent-2), .8);
    color: #fff;
}

.btn-nova-primary.btn-sm {
    padding: .35rem .85rem;
    font-size: .78rem;
}

.form-control, .form-select, .nova-select {
    background-color: rgb(var(--bg-elev-2));
    border: 1px solid rgba(var(--border-rgb), var(--border-a));
    color: rgb(var(--text));
    border-radius: var(--radius-sm);
}

.form-control:focus, .form-select:focus {
    background-color: rgb(var(--bg-elev-2));
    color: rgb(var(--text));
    border-color: rgb(var(--brand));
    box-shadow: 0 0 0 2px rgba(var(--brand), .35);
}

/* ============ STAT GRID (player profile) ============ */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-tile {
    background: rgba(var(--bg-elev), .9);
    border: 1px solid rgba(var(--border-rgb), var(--border-a));
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    transition: transform .15s ease, border-color .15s ease;
}

.stat-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--brand), .4);
}

.stat-tile-accent {
    background: linear-gradient(135deg, rgba(var(--accent-1), .14), rgba(var(--accent-2), .14));
    border-color: rgba(var(--accent-1), .35);
}

.stat-tile-label {
    font-size: .78rem;
    color: rgb(var(--text-muted));
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .35rem;
}

.stat-tile-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
}

.stat-tile-sub {
    font-size: .78rem;
    font-weight: 500;
    color: rgb(var(--text-muted));
    margin-left: .25rem;
}

@media (max-width: 900px) {
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .stat-grid { grid-template-columns: 1fr; }
    .profile-hero { flex-direction: column; text-align: center; }
}

/* ============ MATCH HISTORY LIST ============ */
.match-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.match-row {
    display: block;
    text-decoration: none;
    color: rgb(var(--text));
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-left: 3px solid transparent;
}

.match-row.is-win { border-left-color: rgb(var(--success)); }
.match-row.is-loss { border-left-color: rgb(var(--danger)); }

.match-row-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
    background: rgba(var(--bg-elev), .93);
}

.match-row-meta {
    text-align: right;
    color: rgb(var(--text-muted));
    font-size: .82rem;
    line-height: 1.5;
}

.nova-badge {
    display: inline-block;
    padding: .25rem .65rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
    color: #fff;
}

.nova-badge-brand { background: rgba(var(--brand), .85); }
.nova-badge-muted { background: rgba(var(--text-muted), .5); }
.nova-badge-danger { background: rgb(var(--danger)); }
.nova-badge-success { background: rgb(var(--success)); }

/* ============ FIGHT / INVENTORY ============ */
.fight-divider {
    height: 1px;
    background: rgba(var(--border-rgb), var(--border-a));
    margin: 2rem 0;
}

.inventory-card {
    background: rgba(var(--bg-elev), .85);
    border: 1px solid rgba(var(--border-rgb), var(--border-a));
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
}

.player-inventory-row {
    display: flex;
}

.player-inventory-slot {
    position: relative;
    padding: 4px;
    min-width: 40px;
    min-height: 40px;
    margin-right: .5rem;
    margin-bottom: .5rem;
    background: rgb(var(--bg-elev-2));
    border-radius: 8px;
    image-rendering: pixelated;
}

.player-inventory-slot img {
    width: 100%;
    height: 100%;
}

.player-inventory-slot.enchanted {
    background: radial-gradient(rgb(var(--accent-2)), rgb(var(--brand)) 55%, rgb(var(--bg-elev-2)) 100%);
    box-shadow: 0 0 0 1px rgba(var(--accent-2), .4);
}

.player-inventory-slot:hover .item-tooltip {
    display: block;
}

.player-inventory-slot .item-tooltip {
    display: none;
    background-color: rgba(var(--bg-elev-2), .98);
    border: 1px solid rgba(var(--border-rgb), var(--border-a));
    padding: .55rem .7rem;
    border-radius: var(--radius-sm);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    transform: translateX(100%);
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 12px 24px -12px rgba(0,0,0,.5);
}

.player-inventory-slot .slot-amount {
    position: absolute;
    bottom: 3px;
    right: 5px;
    font-size: .75rem;
    font-weight: 700;
    user-select: none;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.player-inventory.reversed .player-inventory-slot {
    margin-right: 0;
    margin-left: .5rem;
}

.player-inventory.reversed .player-inventory-slot .item-tooltip {
    right: initial;
    left: 0;
    transform: translateX(-100%);
}

.potion {
    min-width: 32px;
    min-height: 32px;
}

.stat-bar {
    gap: 2px;
}

.stat-bar .stat {
    height: 22px;
    width: 22px;
}

/* ============ NOTICE PAGES ============ */
.app-notice {
    padding: 1.5rem;
}

.notice-box h1 {
    font-size: 1.4rem;
    max-width: 30rem;
}

@media (max-width: 767px) {
    .content-container {
        padding: 0 1rem 3rem;
    }

    .app-hero-overlay {
        padding: 4rem 1rem 2rem;
    }

    .fight-hero-orb {
        width: 44px;
        height: 44px;
        font-size: .8rem;
    }
}
