:root {
    --bg-void: #040404;
    --bg-deep: rgba(8, 8, 8, 0.82);
    --bg-panel: rgba(18, 18, 18, 0.84);
    --bg-panel-strong: rgba(24, 24, 24, 0.92);
    --bg-nav: rgba(8, 8, 8, 0.88);

    --text-main: #f5efe8;
    --text-soft: #d1c4b6;
    --text-muted: #9f9489;

    --accent-red: #9f1414;
    --accent-red-bright: #d12626;
    --accent-red-dark: #6f0d0d;
    --accent-gold: #c6a56a;
    --accent-ember: rgba(209, 38, 38, 0.16);

    --border-soft: rgba(209, 38, 38, 0.22);
    --border-strong: rgba(209, 38, 38, 0.36);

    --success: #73d873;
    --warning: #ffbe55;
    --danger: #ff6a6a;

    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.28);
    --shadow-panel: 0 16px 40px rgba(0, 0, 0, 0.42);
    --shadow-glow: 0 0 22px rgba(209, 38, 38, 0.12);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;

    --max-width: 1320px;
    --transition: 0.24s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-main);
    background:
        linear-gradient(rgba(3, 3, 3, 0.70), rgba(3, 3, 3, 0.92)),
        radial-gradient(circle at top center, rgba(209, 38, 38, 0.16), transparent 36%),
        url("../img/website_bg.png") center center / cover no-repeat fixed,
        var(--bg-void);
    min-height: 100vh;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    display: block;
}

/* =========================
   GLOBAL WRAPPERS
========================= */
.hero,
.section-shell,
.status-container,
.rules-container,
.info,
.footer-inner {
    width: min(calc(100% - 32px), var(--max-width));
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    padding: 14px 20px;
    background: var(--bg-nav);
    border-bottom: 1px solid rgba(209, 38, 38, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* logo stays top-left */
.logo {
    display: flex;
    align-items: center;
    z-index: 2;
    flex: 0 0 auto;
}

.logo img {
    height: 44px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(255, 50, 50, 0.4));
    transition: transform 0.2s ease, filter 0.2s ease;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 14px rgba(255, 50, 50, 0.7));
}

/* nav centered across page */
.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.nav-links a {
    padding: 10px 18px;
    border-radius: 999px;

    font-weight: 800;
    letter-spacing: 0.04em;
    font-size: 14px;

    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;

    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.nav-links a:hover {
    color: #fff;

    background: rgba(209, 38, 38, 0.12);
    border-color: rgba(209, 38, 38, 0.3);

    transform: translateY(-2px);

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.4),
        0 0 10px rgba(209, 38, 38, 0.25);
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: #fff;
    background: rgba(209, 38, 38, 0.12);
    border-color: var(--border-soft);
    transform: translateY(-1px);
}

/* hide logo only on homepage if you still want that */
body.index .logo {
    display: none;
}

/* =========================
   HERO
========================= */
.hero {
    min-height: 76vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 90px 24px 70px;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 12% 10% auto 10%;
    height: 240px;
    background: radial-gradient(circle, rgba(209, 38, 38, 0.10), transparent 70%);
    filter: blur(30px);
    pointer-events: none;
}

.hero-title-image {
    position: relative;
    z-index: 1;
    width: min(800px, 94%);
    margin: 0 auto 18px;
    filter:
        drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55))
        drop-shadow(0 0 24px rgba(209, 38, 38, 0.10));
}

.hero-subtitle {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: var(--text-soft);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero-tagline {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    font-size: 0.95rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 800;
}

/* =========================
   BUTTONS
========================= */
.buttons {
    position: relative;
    z-index: 1;
    margin-top: 34px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 190px;
    padding: 14px 24px;
    border-radius: 999px;

    color: #fff;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    background: linear-gradient(180deg, #c42424 0%, #7d1010 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 10px 24px rgba(125, 16, 16, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.10);

    transition:
        transform var(--transition),
        filter var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.06);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
        0 14px 30px rgba(125, 16, 16, 0.42),
        0 0 18px rgba(209, 38, 38, 0.18);
}

.btn.btn-secondary {
    background: linear-gradient(180deg, rgba(40, 40, 40, 0.95), rgba(22, 22, 22, 0.96));
    color: #f4ebe3;
    border-color: rgba(198, 165, 106, 0.22);
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus-visible {
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.36),
        0 0 14px rgba(198, 165, 106, 0.12);
}

/* =========================
   FEATURE GRID / CARDS
========================= */
.info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    padding: 0 24px 72px;
}

.card,
.status-box,
.rule-card,
.feature-banner {
    background: linear-gradient(180deg, var(--bg-panel), var(--bg-panel-strong));
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-panel);
    backdrop-filter: blur(6px);
}

.card {
    padding: 26px;
    position: relative;
    overflow: hidden;
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-red-bright), transparent);
    opacity: 0.7;
}

.card:hover,
.card:focus-within {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.46),
        var(--shadow-glow);
}

.card h2 {
    margin: 0 0 12px;
    font-size: 1.3rem;
    color: #fff1f1;
}

.card p,
.card li {
    color: var(--text-soft);
}

.card ul {
    margin: 0;
    padding-left: 20px;
}

/* =========================
   FEATURE BANNER / SPLIT SECTIONS
========================= */
.section-shell {
    padding: 0 24px 30px;
}

.feature-banner {
    padding: 28px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 26px;
    align-items: center;
    margin-bottom: 28px;
}

.feature-banner h2 {
    margin: 0 0 10px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff1f1;
}

.feature-banner p {
    margin: 0;
    color: var(--text-soft);
}

.feature-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.feature-badge {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(209, 38, 38, 0.10);
    border: 1px solid rgba(209, 38, 38, 0.18);
    color: #f2e7df;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.feature-side {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.feature-side h3 {
    margin: 0 0 10px;
    color: var(--accent-gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.feature-side p {
    color: var(--text-soft);
    margin: 0;
}

/* =========================
   STATUS PAGE
========================= */
.status-container,
.rules-container {
    padding: 72px 24px 84px;
}

.status-container h1,
.rules-container h1 {
    margin: 0 0 28px;
    text-align: center;
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff3f3;
    text-shadow: 0 0 12px rgba(209, 38, 38, 0.10);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.status-box {
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.92), rgba(10, 10, 10, 0.97));
}

.status-box::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-red-bright), transparent);
    opacity: 0.75;
}

.status-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #ff4444, transparent);
    opacity: 0.22;
}

.status-box:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    box-shadow:
        0 0 15px rgba(255, 255, 255, 0.05),
        0 18px 42px rgba(0, 0, 0, 0.46),
        var(--shadow-glow);
}

.status-box h3 {
    margin: 0 0 10px;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.status-box p {
    margin: 0;
    font-size: 1.34rem;
    font-weight: 800;
    color: #fff;
    word-break: break-word;
}

.online {
    color: var(--success) !important;
    text-shadow: 0 0 10px rgba(115, 216, 115, 0.16);
}

.offline {
    color: var(--danger) !important;
    text-shadow: 0 0 10px rgba(255, 106, 106, 0.14);
}

.stat-good {
    color: var(--success) !important;
}

.stat-warn {
    color: var(--warning) !important;
}

.stat-bad {
    color: var(--danger) !important;
}

.meta-text,
small {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* progress bars */
.metric-bar {
    margin-top: 10px;
    width: 100%;
    height: 8px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.metric-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff4444, #ff8844);
    box-shadow: 0 0 8px rgba(255, 80, 80, 0.42);
    transition: width 0.4s ease;
}

/* =========================
   RULES PAGE
========================= */
.rule-card {
    padding: 24px 22px;
    margin-bottom: 18px;
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.rule-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.44),
        var(--shadow-glow);
}

.rule-card h3 {
    margin: 0 0 10px;
    color: #fff1f1;
    font-size: 1.18rem;
}

.rule-card p {
    margin: 0;
    color: var(--text-soft);
}

/* =========================
   FOOTER
========================= */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(0, 0, 0, 0.18);
    margin-top: 10px;
}

.footer-inner {
    padding: 18px 24px 30px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* =========================
   HELPERS
========================= */
.text-center {
    text-align: center;
}

.panel-note {
    margin: 20px auto 0;
    max-width: 900px;
    padding: 14px 16px;
    background: rgba(42, 17, 17, 0.88);
    border: 1px solid rgba(122, 31, 31, 0.9);
    border-radius: var(--radius-md);
    color: #ffbaba;
    box-shadow: var(--shadow-soft);
}

/* =========================
   STATUS HERO / CONNECTED DASHBOARD
========================= */
.hero-panel {
    max-width: 1120px;
    margin: 0 auto 24px auto;
    padding: 6px 0 0;
}

.hero-status {
    text-align: center;
    padding: 24px 24px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.94), rgba(10, 10, 10, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        0 0 30px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.hero-status::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-red-bright), transparent);
    opacity: 0.75;
}

.hero-status-label {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 800;
    margin-bottom: 8px;
}

.hero-status h2 {
    margin: 0 0 8px 0;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    letter-spacing: 0.08em;
    color: #fff5f5;
}

.hero-status p {
    margin: 0 0 8px 0;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 800;
}

.hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: var(--text-soft);
    opacity: 0.85;
}

.online-glow {
    box-shadow:
        0 0 20px rgba(80, 255, 120, 0.14),
        0 0 32px rgba(0, 0, 0, 0.55);
}

.offline-glow {
    box-shadow:
        0 0 20px rgba(255, 80, 80, 0.16),
        0 0 32px rgba(0, 0, 0, 0.55);
}

.dot-sep {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff4444;
    box-shadow: 0 0 6px rgba(255, 68, 68, 0.8);
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.4); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}

.status-section-title {
    margin: 0 0 14px;
    padding-left: 2px;
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 800;
}

.status-meta-row {
    margin-top: 22px;
    opacity: 0.78;
    font-size: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* =========================
   REFINED STATUS DASHBOARD LAYOUT
========================= */
.dashboard-shell {
    max-width: 1220px;
    margin: 0 auto;
    padding: 22px;
    background: rgba(8, 8, 8, 0.46);
    border: 1px solid rgba(209, 38, 38, 0.12);
    border-radius: 26px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(8px);
}

.dashboard-main {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 22px;
    margin-bottom: 26px;
}

.dashboard-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dashboard-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-section {
    margin-top: 20px;
}

.quick-card {
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(20,20,20,0.94), rgba(10,10,10,0.98));
    border: 1px solid rgba(209, 38, 38, 0.18);
    box-shadow: var(--shadow-panel);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.quick-card:hover {
    transform: translateY(-2px);
    border-color: rgba(209, 38, 38, 0.32);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.42),
        var(--shadow-glow);
}

.quick-card h3 {
    margin: 0 0 8px;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.quick-card p {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
}

.quick-card .meta-text,
.quick-card small {
    display: inline-block;
    margin-top: 6px;
}

.chart-card {
    min-height: 360px;
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(20,20,20,0.94), rgba(10,10,10,0.98));
    border: 1px solid rgba(209, 38, 38, 0.18);
    box-shadow: var(--shadow-panel);
}

.chart-card h2 {
    margin-bottom: 14px;
}

.status-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.activity-feed {
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(15,15,15,0.94), rgba(10,10,10,0.98));
    border: 1px solid rgba(209, 38, 38, 0.18);
    box-shadow: var(--shadow-panel);
}

.activity-feed h3 {
    margin: 0 0 12px;
    color: #fff1f1;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.activity-item {
    position: relative;
    padding-left: 12px;
    font-size: 0.95rem;
    color: var(--text-soft);
    margin-bottom: 8px;
    opacity: 0.92;
}

.activity-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: #ff4444;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 68, 68, 0.6);
}

/* =========================
   IMAGE TITLE
========================= */
.status-title {
    text-align: center;
    margin-bottom: 24px;
}

.status-title img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: inline-block;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 6px rgba(255, 50, 50, 0.3)); }
    50% { filter: drop-shadow(0 0 14px rgba(255, 50, 50, 0.6)); }
    100% { filter: drop-shadow(0 0 6px rgba(255, 50, 50, 0.3)); }
}

/* =========================
   RESPONSIVE
========================= */
@media (min-width: 900px) {
    .logo img {
        height: 52px;
    }
}

@media (max-width: 1100px) {
    .dashboard-main {
        grid-template-columns: 1fr;
    }

    .dashboard-left {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 860px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
    }

    .nav-links {
        position: static;
        left: auto;
        transform: none;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero {
        min-height: 66vh;
        padding-top: 72px;
    }
}

@media (max-width: 700px) {
    .dashboard-shell {
        padding: 16px;
    }

    .dashboard-left {
        grid-template-columns: 1fr;
    }

    .status-grid-four {
        grid-template-columns: 1fr;
    }

    .chart-card {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .hero-status {
        padding: 24px 18px;
    }

    .hero-meta {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .status-section-title {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .hero,
    .section-shell,
    .status-container,
    .rules-container,
    .info,
    .footer-inner {
        width: min(calc(100% - 20px), var(--max-width));
    }

    .btn {
        width: 100%;
    }

    .status-box p {
        font-size: 1.12rem;
    }

    .card,
    .status-box,
    .rule-card,
    .feature-banner {
        border-radius: 16px;
    }
}

canvas {
    width: 100% !important;
    height: 320px !important;
    max-width: 100%;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    padding: 14px 20px;
    min-height: 84px;
    background: var(--bg-nav);
    border-bottom: 1px solid rgba(209, 38, 38, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.nav-links a.active {
    color: #fff;

    background: linear-gradient(
        180deg,
        rgba(209, 38, 38, 0.28),
        rgba(125, 16, 16, 0.35)
    );

    border-color: rgba(209, 38, 38, 0.5);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.45),
        0 0 14px rgba(209, 38, 38, 0.35);
}

.nav-links a:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

.nav-links a.active {
    animation: navPulse 2.5s infinite ease-in-out;
}

@keyframes navPulse {
    0% { box-shadow: 0 0 10px rgba(209, 38, 38, 0.25); }
    50% { box-shadow: 0 0 18px rgba(209, 38, 38, 0.5); }
    100% { box-shadow: 0 0 10px rgba(209, 38, 38, 0.25); }
}

/* =========================
   GETTING STARTED PAGE
========================= */

.getting-started-card {
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin-bottom: 14px;

    background: linear-gradient(180deg, rgba(209, 38, 38, 0.20), rgba(125, 16, 16, 0.30));
    border: 1px solid rgba(209, 38, 38, 0.32);
    color: #fff3f3;
    font-weight: 900;
    letter-spacing: 0.08em;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.30),
        0 0 12px rgba(209, 38, 38, 0.14);
}

.copy-box {
    margin-top: 18px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(209, 38, 38, 0.14);
}

.copy-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-weight: 800;
}

.copy-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    word-break: break-word;
}

.copy-btn {
    min-width: 160px;
}

.getting-started-buttons {
    margin-top: 16px;
    justify-content: flex-start;
}

@media (max-width: 700px) {
    .copy-btn {
        width: 100%;
    }
}

/* =========================
   Getting Started - Mobile Optimization
   ========================= */

.getting-started-card {
    position: relative;
    padding: 24px;
    overflow: hidden;
}

.getting-started-card h2 {
    margin-top: 10px;
    margin-bottom: 12px;
    line-height: 1.25;
}

.getting-started-card p {
    line-height: 1.7;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.getting-started-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.getting-started-buttons .btn {
    min-width: 200px;
}

.copy-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
}

.copy-label {
    width: 100%;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.75;
}

.copy-value {
    flex: 1 1 260px;
    word-break: break-word;
    font-weight: 600;
    font-size: 1rem;
}

.copy-box .btn {
    flex: 0 0 auto;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.dot-sep {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex: 0 0 6px;
}

.activity-feed {
    margin-top: 18px;
}

.activity-feed h3 {
    margin-bottom: 12px;
}

.activity-item {
    line-height: 1.6;
}

.feature-banner {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
    align-items: start;
}

.feature-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.status-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* =========================
   Tablet
   ========================= */
@media (max-width: 1024px) {
    .feature-banner {
        grid-template-columns: 1fr;
    }

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

/* =========================
   Mobile
   ========================= */
@media (max-width: 768px) {
    .status-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .dashboard-shell {
        padding: 0;
    }

    .hero-status {
        padding: 22px 18px;
    }

    .hero-status h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-status-label {
        font-size: 0.8rem;
    }

    .hero-meta {
        gap: 8px;
        font-size: 0.9rem;
    }

    .dot-sep {
        display: none;
    }

    .status-section-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .getting-started-card {
        padding: 18px;
        border-radius: 18px;
    }

    .getting-started-card h2 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .getting-started-card p {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .getting-started-buttons {
        flex-direction: column;
    }

    .getting-started-buttons .btn,
    .copy-box .btn {
        width: 100%;
        min-width: 0;
    }

    .copy-box {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .copy-value {
        width: 100%;
        flex: 1 1 auto;
        font-size: 0.95rem;
    }

    .feature-banner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-side {
        width: 100%;
    }

    .status-grid-four {
        grid-template-columns: 1fr;
    }

    .status-box {
        padding: 18px;
    }

    .activity-feed {
        padding: 18px;
    }

    .activity-item {
        font-size: 0.96rem;
    }

    .status-title img {
        max-width: 220px;
        width: 100%;
        height: auto;
    }
}

/* =========================
   Small phones
   ========================= */
@media (max-width: 480px) {
    .hero-status h2 {
        font-size: 1.3rem;
    }

    .getting-started-card {
        padding: 16px;
    }

    .getting-started-card h2 {
        font-size: 1.08rem;
    }

    .getting-started-card p,
    .activity-item,
    .copy-value {
        font-size: 0.92rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .feature-badge {
        width: 100%;
        text-align: center;
    }
}

/* Center ONLY buttons inside containers */
.buttons .btn,
.copy-box .btn {
    display: block;
    margin: 10px auto 0 auto;
}

.hero-subfeature {
    margin-top: 12px;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4a85f;
    opacity: 0.92;
}

.rules-title-image {
    position: relative;
    z-index: 1;
    display: block;
    width: min(800px, 94%);
    margin: 0 auto 18px;
    filter:
        drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55))
        drop-shadow(0 0 24px rgba(209, 38, 38, 0.10));
    animation: titleGlow 3s ease-in-out infinite;
}

.status-title {
    text-align: center;
    margin-bottom: 24px;
}

.status-title img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: inline-block;
    animation: titleGlow 3s ease-in-out infinite;
}

.rules-container {
    padding-top: 40px;
}

.rules-container::before {
    content: "";
    position: absolute;
    inset: 40px 10% auto 10%;
    height: 240px;
    background: radial-gradient(circle, rgba(209, 38, 38, 0.10), transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

/* =========================
   Coming Soon Page
========================= */

.coming-soon-hero {
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 80px;
}

.coming-soon-badge {
    display: inline-block;
    margin-top: 18px;
    margin-bottom: 22px;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffd6d6;
    background: rgba(120, 20, 20, 0.22);
    border: 1px solid rgba(255, 90, 90, 0.35);
    box-shadow:
        0 0 12px rgba(255, 60, 60, 0.18),
        0 0 28px rgba(180, 20, 20, 0.12);
    backdrop-filter: blur(6px);
}

.coming-soon-panel {
    width: 100%;
    max-width: 840px;
    margin-top: 36px;
    padding: 36px 30px;
    border-radius: 22px;
    background: rgba(12, 12, 18, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 30px rgba(0, 0, 0, 0.35),
        0 0 18px rgba(120, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.coming-soon-panel h2 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 70, 70, 0.18);
}

.coming-soon-panel p {
    margin: 0 auto 26px;
    max-width: 680px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #f3f3f3;
    box-shadow: none;
}

.btn-secondary:hover {
    border-color: rgba(255, 90, 90, 0.35);
    box-shadow: 0 0 16px rgba(255, 60, 60, 0.12);
}

@media (max-width: 768px) {
    .coming-soon-hero {
        padding: 110px 18px 60px;
    }

    .coming-soon-panel {
        padding: 28px 20px;
        margin-top: 28px;
    }

    .coming-soon-panel h2 {
        font-size: 1.55rem;
    }

    .coming-soon-panel p {
        font-size: 1rem;
    }

    .coming-soon-badge {
        font-size: 0.82rem;
        padding: 9px 18px;
    }
}

.footer-links {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.2s ease;
}

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

.footer-separator {
    color: #555;
}

.footer-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: #666;
    margin-top: 10px;
    opacity: 0.8;
}

}