:root {
    --bg: #07090d;
    --bg-soft: #0c0f15;
    --panel: #10141c;
    --panel-hover: #141a24;
    --border: rgba(255,255,255,.08);

    --text: #f5f7fa;
    --muted: #8e98a8;
    --muted-light: #b7c0cc;

    --accent: #2f8cff;
    --accent-hover: #4a9dff;
    --accent-soft: rgba(47,140,255,.12);

    --green: #36d399;
    --yellow: #f5c451;
    --red: #ff5d73;

    --radius: 18px;
    --shadow: 0 20px 60px rgba(0,0,0,.35);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(47,140,255,.13),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 15%,
            rgba(47,140,255,.08),
            transparent 28%
        ),
        var(--bg);

    color: var(--text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    height: 76px;

    border-bottom: 1px solid var(--border);

    background: rgba(7,9,13,.82);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1240px, calc(100% - 40px));
    height: 100%;

    margin: 0 auto;

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

    gap: 30px;
}

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

.brand-mark {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            #1766c4
        );

    box-shadow:
        0 8px 25px rgba(47,140,255,.28);

    font-weight: 900;
    font-size: 15px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-title {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .5px;
}

.brand-subtitle {
    margin-top: 4px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 9px 13px;

    border-radius: 9px;

    color: var(--muted-light);

    font-size: 14px;
    font-weight: 600;

    transition:
        background .2s ease,
        color .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255,255,255,.05);
    color: #fff;
}

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

.btn {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 0 17px;

    border: 1px solid transparent;
    border-radius: 10px;

    font-size: 13px;
    font-weight: 750;

    cursor: pointer;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

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

.btn-primary {
    color: #fff;

    background: var(--accent);

    box-shadow:
        0 8px 24px rgba(47,140,255,.20);
}

.btn-primary:hover {
    background: var(--accent-hover);

    box-shadow:
        0 12px 30px rgba(47,140,255,.28);
}

.btn-secondary {
    color: var(--muted-light);

    background: rgba(255,255,255,.035);

    border-color: var(--border);
}

.btn-secondary:hover {
    color: #fff;
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.12);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;

    width: min(1240px, calc(100% - 40px));

    margin: 0 auto;

    padding: 82px 0 60px;
}

.hero::before {
    content: "";

    position: absolute;

    width: 460px;
    height: 460px;

    right: -180px;
    top: -170px;

    border-radius: 50%;

    background: rgba(47,140,255,.08);

    filter: blur(30px);

    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns: 1.15fr .85fr;

    gap: 70px;

    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 18px;

    color: #76b6ff;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;

    text-transform: uppercase;
}

.eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 0 5px rgba(47,140,255,.10);
}

.hero h1 {
    max-width: 760px;

    font-size: clamp(44px, 6vw, 76px);

    line-height: .98;

    letter-spacing: -3.5px;

    font-weight: 900;
}

.hero h1 span {
    color: var(--accent);
}

.hero-description {
    max-width: 620px;

    margin-top: 24px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;

    gap: 28px;

    margin-top: 42px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-size: 23px;
    font-weight: 850;
}

.hero-stat span {
    margin-top: 3px;

    color: var(--muted);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: .7px;

    text-transform: uppercase;
}

/* =========================================================
   LOBBY PREVIEW
   ========================================================= */

.lobby-preview {
    position: relative;

    padding: 22px;

    border: 1px solid rgba(255,255,255,.09);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.018)
        );

    box-shadow: var(--shadow);

    transform:
        perspective(1200px)
        rotateY(-5deg);

    transition: transform .35s ease;
}

.lobby-preview:hover {
    transform:
        perspective(1200px)
        rotateY(0deg)
        translateY(-4px);
}

.preview-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding-bottom: 18px;

    border-bottom: 1px solid var(--border);
}

.preview-game {
    display: flex;
    align-items: center;
    gap: 12px;
}

.game-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--accent-soft);

    color: #75b5ff;

    font-size: 20px;
    font-weight: 900;
}

.preview-game strong {
    display: block;

    font-size: 15px;
}

.preview-game span {
    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 11px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 6px 9px;

    border-radius: 7px;

    background: rgba(54,211,153,.09);

    color: var(--green);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.live-badge::before {
    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: currentColor;
}

.preview-progress {
    margin: 20px 0;
}

.progress-head {
    display: flex;
    justify-content: space-between;

    margin-bottom: 8px;

    color: var(--muted);

    font-size: 11px;
    font-weight: 700;
}

.progress-head strong {
    color: #fff;
}

.progress {
    height: 7px;

    overflow: hidden;

    border-radius: 999px;

    background: rgba(255,255,255,.06);
}

.progress span {
    display: block;

    width: 80%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #176bc8,
            var(--accent)
        );
}

.players {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;
}

.player {
    display: flex;
    align-items: center;

    gap: 9px;

    padding: 10px;

    border: 1px solid rgba(255,255,255,.055);

    border-radius: 10px;

    background: rgba(0,0,0,.16);
}

.avatar {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    border-radius: 8px;

    background: #1a2330;

    color: #b8c6d8;

    font-size: 11px;
    font-weight: 800;
}

.player-name {
    overflow: hidden;

    color: #dce2e9;

    font-size: 11px;
    font-weight: 700;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.ready {
    margin-left: auto;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);
}

/* =========================================================
   SECTION
   ========================================================= */

.section {
    width: min(1240px, calc(100% - 40px));

    margin: 0 auto;

    padding: 42px 0 90px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 20px;

    margin-bottom: 24px;
}

.section-title {
    font-size: 27px;

    font-weight: 850;

    letter-spacing: -.7px;
}

.section-subtitle {
    margin-top: 5px;

    color: var(--muted);

    font-size: 13px;
}

.section-link {
    color: #6eafff;

    font-size: 12px;

    font-weight: 750;
}

.section-link:hover {
    color: #fff;
}

/* =========================================================
   FILTERS
   ========================================================= */

.filters {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 20px;
}

.filter {
    padding: 9px 13px;

    border: 1px solid var(--border);

    border-radius: 9px;

    background: rgba(255,255,255,.025);

    color: var(--muted-light);

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition: .2s ease;
}

.filter:hover,
.filter.active {
    border-color: rgba(47,140,255,.30);

    background: var(--accent-soft);

    color: #79b9ff;
}

/* =========================================================
   GATHER CARDS
   ========================================================= */

.gather-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}

.gather-card {
    position: relative;

    padding: 21px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.015)
        );

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.gather-card:hover {
    transform: translateY(-5px);

    border-color: rgba(47,140,255,.22);

    background: var(--panel-hover);

    box-shadow:
        0 20px 45px rgba(0,0,0,.22);
}

.gather-card-top {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
}

.game-info {
    display: flex;
    align-items: center;

    gap: 11px;
}

.game-small-icon {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--accent-soft);

    color: #72b4ff;

    font-size: 15px;
    font-weight: 900;
}

.game-info strong {
    display: block;

    font-size: 13px;
}

.game-info span {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 10px;
}

.card-status {
    padding: 5px 7px;

    border-radius: 6px;

    background: rgba(54,211,153,.08);

    color: var(--green);

    font-size: 8px;

    font-weight: 850;

    letter-spacing: .8px;

    text-transform: uppercase;
}

.gather-title {
    margin-top: 20px;

    font-size: 16px;

    font-weight: 800;
}

.gather-meta {
    display: flex;

    gap: 16px;

    margin-top: 7px;

    color: var(--muted);

    font-size: 10px;
}

.card-progress {
    margin-top: 18px;
}

.card-progress-head {
    display: flex;
    justify-content: space-between;

    margin-bottom: 7px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 700;
}

.card-progress-head strong {
    color: #e5eaf0;
}

.card-progress .progress {
    height: 5px;
}

.gather-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-top: 19px;
    padding-top: 16px;

    border-top: 1px solid var(--border);
}

.host {
    display: flex;
    align-items: center;

    gap: 8px;

    min-width: 0;
}

.host .avatar {
    width: 27px;
    height: 27px;

    font-size: 9px;
}

.host span {
    overflow: hidden;

    color: var(--muted);

    font-size: 10px;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.join-btn {
    padding: 8px 12px;

    border: 1px solid rgba(47,140,255,.18);

    border-radius: 8px;

    background: var(--accent-soft);

    color: #73b5ff;

    font-size: 10px;
    font-weight: 800;

    transition: .2s ease;
}

.join-btn:hover {
    background: var(--accent);

    color: #fff;
}

/* =========================================================
   STEPS
   ========================================================= */

.steps {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;

    margin-top: 20px;
}

.step {
    padding: 23px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: rgba(255,255,255,.018);
}

.step-number {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--accent-soft);

    color: #72b4ff;

    font-size: 11px;
    font-weight: 850;
}

.step h3 {
    margin-top: 18px;

    font-size: 14px;
}

.step p {
    margin-top: 7px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.65;
}

/* =========================================================
   CTA
   ========================================================= */

.cta {
    position: relative;
    overflow: hidden;

    padding: 48px;

    border: 1px solid rgba(47,140,255,.18);

    border-radius: 22px;

    background:
        radial-gradient(
            circle at 90% 50%,
            rgba(47,140,255,.14),
            transparent 38%
        ),
        rgba(47,140,255,.045);
}

.cta h2 {
    font-size: 30px;

    letter-spacing: -1px;
}

.cta p {
    max-width: 620px;

    margin-top: 8px;

    color: var(--muted);

    font-size: 13px;
}

.cta .btn {
    margin-top: 24px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    border-top: 1px solid var(--border);

    background: #05070a;
}

.footer-inner {
    width: min(1240px, calc(100% - 40px));

    margin: 0 auto;

    padding: 28px 0;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;
}

.footer-brand {
    color: #fff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .8px;
}

.footer-copy {
    margin-top: 3px;

    color: var(--muted);

    font-size: 10px;
}

.footer-links {
    display: flex;

    gap: 18px;
}

.footer-links a {
    color: var(--muted);

    font-size: 10px;
    font-weight: 650;
}

.footer-links a:hover {
    color: #fff;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .main-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .lobby-preview {
        max-width: 650px;
    }

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

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

@media (max-width: 680px) {

    .header-inner,
    .hero,
    .section,
    .footer-inner {
        width: min(
            100% - 28px,
            1240px
        );
    }

    .site-header {
        height: 68px;
    }

    .brand-subtitle {
        display: none;
    }

    .header-actions .btn-secondary {
        display: none;
    }

    .hero {
        padding-top: 55px;
        padding-bottom: 35px;
    }

    .hero h1 {
        font-size:
            clamp(42px, 13vw, 62px);

        letter-spacing: -2.8px;
    }

    .hero-description {
        font-size: 14px;

        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 20px;
    }

    .lobby-preview {
        padding: 15px;

        transform: none;
    }

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

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

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

    .section {
        padding-bottom: 60px;
    }

    .section-header {
        align-items: flex-start;

        flex-direction: column;
    }

    .cta {
        padding: 30px 23px;
    }

    .cta h2 {
        font-size: 25px;
    }

    .footer-inner {
        align-items: flex-start;

        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}







/* ============================================================
   GAME ICONS
============================================================ */

.game-small-icon,
.game-icon {
    position: relative;
    flex: 0 0 auto;
    overflow: hidden;

    width: 48px;
    height: 48px;

    min-width: 48px;
    min-height: 48px;

    max-width: 48px;
    max-height: 48px;

    border-radius: 10px;
}


/* Bild niemals aus dem Icon herauswachsen lassen */

.game-small-icon img,
.game-icon img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 100%;
    max-height: 100%;

    object-fit: cover;
}


/* Fallback */

.game-icon-fallback {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 900;
}


/* ============================================================
   GAME SMALL ICON
============================================================ */

.game-small-icon {
    width: 48px;
    height: 48px;
}


/* ============================================================
   HERO / LOBBY ICON
============================================================ */

.game-icon {
    width: 56px;
    height: 56px;
}


/* ============================================================
   IMPORTANT:
   Falls irgendwo globale img-Regeln existieren
============================================================ */

.game-small-icon > img,
.game-icon > img {
    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: 100% !important;

    object-fit: cover !important;
}






.notification-btn {
    position: relative;
    min-width: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.notification-badge {
    position: absolute;
    top: -7px;
    right: -7px;

    min-width: 20px;
    height: 20px;
    padding: 0 5px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    background: #ff3b3b;
    color: #ffffff;

    font-size: 11px;
    font-weight: 800;
    line-height: 1;

    border: 2px solid var(--bg, #08080d);

    box-sizing: border-box;
}






/* ==========================================================================
   TITAN GATHER
   ADMIN DASHBOARD
========================================================================== */

.admin-page {
    padding: 48px 24px 80px;
}

.admin-container {
    max-width: 1400px;
    margin: 0 auto;
}


/* ==========================================================================
   ADMIN HEADER
========================================================================== */

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 36px;
}

.admin-header h1 {
    margin: 8px 0 10px;
    font-size: 38px;
    line-height: 1.15;
}

.admin-header p {
    margin: 0;
    opacity: .65;
}

.admin-user {
    text-align: right;
}

.admin-user strong {
    display: block;
}

.admin-role {
    display: inline-block;
    margin-top: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: rgba(255,255,255,.08);
}


/* ==========================================================================
   STATISTIKEN
========================================================================== */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 42px;
}

.admin-stat {
    padding: 24px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.admin-stat:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.16);
    background: rgba(255,255,255,.045);
}

.admin-stat-label {
    margin-bottom: 10px;
    font-size: 13px;
    opacity: .55;
}

.admin-stat-value {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}


/* ==========================================================================
   SEKTIONEN
========================================================================== */

.admin-section {
    margin-bottom: 42px;
}

.admin-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.admin-section-header h2 {
    margin: 0;
    font-size: 22px;
}

.admin-section-header p {
    margin: 5px 0 0;
    font-size: 13px;
    opacity: .55;
}


/* ==========================================================================
   ADMIN MENÜ
========================================================================== */

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

.admin-menu-card {
    display: block;
    padding: 25px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
    color: inherit;
    text-decoration: none;
    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.admin-menu-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.05);
}

.admin-menu-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 14px;

    background: rgba(255,255,255,.07);

    font-size: 22px;
}

.admin-menu-card h3 {
    margin: 0 0 7px;
    font-size: 17px;
}

.admin-menu-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    opacity: .55;
}


/* ==========================================================================
   ADMIN TABELLEN
========================================================================== */

.admin-table-wrap {
    overflow-x: auto;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;

    background: rgba(255,255,255,.015);
}

.admin-table {
    width: 100%;
    min-width: 750px;

    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 16px 18px;

    text-align: left;

    border-bottom: 1px solid rgba(255,255,255,.06);
}

.admin-table th {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .5;
}

.admin-table td {
    font-size: 14px;
}

.admin-table tr:last-child td {
    border-bottom: 0;
}


/* ==========================================================================
   STATUS
========================================================================== */

.status {
    display: inline-flex;
    align-items: center;

    padding: 5px 9px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.status-waiting {
    background: rgba(255,193,7,.12);
    color: #ffc107;
}

.status-ready {
    background: rgba(0,200,255,.12);
    color: #00c8ff;
}

.status-live {
    background: rgba(0,255,140,.12);
    color: #00ff8c;
}

.status-finished {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.65);
}


/* ==========================================================================
   ADMIN ACTIONS
========================================================================== */

.admin-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}


/* ==========================================================================
   ADMIN LINKS
========================================================================== */

.admin-page .section-link {
    color: inherit;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    opacity: .7;
    transition: opacity .2s ease;
}

.admin-page .section-link:hover {
    opacity: 1;
}


/* ==========================================================================
   RESPONSIVE
========================================================================== */

@media (max-width: 1000px) {

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

    .admin-menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 650px) {

    .admin-page {
        padding: 30px 16px 60px;
    }

    .admin-header {
        display: block;
    }

    .admin-header h1 {
        font-size: 30px;
    }

    .admin-user {
        margin-top: 20px;
        text-align: left;
    }

    .admin-section-header {
        display: block;
    }

    .admin-section-header .section-link {
        display: inline-block;
        margin-top: 12px;
    }

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

    .admin-menu-grid {
        grid-template-columns: 1fr;
    }

    .admin-stat {
        padding: 20px;
    }

    .admin-menu-card {
        padding: 22px;
    }

}









