/* ============================================================
   NIZMO'S WOW SERVER - SHARED SITE STYLESHEET
   Homepage + Downloads
   ============================================================ */

* {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            color: #eaf3ff;
            font-family: Arial, sans-serif;
            background:
                radial-gradient(circle at top, rgba(48, 90, 140, 0.35) 0%, rgba(7, 19, 33, 0.15) 30%, rgba(3, 8, 14, 0.96) 75%),
                linear-gradient(180deg, #08111c 0%, #040b13 100%);
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background:
                linear-gradient(to bottom, rgba(130, 180, 255, 0.08), transparent 25%),
                radial-gradient(circle at 50% 0%, rgba(89, 153, 255, 0.12), transparent 35%);
            z-index: 0;
        }

        a {
            color: inherit;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 20;
            border-bottom: 1px solid rgba(120, 170, 215, 0.18);
            background: rgba(4, 10, 18, 0.86);
            backdrop-filter: blur(10px);
        }

        .nav-wrap {
            width: min(1200px, 92%);
            margin: 0 auto;
            padding: 8px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }
		
		header {
    min-height: 82px;
}

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            color: #e5bd5b;
            text-transform: uppercase;
            text-shadow: 0 0 18px rgba(229, 189, 91, 0.15);
        }

        .nav-links {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
        }

        .nav-links a {
            text-decoration: none;
            color: #c2d9f1;
            font-size: 0.98rem;
            transition: 0.2s ease;
        }

        .nav-links a:hover {
            color: #ffffff;
        }

        main {
            position: relative;
            z-index: 1;
        }

        .container {
            width: min(1200px, 92%);
            margin: 0 auto;
        }

        .hero {
    position: relative;
    padding: 120px 0 110px;
    text-align: center;
    background:
        linear-gradient(
            180deg,
            rgba(2, 8, 15, 0.20) 0%,
            rgba(2, 8, 15, 0.45) 55%,
            rgba(3, 9, 16, 0.96) 100%
        ),
        url("../assets/wrath-hero.png") center 38% / cover no-repeat;
    border-bottom: 1px solid rgba(118, 167, 213, 0.18);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at center,
            rgba(45, 105, 165, 0.10),
            rgba(3, 8, 15, 0.15) 45%,
            rgba(2, 7, 13, 0.55) 100%
        );
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

        .eyebrow {
            display: inline-block;
            margin-bottom: 14px;
            padding: 7px 14px;
            border: 1px solid rgba(105, 157, 206, 0.35);
            border-radius: 999px;
            background: rgba(11, 24, 39, 0.75);
            color: #9fc2e6;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .hero h1 {
            margin: 0;
            font-size: clamp(3rem, 6vw, 5.6rem);
            line-height: 1.02;
            color: #f0c45b;
            text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.75),
    0 0 24px rgba(240, 196, 91, 0.22);
        }

        .hero p {
            width: min(760px, 100%);
            margin: 22px auto 0;
            color: #aac5dd;
            font-size: 1.13rem;
            line-height: 1.7;
			text-shadow: 0 2px 4px rgba(0, 0, 0, 0.85);
        }

        .hero-buttons {
            margin-top: 32px;
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .button {
            display: inline-block;
            padding: 14px 24px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            transition: 0.2s ease;
        }

        .button.primary {
            background: linear-gradient(180deg, #deb04a 0%, #b9882d 100%);
            color: #08111c;
            box-shadow: 0 10px 30px rgba(191, 142, 43, 0.18);
        }

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

        .button.secondary {
            border: 1px solid rgba(107, 151, 190, 0.5);
            background: rgba(8, 19, 31, 0.6);
            color: #d6e8fb;
        }

        .button.secondary:hover {
            background: rgba(12, 28, 45, 0.9);
        }

        .panel {
            background: linear-gradient(180deg, rgba(13, 28, 43, 0.94) 0%, rgba(9, 21, 34, 0.92) 100%);
            border: 1px solid rgba(84, 122, 158, 0.55);
            border-radius: 18px;
            box-shadow:
                0 0 0 1px rgba(255,255,255,0.02) inset,
                0 0 45px rgba(44, 105, 171, 0.12);
        }

        .section {
            padding: 22px;
        }

        .section + .section-block {
            margin-top: 26px;
        }

        .section-title {
            margin: 0 0 10px;
            color: #f0c45b;
            font-size: 1.9rem;
        }

        .section-subtitle {
            margin: 0 0 24px;
            color: #9ebad4;
            line-height: 1.7;
        }

        .status-section {
            margin-top: 10px;
        }

        .status-header {
            text-align: center;
            padding: 8px 0 26px;
        }

        .status-header h2 {
            margin: 0 0 8px;
            font-size: 2rem;
        }

        #realm-status {
            font-size: 1.2rem;
            font-weight: 700;
            color: #9ab0c2;
        }

        #realm-status.online {
            color: #63e18f;
        }

        #realm-status.offline {
            color: #f06a6a;
        }

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

        .stat {
            padding: 24px 20px;
            text-align: center;
            border-radius: 14px;
            background: linear-gradient(180deg, rgba(6, 18, 29, 0.95) 0%, rgba(8, 22, 35, 0.8) 100%);
            border: 1px solid rgba(92, 134, 171, 0.28);
        }

        .stat-value {
            display: block;
            margin-bottom: 8px;
            font-size: 2.4rem;
            font-weight: 800;
            color: #f0c45b;
        }

        .stat-label {
            color: #b1c8dd;
            font-size: 1rem;
        }

        .realm-meta {
            margin-top: 24px;
            text-align: center;
            color: #a4bdd3;
            line-height: 1.8;
        }

        .two-col {
            margin-top: 28px;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 26px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .feature-card,
        .news-card,
        .mini-card,
        .step-card {
            padding: 18px;
            border-radius: 14px;
            background: rgba(7, 19, 31, 0.72);
            border: 1px solid rgba(88, 130, 167, 0.22);
        }

        .feature-card h3,
        .news-card h3,
        .mini-card h3,
        .step-card h3 {
            margin-top: 0;
            margin-bottom: 10px;
            color: #e8eef8;
        }

        .feature-card p,
        .news-card p,
        .mini-card p,
        .step-card p {
            margin: 0;
            color: #a9c0d6;
            line-height: 1.65;
        }

        .feature-kicker {
            display: inline-block;
            margin-bottom: 10px;
            font-size: 0.8rem;
            color: #f0c45b;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .section-block {
            margin-top: 32px;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .step-number {
            display: inline-flex;
            width: 34px;
            height: 34px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 12px;
            background: linear-gradient(180deg, #ddb14d 0%, #b8872d 100%);
            color: #08111c;
            font-weight: 800;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .footer {
            margin-top: 44px;
            padding: 28px 0 60px;
            text-align: center;
            color: #7f9ab3;
            font-size: 0.95rem;
        }

        .small-note {
            color: #87a2bb;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .create-box {
            text-align: center;
        }

        .create-box h3 {
            margin-top: 0;
            color: #f0c45b;
            font-size: 1.6rem;
        }

        .pill {
            display: inline-block;
            margin-top: 16px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(18, 39, 58, 0.85);
            border: 1px solid rgba(104, 149, 187, 0.32);
            color: #bed6ec;
            font-size: 0.9rem;
        }

        @media (max-width: 980px) {
            .two-col,
            .steps,
            .stats,
            .news-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 760px) {
            .nav-wrap {
                flex-direction: column;
                align-items: flex-start;
            }

            .hero {
                padding: 70px 0 50px;
            }

            .hero h1 {
                font-size: 2.7rem;
            }

            .nav-links {
                gap: 14px;
            }
			.logo img {
    width: 210px;
}
        }
		/* =========================================
   WRATH / WOW UI THEME OVERRIDES
   ========================================= */

/* More textured world background */
body {
    background:
        radial-gradient(circle at 50% 0%, rgba(39, 86, 135, 0.20), transparent 34%),
        repeating-linear-gradient(
            135deg,
            rgba(255,255,255,0.008) 0px,
            rgba(255,255,255,0.008) 1px,
            transparent 1px,
            transparent 5px
        ),
        linear-gradient(180deg, #050d16 0%, #02070c 100%);
}

/* Dark fantasy top navigation */
header {
    border-top: 1px solid rgba(202, 158, 66, 0.42);
    border-bottom: 2px solid rgba(70, 113, 151, 0.42);
    background:
        linear-gradient(
            180deg,
            rgba(6, 14, 23, 0.97),
            rgba(2, 8, 14, 0.96)
        );
    box-shadow:
        0 3px 18px rgba(0,0,0,0.7),
        0 1px 0 rgba(128, 181, 226, 0.10) inset;
}

/* More fantasy title treatment */
.logo,
.hero h1,
.section-title,
.status-header h2,
.create-box h3 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.02em;
}

/* Hero bottom ornamental transition */
.hero {
    border-bottom: 0;
}

.hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(900px, 85%);
    height: 3px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(101, 157, 208, 0.35) 15%,
            #b58b39 48%,
            #d6b45e 50%,
            #b58b39 52%,
            rgba(101, 157, 208, 0.35) 85%,
            transparent
        );
    box-shadow:
        0 0 13px rgba(97, 160, 220, 0.35);
}

/* Main WoW-style framed panels */
.panel {
    position: relative;
    border-radius: 5px;

    border:
        1px solid rgba(105, 151, 190, 0.65);

    background:
        linear-gradient(
            145deg,
            rgba(14, 30, 45, 0.97),
            rgba(5, 16, 27, 0.98)
        );

    box-shadow:
        0 12px 30px rgba(0,0,0,0.50),
        0 0 0 1px rgba(0,0,0,0.90),
        0 0 0 3px rgba(62, 88, 111, 0.22),
        inset 0 0 35px rgba(51, 110, 164, 0.08),
        inset 0 1px 0 rgba(210, 232, 248, 0.08);

    clip-path: polygon(
        12px 0,
        calc(100% - 12px) 0,
        100% 12px,
        100% calc(100% - 12px),
        calc(100% - 12px) 100%,
        12px 100%,
        0 calc(100% - 12px),
        0 12px
    );
}

/* Gold + steel line inside each main panel */
.panel::before {
    content: "";
    position: absolute;
    inset: 5px;
    pointer-events: none;

    border: 1px solid rgba(184, 142, 61, 0.18);

    clip-path: polygon(
        9px 0,
        calc(100% - 9px) 0,
        100% 9px,
        100% calc(100% - 9px),
        calc(100% - 9px) 100%,
        9px 100%,
        0 calc(100% - 9px),
        0 9px
    );
}

/* Section headings */
.section-title {
    position: relative;
    padding-bottom: 12px;
    color: #e5b94e;
    text-shadow:
        0 2px 2px #000,
        0 0 12px rgba(229, 185, 78, 0.18);
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 180px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            #d4aa4d,
            rgba(79, 137, 187, 0.55),
            transparent
        );
}

/* Status heading gets central ornament line */
.status-header {
    position: relative;
}

.status-header::after {
    content: "";
    display: block;
    width: 220px;
    height: 1px;
    margin: 16px auto 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(195, 151, 62, 0.8),
            rgba(117, 180, 230, 0.8),
            rgba(195, 151, 62, 0.8),
            transparent
        );
}

/* Inner stat / feature panels */
.stat,
.feature-card,
.news-card,
.mini-card,
.step-card {
    position: relative;
    border-radius: 4px;

    background:
        linear-gradient(
            180deg,
            rgba(5, 17, 28, 0.95),
            rgba(3, 12, 21, 0.96)
        );

    border: 1px solid rgba(80, 126, 166, 0.34);

    box-shadow:
        inset 0 0 20px rgba(72, 131, 180, 0.05),
        0 4px 10px rgba(0,0,0,0.24);

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

/* WoW-ish hover effect */
.feature-card:hover,
.news-card:hover,
.step-card:hover,
.stat:hover {
    transform: translateY(-2px);

    border-color: rgba(183, 143, 62, 0.72);

    box-shadow:
        inset 0 0 24px rgba(70, 136, 190, 0.08),
        0 8px 20px rgba(0,0,0,0.32),
        0 0 12px rgba(178, 137, 55, 0.08);
}

/* Gold stat values */
.stat-value {
    font-family: Georgia, "Times New Roman", serif;

    text-shadow:
        0 2px 3px rgba(0,0,0,0.8),
        0 0 13px rgba(238, 188, 73, 0.15);
}

/* More Warcraft-looking buttons */
.button {
    position: relative;
    border-radius: 3px;
    letter-spacing: 0.02em;

    border: 1px solid rgba(227, 189, 93, 0.72);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.20),
        inset 0 -2px 5px rgba(0,0,0,0.38),
        0 5px 15px rgba(0,0,0,0.35);
}

.button.primary {
    background:
        linear-gradient(
            180deg,
            #e0b64f 0%,
            #bd892b 48%,
            #8c5e18 100%
        );

    color: #100c05;

    text-shadow:
        0 1px rgba(255,255,255,0.20);
}

.button.primary:hover {
    background:
        linear-gradient(
            180deg,
            #f0cb68,
            #c99432 52%,
            #96651c
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.28),
        0 0 18px rgba(224, 177, 67, 0.25);
}

.button.secondary {
    background:
        linear-gradient(
            180deg,
            rgba(20, 46, 68, 0.96),
            rgba(7, 22, 36, 0.98)
        );

    border-color: rgba(95, 153, 203, 0.65);

    color: #d9ecff;
}

.button.secondary:hover {
    border-color: rgba(174, 210, 239, 0.85);

    box-shadow:
        0 0 14px rgba(91, 166, 224, 0.18);
}

/* Navbar hover feels more game-menu-like */
.nav-links a {
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;

    width: 0;
    height: 1px;

    background: #d2aa50;

    transition: 0.2s ease;
}

.nav-links a:hover::after {
    left: 0;
    width: 100%;
}

/* Less empty space between hero and status */
.status-section {
    margin-top: -12px;
}

/* Give feature kicker a more game UI feel */
.feature-kicker {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: bold;
    color: #d8ad49;
}

/* Footer separator */
.footer {
    border-top: 1px solid rgba(95, 133, 166, 0.20);
    margin-top: 60px;
}
/* =========================================
   WRATH UI PASS 2
   ========================================= */

/* Atmospheric frost texture over the page */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(103, 177, 230, 0.08),
            transparent 40%
        ),
        linear-gradient(
            90deg,
            rgba(109, 164, 211, 0.025),
            transparent 15%,
            transparent 85%,
            rgba(109, 164, 211, 0.025)
        );
}

/* Stronger top bar */
header {
    position: sticky;
    top: 0;

    background:
        linear-gradient(
            180deg,
            rgba(8, 17, 27, 0.99) 0%,
            rgba(2, 8, 14, 0.98) 100%
        );

    border-top: 2px solid rgba(186, 143, 55, 0.50);
    border-bottom: 1px solid rgba(103, 164, 212, 0.42);

    box-shadow:
        0 4px 22px rgba(0, 0, 0, 0.72),
        inset 0 -1px 0 rgba(170, 210, 242, 0.05);
}

/* Realm title in nav */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
}

.logo img {
    display: block;
    width: 260px;
    max-width: 100%;
    height: auto;

    filter:
        drop-shadow(0 3px 4px rgba(0, 0, 0, 0.85))
        drop-shadow(0 0 10px rgba(76, 159, 222, 0.18));

    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.logo:hover img {
    transform: scale(1.02);

    filter:
        drop-shadow(0 3px 4px rgba(0, 0, 0, 0.85))
        drop-shadow(0 0 14px rgba(91, 178, 238, 0.30));
}

/* Hero title becomes more like a game title */
.hero h1 {
    position: relative;

    display: inline-block;

    padding: 0 34px;

    color: #f0c55c;

    text-shadow:
        0 3px 4px rgba(0,0,0,0.9),
        0 0 25px rgba(236, 187, 64, 0.18),
        0 0 50px rgba(80, 146, 204, 0.10);
}

/* Decorative blades around the hero title */
.hero h1::before,
.hero h1::after {
    content: "";

    position: absolute;
    top: 52%;

    width: 65px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(119, 181, 228, 0.55),
            rgba(216, 172, 76, 0.75)
        );
}

.hero h1::before {
    right: 100%;
}

.hero h1::after {
    left: 100%;

    transform: rotate(180deg);
}

/* Frost glow under hero copy */
.hero p {
    text-shadow:
        0 2px 4px rgba(0,0,0,0.95),
        0 0 12px rgba(76, 140, 198, 0.16);
}

/* Major panels get stronger frame edges */
.panel {
    overflow: hidden;

    border: 1px solid rgba(103, 154, 196, 0.58);

    box-shadow:
        0 14px 36px rgba(0,0,0,0.52),
        0 0 0 1px rgba(0,0,0,0.95),
        0 0 0 3px rgba(61, 91, 117, 0.16),
        inset 0 0 40px rgba(54, 117, 171, 0.06),
        inset 0 1px 0 rgba(214, 235, 250, 0.08);
}

/* Top frost rim */
.panel::after {
    content: "";

    position: absolute;

    left: 12%;
    right: 12%;
    top: 0;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(104, 173, 226, 0.50),
            rgba(221, 181, 83, 0.42),
            rgba(104, 173, 226, 0.50),
            transparent
        );

    box-shadow:
        0 0 9px rgba(90, 166, 222, 0.18);

    pointer-events: none;
}

/* Corner armor effect */
.panel .section-title::before {
    content: "◆";

    margin-right: 9px;

    color: #78acd2;

    font-size: 0.65em;

    vertical-align: middle;

    text-shadow:
        0 0 10px rgba(95, 177, 231, 0.40);
}

/* Status panel gets stronger identity */
.status-header h2 {
    color: #ecf4ff;

    text-shadow:
        0 2px 2px #000,
        0 0 12px rgba(100, 166, 216, 0.18);
}

/* Each stat gets a metallic top highlight */
.stat::before,
.feature-card::before,
.news-card::before,
.step-card::before {
    content: "";

    position: absolute;

    left: 10px;
    right: 10px;
    top: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(136, 186, 224, 0.28),
            transparent
        );
}

/* More satisfying stat number emphasis */
.stat-value {
    font-size: 2.6rem;

    color: #efbd4d;

    text-shadow:
        0 2px 3px #000,
        0 0 14px rgba(239, 189, 77, 0.15);
}

/* Gold top corners on feature cards */
.feature-card::after,
.news-card::after {
    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    right: 6px;
    top: 6px;

    border-top: 1px solid rgba(218, 174, 79, 0.55);
    border-right: 1px solid rgba(218, 174, 79, 0.55);
}

/* Better section separation */
.section-block {
    position: relative;

    margin-top: 46px;
}

.section-block::before {
    content: "";

    display: block;

    width: min(720px, 75%);
    height: 2px;

    margin: 0 auto 36px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(78, 138, 189, 0.38),
            rgba(207, 166, 73, 0.68),
            rgba(78, 138, 189, 0.38),
            transparent
        );

    box-shadow:
        0 0 12px rgba(76, 151, 211, 0.12);
}

/* Add tiny center rune to section dividers */
.section-block::after {
    content: "✦";

    position: absolute;

    top: -12px;
    left: 50%;

    transform: translateX(-50%);

    padding: 0 9px;

    color: #b9ddf6;

    background: #040b13;

    font-size: 0.8rem;

    text-shadow:
        0 0 9px rgba(114, 190, 239, 0.65);
}

/* Make feature titles more Warcraft-ish */
.feature-card h3,
.news-card h3,
.step-card h3,
.mini-card h3 {
    font-family: Georgia, "Times New Roman", serif;

    color: #ecf3fb;

    text-shadow:
        0 1px 2px #000;
}

/* Gold feature label */
.feature-kicker {
    color: #d9ad49;

    text-shadow:
        0 1px 2px #000;
}

/* Navigation link glow */
.nav-links a:hover {
    color: #eef8ff;

    text-shadow:
        0 0 9px rgba(109, 181, 231, 0.35);
}

/* CTA button gets carved-gold feel */
.button.primary {
    border:
        1px solid rgba(239, 203, 110, 0.72);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.24),
        inset 0 -3px 5px rgba(56, 30, 0, 0.40),
        0 4px 14px rgba(0,0,0,0.42);
}

/* Hero buttons pushed slightly lower */
.hero-buttons {
    margin-top: 36px;
}

/* Status panel slightly overlaps hero transition */
.status-section {
    position: relative;

    margin-top: -18px;

    z-index: 3;
}

/* Dark icy footer */
.footer {
    color: #7893aa;

    border-top:
        1px solid rgba(83, 131, 168, 0.20);

    text-shadow:
        0 1px 2px #000;
}
/* FIX: decorative divider must not become a grid item */
.two-col.section-block::before,
.two-col.section-block::after {
    display: none;
}
/* FINAL HEADER LOGO FIX */

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    text-decoration: none;
    flex-shrink: 0;
}

/* Kill any leftover decorative pseudo-elements */
.logo::before,
.logo::after {
    content: none !important;
    display: none !important;
}

/* Bigger logo */
.logo img {
    display: block;
    width: 460px;
    max-width: 44vw;
    height: auto;

    filter:
        drop-shadow(0 4px 5px rgba(0, 0, 0, 0.9))
        drop-shadow(0 0 14px rgba(78, 169, 230, 0.24));

    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.logo:hover img {
    transform: scale(1.02);

    filter:
        drop-shadow(0 4px 5px rgba(0, 0, 0, 0.9))
        drop-shadow(0 0 18px rgba(91, 183, 242, 0.34));
}

.nav-wrap {
    padding: 10px 0;
    min-height: 115px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

header {
    min-height: 115px;
}

/* Mobile */
@media (max-width: 760px) {
    .logo img {
        width: 320px;
        max-width: 90vw;
    }

    .nav-wrap {
        min-height: auto;
    }
}
/* =========================================
   REALM STATUS / PANEL POLISH PASS
   ========================================= */

/* Main Realm Status panel */
#realm-status-section .panel {
    background:
        linear-gradient(
            180deg,
            rgba(10, 25, 40, 0.98) 0%,
            rgba(5, 16, 28, 0.99) 100%
        );
    border: 1px solid rgba(108, 161, 203, 0.58);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.50),
        0 0 0 1px rgba(0, 0, 0, 0.92),
        0 0 0 3px rgba(73, 108, 136, 0.16),
        inset 0 0 45px rgba(64, 128, 179, 0.08),
        inset 0 1px 0 rgba(225, 240, 251, 0.08);
}

/* Top ornamental glow line */
#realm-status-section .panel::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 0;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(109, 181, 231, 0.55),
            rgba(224, 186, 88, 0.45),
            rgba(109, 181, 231, 0.55),
            transparent
        );
    box-shadow: 0 0 10px rgba(93, 171, 228, 0.16);
    pointer-events: none;
}

/* Bigger, more important heading */
.status-header h2 {
    font-size: 2.35rem;
    color: #eef5fd;
    text-shadow:
        0 2px 3px rgba(0,0,0,0.85),
        0 0 12px rgba(95, 166, 219, 0.18);
    margin-bottom: 10px;
}

/* Online/offline line */
#realm-status {
    font-size: 1.28rem;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}

/* Better stat spacing */
.stats {
    gap: 22px;
    margin-top: 10px;
}

/* Stat cards */
.stat {
    padding: 28px 22px 24px;
    border-radius: 6px;
    background:
        linear-gradient(
            180deg,
            rgba(4, 15, 25, 0.98) 0%,
            rgba(3, 11, 20, 1) 100%
        );
    border: 1px solid rgba(88, 136, 177, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(195, 223, 245, 0.06),
        inset 0 0 24px rgba(52, 113, 164, 0.05),
        0 6px 16px rgba(0,0,0,0.28);
    position: relative;
    overflow: hidden;
}

/* Metallic top edge inside each stat */
.stat::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    top: 0;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(135, 191, 233, 0.24),
            transparent
        );
}

/* Stronger hover */
.stat:hover {
    transform: translateY(-2px);
    border-color: rgba(190, 149, 65, 0.60);
    box-shadow:
        inset 0 1px 0 rgba(210, 232, 248, 0.08),
        inset 0 0 26px rgba(62, 127, 182, 0.07),
        0 10px 22px rgba(0,0,0,0.34),
        0 0 12px rgba(190, 149, 65, 0.08);
}

/* Bigger numbers */
.stat-value {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 10px;
    color: #f0c45b;
    text-shadow:
        0 2px 3px rgba(0,0,0,0.88),
        0 0 14px rgba(238, 193, 78, 0.14);
}

/* Labels under numbers */
.stat-label {
    color: #b7cde0;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

/* Add a divider between stats and realm info */
.realm-meta {
    margin-top: 30px;
    padding-top: 22px;
    position: relative;
    color: #a9c0d5;
    line-height: 1.9;
}

.realm-meta::before {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    top: 0;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(85, 148, 199, 0.35),
            rgba(210, 170, 73, 0.55),
            rgba(85, 148, 199, 0.35),
            transparent
        );
}

.realm-meta::after {
    content: "✦";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 8px;
    background: rgba(7, 18, 31, 1);
    color: #9fd2f2;
    font-size: 0.82rem;
    text-shadow: 0 0 9px rgba(118, 196, 241, 0.55);
}

/* Give lower two panels a little more presence too */
#realm-features.panel,
#create-account.panel {
    background:
        linear-gradient(
            180deg,
            rgba(10, 24, 39, 0.98) 0%,
            rgba(5, 15, 27, 0.99) 100%
        );
    box-shadow:
        0 14px 32px rgba(0,0,0,0.42),
        0 0 0 1px rgba(0,0,0,0.88),
        0 0 0 3px rgba(64, 96, 121, 0.14),
        inset 0 0 34px rgba(53, 113, 162, 0.06);
}

/* Section titles in the lower panels */
#realm-features .section-title,
#create-account h3 {
    font-size: 2rem;
    color: #e7bd56;
    text-shadow:
        0 2px 3px rgba(0,0,0,0.8),
        0 0 10px rgba(231, 189, 86, 0.12);
}

/* Lower feature cards slightly richer */
.feature-card,
.mini-card {
    background:
        linear-gradient(
            180deg,
            rgba(5, 16, 27, 0.98) 0%,
            rgba(3, 10, 18, 1) 100%
        );
}

/* Mobile safety */
@media (max-width: 980px) {
    .stat-value {
        font-size: 2.5rem;
    }

    .status-header h2 {
        font-size: 2rem;
    }
}
/* =========================================
   LOWER PANEL WRATH POLISH
   ========================================= */

/* Outer lower panels */
#realm-features.panel,
#create-account.panel {
    position: relative;
    border-radius: 4px;

    background:
        linear-gradient(
            180deg,
            rgba(11, 26, 42, 0.99) 0%,
            rgba(5, 15, 27, 1) 100%
        );

    border: 1px solid rgba(103, 158, 199, 0.58);

    box-shadow:
        0 16px 34px rgba(0,0,0,0.42),
        0 0 0 1px rgba(0,0,0,0.9),
        0 0 0 3px rgba(61, 91, 117, 0.12),
        inset 0 0 38px rgba(59, 124, 174, 0.06),
        inset 0 1px 0 rgba(221, 239, 252, 0.07);
}

/* Frosted upper trim */
#realm-features.panel::after,
#create-account.panel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(93, 171, 225, 0.45),
            rgba(223, 182, 82, 0.40),
            rgba(93, 171, 225, 0.45),
            transparent
        );

    box-shadow:
        0 0 9px rgba(94, 173, 230, 0.15);
}

/* Bigger section headings */
#realm-features .section-title,
#create-account h3 {
    font-size: 2.25rem;
    margin-bottom: 16px;

    color: #efc45b;

    text-shadow:
        0 2px 3px rgba(0,0,0,0.9),
        0 0 12px rgba(238, 191, 78, 0.14);
}

/* Feature grid */
.features-grid {
    gap: 18px;
}

/* Feature cards */
.feature-card {
    padding: 22px 20px;

    background:
        linear-gradient(
            180deg,
            rgba(4, 15, 25, 0.99),
            rgba(2, 10, 18, 1)
        );

    border: 1px solid rgba(82, 131, 170, 0.36);

    box-shadow:
        inset 0 1px 0 rgba(195, 223, 245, 0.05),
        inset 0 0 20px rgba(55, 115, 163, 0.04),
        0 5px 12px rgba(0,0,0,0.22);
}

/* Gold and blue corner armor */
.feature-card::after {
    content: "";
    position: absolute;
    right: 7px;
    top: 7px;

    width: 12px;
    height: 12px;

    border-top: 2px solid rgba(220, 177, 73, 0.65);
    border-right: 2px solid rgba(220, 177, 73, 0.65);

    box-shadow:
        2px -2px 6px rgba(220, 177, 73, 0.05);
}

.feature-card::before {
    content: "";
    position: absolute;
    left: 7px;
    bottom: 7px;

    width: 12px;
    height: 12px;

    border-left: 1px solid rgba(92, 166, 216, 0.42);
    border-bottom: 1px solid rgba(92, 166, 216, 0.42);
}

/* Feature titles */
.feature-card h3 {
    font-size: 1.25rem;
    color: #f2f5f8;

    text-shadow:
        0 1px 2px #000,
        0 0 8px rgba(110, 171, 216, 0.08);
}

/* Gold feature label */
.feature-kicker {
    font-size: 0.82rem;
    color: #e4b64e;
    letter-spacing: 0.07em;
}

/* Create Account panel becomes more centered and ceremonial */
#create-account {
    text-align: center;
}

#create-account .section-subtitle {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

/* Richer carved-gold Coming Soon button */
#create-account .button.primary {
    padding: 15px 30px;

    background:
        linear-gradient(
            180deg,
            #f1c65d 0%,
            #c7932f 48%,
            #8a5b16 100%
        );

    border: 1px solid rgba(244, 210, 120, 0.85);

    color: #120c03;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.28),
        inset 0 -3px 5px rgba(59,31,0,0.45),
        0 6px 16px rgba(0,0,0,0.38),
        0 0 10px rgba(215, 165, 60, 0.08);
}

/* Coming next panel */
#create-account .mini-card {
    margin-top: 26px;
    padding: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(5, 17, 29, 0.99),
            rgba(3, 11, 20, 1)
        );

    border: 1px solid rgba(79, 128, 167, 0.34);

    box-shadow:
        inset 0 0 22px rgba(57, 119, 168, 0.04);
}

/* Mini panel title */
#create-account .mini-card h3 {
    font-size: 1.7rem;
    color: #e8ba50;
}

/* Slightly more breathing room */
#realm-features,
#create-account {
    padding: 28px;
}
/* Let the Create Account panel fit its content */
#create-account {
    align-self: start;
}
}


/* ============================================================
   DOWNLOADS PAGE
   ============================================================ */
/* ============================================================
   CLIENT DOWNLOADS PAGE
   Loaded after the site's existing css/style.css
   ============================================================ */

:root {
  --dl-bg: #070b11;
  --dl-panel: rgba(13, 20, 29, 0.94);
  --dl-panel-2: rgba(18, 27, 39, 0.92);
  --dl-border: rgba(185, 148, 72, 0.35);
  --dl-gold: #d1ac5b;
  --dl-gold-bright: #f0d287;
  --dl-ice: #7fc7ec;
  --dl-text: #e6e8eb;
  --dl-muted: #aab2bd;
  --dl-shadow: rgba(0, 0, 0, 0.55);
}


body.downloads-page {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(51, 91, 125, 0.25), transparent 34rem),
    linear-gradient(180deg, #0c121b 0%, #06090d 55%, #030506 100%);
  color: var(--dl-text);
}

/* Header */

.download-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(209, 172, 91, 0.22);
  background: rgba(4, 8, 13, 0.88);
  backdrop-filter: blur(12px);
}

.download-nav-wrap {
  width: min(1180px, calc(100% - 40px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.download-brand {
  color: var(--dl-gold-bright);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.download-nav {
  display: flex;
  gap: 26px;
}

.download-nav a {
  color: #d9dde3;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  transition: color 0.2s ease;
}

.download-nav a:hover,
.download-nav a.active {
  color: var(--dl-gold-bright);
}

/* Hero */

.download-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(209, 172, 91, 0.18);
  background:
    radial-gradient(circle at 50% 35%, rgba(74, 139, 181, 0.28), transparent 28rem),
    linear-gradient(180deg, rgba(10, 20, 31, 0.75), rgba(2, 5, 8, 0.96));
}

.download-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.85%, rgba(209,172,91,0.06) 50%, transparent 50.15%),
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 100% 100%, 100% 5px;
  opacity: 0.6;
  pointer-events: none;
}

.download-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,6,10,0.08), rgba(3,6,10,0.72));
}

.download-hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 40px));
  text-align: center;
  padding: 80px 0;
}

.downloads-page .download-kicker,
.downloads-page .eyebrow {
  color: var(--dl-ice);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 800;
}

.download-hero h1 {
  margin: 18px 0 18px;
  color: #fff;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  text-shadow:
    0 4px 28px rgba(0,0,0,0.75),
    0 0 30px rgba(100, 187, 237, 0.12);
}

.download-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #cbd2da;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.btn {
  min-width: 205px;
  padding: 14px 20px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #111;
  background: linear-gradient(180deg, var(--dl-gold-bright), #b88935);
  border-color: #e9ca7d;
}

.btn-secondary {
  color: #e9edf2;
  background: rgba(13, 21, 31, 0.78);
  border-color: rgba(162, 196, 220, 0.35);
}

/* Shared sections */

.download-section,
.comparison-section,
.installation-section,
.download-note-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2 {
  margin: 10px 0 14px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading p {
  margin: 0;
  color: var(--dl-muted);
  line-height: 1.7;
}

/* Cards */

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.client-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--dl-border);
  background:
    linear-gradient(145deg, rgba(24, 35, 48, 0.94), rgba(8, 13, 20, 0.96));
  box-shadow: 0 22px 50px var(--dl-shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.client-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 100% 0%, rgba(116, 185, 225, 0.13), transparent 15rem);
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: rgba(223, 187, 104, 0.62);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.62);
}

.client-card.featured {
  border-color: rgba(224, 183, 86, 0.82);
  background:
    radial-gradient(circle at 100% 0%, rgba(208, 158, 61, 0.15), transparent 18rem),
    linear-gradient(145deg, rgba(31, 36, 42, 0.97), rgba(11, 15, 20, 0.98));
}

.recommended-ribbon {
  position: absolute;
  top: 22px;
  right: -42px;
  width: 180px;
  padding: 7px 0;
  transform: rotate(35deg);
  background: linear-gradient(180deg, #f0d287, #b98731);
  color: #171109;
  text-align: center;
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.card-number {
  position: absolute;
  right: 24px;
  bottom: 10px;
  color: rgba(255,255,255,0.035);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(209, 172, 91, 0.42);
  background: rgba(2, 7, 12, 0.56);
  color: var(--dl-gold-bright);
  font-size: 1.55rem;
}

.card-heading {
  position: relative;
  z-index: 1;
}

.card-heading h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.75rem;
}

.edition-tag {
  display: inline-block;
  color: var(--dl-ice);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.card-description {
  position: relative;
  z-index: 1;
  color: #bdc6d0;
  line-height: 1.7;
}

.feature-list {
  position: relative;
  z-index: 1;
  margin: 10px 0 28px;
  padding: 0;
  list-style: none;
  color: #d5d9df;
}

.feature-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.055);
}

.feature-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--dl-gold);
  font-size: 0.58rem;
}

.package-info {
  position: relative;
  z-index: 1;
  margin-top: auto;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #8996a4;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.download-button {
  position: relative;
  z-index: 1;
  display: block;
  padding: 15px 18px;
  border: 1px solid #d7b461;
  background: linear-gradient(180deg, #e5c16b, #a9782a);
  color: #100d08;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.download-button.disabled {
  cursor: default;
  opacity: 0.56;
  filter: saturate(0.45);
}

/* Comparison */

.comparison-section {
  border-top: 1px solid rgba(209,172,91,0.12);
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid rgba(209,172,91,0.24);
  background: rgba(6, 11, 17, 0.75);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table th {
  color: var(--dl-gold-bright);
  background: rgba(18, 29, 42, 0.84);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comparison-table td {
  color: #cbd2d9;
}

.recommended-check {
  color: var(--dl-gold-bright) !important;
}

/* Installation */

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

.step {
  min-height: 225px;
  padding: 26px;
  border: 1px solid rgba(127, 199, 236, 0.18);
  background: linear-gradient(180deg, rgba(15,24,34,0.82), rgba(8,12,18,0.86));
}

.step-number {
  display: block;
  color: var(--dl-gold);
  font-size: 2rem;
  font-weight: 900;
}

.step h3 {
  margin: 14px 0 9px;
  color: #fff;
}

.step p {
  margin: 0;
  color: #9faab5;
  line-height: 1.65;
}

/* Bottom note */

.download-note-section {
  padding-top: 20px;
}

.download-note {
  padding: 34px;
  border: 1px solid rgba(209,172,91,0.34);
  background:
    radial-gradient(circle at 100% 50%, rgba(209,172,91,0.08), transparent 18rem),
    rgba(12, 18, 26, 0.88);
  text-align: center;
}

.download-note h2 {
  margin-top: 0;
  color: var(--dl-gold-bright);
}

.download-note p {
  max-width: 780px;
  margin: 0 auto;
  color: #adb7c2;
  line-height: 1.7;
}

/* Footer */

.download-footer {
  margin-top: 40px;
  padding: 34px 20px;
  border-top: 1px solid rgba(209,172,91,0.14);
  background: #030507;
  color: #6f7b88;
  text-align: center;
}

.download-footer p {
  margin: 0 0 9px;
}

.download-footer a {
  color: var(--dl-gold);
  text-decoration: none;
}

/* Responsive */

@media (max-width: 900px) {
  .client-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .download-nav-wrap {
    width: min(100% - 26px, 1180px);
  }

  .download-nav {
    gap: 14px;
  }

  .download-hero {
    min-height: 470px;
  }

  .download-hero-content {
    width: min(100% - 28px, 900px);
  }

  .download-section,
  .comparison-section,
  .installation-section,
  .download-note-section {
    width: min(100% - 28px, 1180px);
    padding: 64px 0;
  }

  .client-card {
    padding: 26px 22px;
  }

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

  .package-info {
    flex-direction: column;
    gap: 5px;
  }

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


/* ============================================================
   HOMEPAGE-MATCHING HEADER
   ============================================================ */

.downloads-page header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 115px;
  border-top: 2px solid rgba(186, 143, 55, 0.50);
  border-bottom: 1px solid rgba(103, 164, 212, 0.42);
  background:
    linear-gradient(
      180deg,
      rgba(8, 17, 27, 0.99) 0%,
      rgba(2, 8, 14, 0.98) 100%
    );
  box-shadow:
    0 4px 22px rgba(0, 0, 0, 0.72),
    inset 0 -1px 0 rgba(170, 210, 242, 0.05);
  backdrop-filter: blur(10px);
}

.downloads-page .nav-wrap {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 10px 0;
  min-height: 115px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.downloads-page .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.downloads-page .logo::before,
.downloads-page .logo::after {
  content: none !important;
  display: none !important;
}

.downloads-page .logo img {
  display: block;
  width: 460px;
  max-width: 44vw;
  height: auto;
  filter:
    drop-shadow(0 4px 5px rgba(0, 0, 0, 0.9))
    drop-shadow(0 0 14px rgba(78, 169, 230, 0.24));
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.downloads-page .logo:hover img {
  transform: scale(1.02);
  filter:
    drop-shadow(0 4px 5px rgba(0, 0, 0, 0.9))
    drop-shadow(0 0 18px rgba(91, 183, 242, 0.34));
}

.downloads-page .nav-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.downloads-page .nav-links a {
  position: relative;
  padding: 5px 0;
  text-decoration: none;
  color: #c2d9f1;
  font-size: 0.98rem;
  transition: 0.2s ease;
}

.downloads-page .nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #d2aa50;
  transition: 0.2s ease;
}

.downloads-page .nav-links a:hover,
.downloads-page .nav-links a.active {
  color: #eef8ff;
  text-shadow: 0 0 9px rgba(109, 181, 231, 0.35);
}

.downloads-page .nav-links a:hover::after,
.downloads-page .nav-links a.active::after {
  left: 0;
  width: 100%;
}

@media (max-width: 760px) {
  .downloads-page .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
  }

  .downloads-page .logo img {
    width: 320px;
    max-width: 90vw;
  }

  .downloads-page .nav-links {
    gap: 14px;
  }
}


/* ============================================================
   REGISTRATION PAGE
   ============================================================ */

.registration-page {
    min-height: 100vh;
    color: #eaf3ff;
    font-family: Arial, sans-serif;
    background:
        linear-gradient(rgba(2, 8, 15, 0.55), rgba(2, 8, 15, 0.90)),
        url("../assets/wrath-hero.png") center top / cover fixed no-repeat,
        #030a12;
}

/* PAGE */

        .registration-page main {
            width: min(760px, 92%);
            margin: 70px auto;
        }

        .registration-page .page-heading {
            text-align: center;
            margin-bottom: 34px;
        }

        .registration-page .page-heading .eyebrow {
            display: inline-block;

            padding: 7px 14px;
            margin-bottom: 12px;

            border: 1px solid rgba(93, 150, 197, 0.38);
            border-radius: 999px;

            background: rgba(5, 18, 31, 0.82);

            color: #a9c9e5;

            font-size: 0.82rem;
            letter-spacing: 0.07em;
        }

        .registration-page .page-heading h1 {
            margin: 0;

            font-family: Georgia, "Times New Roman", serif;
            font-size: clamp(2.6rem, 6vw, 4rem);

            color: #efc45b;

            text-shadow:
                0 3px 4px rgba(0,0,0,0.9),
                0 0 18px rgba(238,190,75,0.15);
        }

        .registration-page .page-heading p {
            margin: 16px auto 0;
            max-width: 620px;

            color: #aec5d8;
            line-height: 1.7;

            text-shadow: 0 2px 3px #000;
        }

        /* WRATH PANEL */

        .registration-page .registration-panel {
            position: relative;
            overflow: hidden;

            padding: 40px;

            background:
                linear-gradient(
                    180deg,
                    rgba(10, 26, 42, 0.98),
                    rgba(4, 15, 26, 0.99)
                );

            border: 1px solid rgba(103, 158, 201, 0.63);

            clip-path: polygon(
                12px 0,
                calc(100% - 12px) 0,
                100% 12px,
                100% calc(100% - 12px),
                calc(100% - 12px) 100%,
                12px 100%,
                0 calc(100% - 12px),
                0 12px
            );

            box-shadow:
                0 20px 50px rgba(0,0,0,0.58),
                inset 0 0 45px rgba(59,123,175,0.07);
        }

        .registration-page .registration-panel::before {
            content: "";

            position: absolute;
            inset: 6px;

            pointer-events: none;

            border: 1px solid rgba(211, 169, 72, 0.20);

            clip-path: polygon(
                9px 0,
                calc(100% - 9px) 0,
                100% 9px,
                100% calc(100% - 9px),
                calc(100% - 9px) 100%,
                9px 100%,
                0 calc(100% - 9px),
                0 9px
            );
        }

        .registration-page .registration-panel::after {
            content: "";

            position: absolute;
            top: 0;
            left: 14%;
            right: 14%;

            height: 2px;

            background:
                linear-gradient(
                    90deg,
                    transparent,
                    rgba(100,177,230,0.55),
                    rgba(232,191,88,0.50),
                    rgba(100,177,230,0.55),
                    transparent
                );
        }

        .registration-page .panel-title {
            position: relative;
            z-index: 1;

            text-align: center;

            margin-bottom: 30px;
        }

        .registration-page .panel-title h2 {
            margin: 0 0 8px;

            font-family: Georgia, "Times New Roman", serif;
            font-size: 2rem;

            color: #edf5fd;
        }

        .registration-page .panel-title p {
            margin: 0;

            color: #91abc2;
            line-height: 1.6;
        }

        /* FORM */

        .registration-page form {
            position: relative;
            z-index: 1;
        }

        .registration-page .field {
            margin-bottom: 22px;
        }

        .registration-page label {
            display: block;

            margin-bottom: 8px;

            color: #e5bd58;

            font-family: Georgia, "Times New Roman", serif;
            font-weight: bold;
            font-size: 1.05rem;
        }

        .registration-page input {
            width: 100%;

            padding: 14px 15px;

            color: #eef7ff;
            font-size: 1rem;

            background:
                linear-gradient(
                    180deg,
                    rgba(2, 12, 21, 0.98),
                    rgba(3, 16, 27, 0.98)
                );

            border: 1px solid rgba(84, 135, 176, 0.46);
            border-radius: 4px;

            outline: none;

            box-shadow:
                inset 0 0 12px rgba(0,0,0,0.35);
        }

        .registration-page input:focus {
            border-color: rgba(112, 187, 239, 0.82);

            box-shadow:
                inset 0 0 12px rgba(0,0,0,0.35),
                0 0 10px rgba(77,161,220,0.15);
        }

        .registration-page input::placeholder {
            color: #60798e;
        }

        .registration-page .hint {
            margin-top: 7px;

            color: #7894aa;
            font-size: 0.86rem;
            line-height: 1.5;
        }

        .registration-page .divider {
            position: relative;

            height: 1px;

            margin: 30px 0;

            background:
                linear-gradient(
                    90deg,
                    transparent,
                    rgba(79,144,192,0.35),
                    rgba(210,171,76,0.55),
                    rgba(79,144,192,0.35),
                    transparent
                );
        }

        .registration-page .divider::after {
            content: "✦";

            position: absolute;
            left: 50%;
            top: 50%;

            transform: translate(-50%, -50%);

            padding: 0 10px;

            background: #071626;

            color: #9ed4f4;

            text-shadow:
                0 0 8px rgba(105,191,241,0.55);
        }

        .registration-page .submit-button {
            width: 100%;

            padding: 16px 24px;

            cursor: pointer;

            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0.02em;

            color: #120c03;

            background:
                linear-gradient(
                    180deg,
                    #f1c85f 0%,
                    #c7932f 50%,
                    #8b5a15 100%
                );

            border: 1px solid rgba(246, 211, 119, 0.85);
            border-radius: 3px;

            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.30),
                inset 0 -3px 5px rgba(57,30,0,0.46),
                0 7px 18px rgba(0,0,0,0.40);
        }

        .registration-page .submit-button:hover {
            background:
                linear-gradient(
                    180deg,
                    #f5d372,
                    #d09b34 50%,
                    #94621a
                );

            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.30),
                inset 0 -3px 5px rgba(57,30,0,0.46),
                0 0 18px rgba(224,178,67,0.20);
        }

        .registration-page .message {
            display: none;

            margin-top: 22px;
            padding: 14px;

            text-align: center;

            border-radius: 4px;
        }

        .registration-page .message.error {
            display: block;

            color: #ffd6d6;

            background: rgba(95,18,24,0.45);

            border: 1px solid rgba(230,92,99,0.45);
        }

        .registration-page .message.success {
            display: block;

            color: #d5ffe2;

            background: rgba(21,91,52,0.42);

            border: 1px solid rgba(87,217,132,0.45);
        }

        .registration-page .security-note {
            margin-top: 25px;

            color: #7996ad;

            font-size: 0.88rem;
            line-height: 1.6;
            text-align: center;
        }

        .registration-page .back-home {
            margin-top: 30px;
            text-align: center;
        }

        .registration-page .back-home a {
            color: #a9c8e3;
            text-decoration: none;
        }

        .registration-page .back-home a:hover {
            color: #ffffff;
        }

        @media (max-width: 760px) {
            .nav-wrap {
                flex-direction: column;
                padding: 12px 0;
            }

            .logo img {
                width: 320px;
                max-width: 90vw;
            }

            .registration-page .registration-panel {
                padding: 28px 22px;
            }
        }
		/* =========================================
   REGISTRATION SUCCESS POLISH
   ========================================= */

.registration-page .submit-button:disabled {
    cursor: wait;
    opacity: 0.75;
}

.registration-page .success-actions {
    display: none;

    margin-top: 20px;

    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.registration-page .success-actions.visible {
    display: flex;
}

.registration-page .success-link {
    display: inline-block;

    padding: 12px 20px;

    font-weight: bold;
    font-size: 0.9rem;

    text-decoration: none;

    border-radius: 3px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.registration-page .success-link:hover {
    transform: translateY(-1px);
}

.registration-page .primary-link {
    color: #120c03;

    background:
        linear-gradient(
            180deg,
            #f1c85f 0%,
            #c7932f 50%,
            #8b5a15 100%
        );

    border: 1px solid rgba(246, 211, 119, 0.85);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.28),
        inset 0 -3px 5px rgba(57,30,0,0.42),
        0 5px 15px rgba(0,0,0,0.35);
}

.registration-page .secondary-link {
    color: #d7ebfa;

    background:
        linear-gradient(
            180deg,
            rgba(20, 47, 70, 0.98),
            rgba(6, 21, 35, 0.98)
        );

    border: 1px solid rgba(93, 158, 207, 0.62);
}

.registration-page .message.success {
    padding: 20px;

    color: #d9ffe5;

    background:
        linear-gradient(
            180deg,
            rgba(20, 88, 50, 0.52),
            rgba(9, 48, 29, 0.48)
        );

    border: 1px solid rgba(86, 216, 131, 0.55);

    box-shadow:
        inset 0 0 18px rgba(66, 205, 117, 0.05),
        0 0 14px rgba(69, 214, 119, 0.05);
}

.registration-page .message.error {
    padding: 18px;

    color: #ffd9d9;

    background:
        linear-gradient(
            180deg,
            rgba(102, 21, 27, 0.55),
            rgba(57, 12, 17, 0.52)
        );

    border: 1px solid rgba(231, 91, 99, 0.50);
}


/* ============================================================
   DOWNLOADS PAGE VISUAL POLISH V3
   Keeps the shared header, upgrades only downloads content.
   ============================================================ */

.downloads-page {
    background:
        radial-gradient(circle at 50% 0%, rgba(47, 99, 148, 0.18), transparent 34rem),
        linear-gradient(180deg, #07111b 0%, #03080e 58%, #020507 100%);
}

/* Strong Wrath hero, matching the homepage mood */
.downloads-page .download-hero {
    min-height: 470px;
    border-bottom: 1px solid rgba(101, 159, 204, 0.20);
    background:
        linear-gradient(
            180deg,
            rgba(2, 8, 15, 0.42) 0%,
            rgba(2, 8, 15, 0.62) 56%,
            rgba(3, 9, 16, 0.97) 100%
        ),
        url("../assets/wrath-hero.png") center 38% / cover no-repeat;
}

.downloads-page .download-hero-overlay {
    background:
        radial-gradient(circle at 50% 35%, rgba(70, 132, 184, 0.10), transparent 28rem),
        linear-gradient(180deg, rgba(3, 8, 14, 0.10), rgba(3, 8, 14, 0.56));
}

.downloads-page .download-kicker {
    display: inline-block;
    padding: 7px 14px;
    margin-bottom: 8px;
    border: 1px solid rgba(105, 157, 206, 0.35);
    border-radius: 999px;
    background: rgba(11, 24, 39, 0.76);
    color: #9fc2e6;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-shadow: 0 1px 2px #000;
}

.downloads-page .download-hero h1 {
    margin: 14px 0 16px;
    color: #f0c45b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5.2rem);
    letter-spacing: 0.01em;
    text-transform: none;
    text-shadow:
        0 3px 4px rgba(0,0,0,0.90),
        0 0 24px rgba(240,196,91,0.20),
        0 0 45px rgba(82,151,207,0.10);
}

.downloads-page .download-hero p {
    color: #b7cde0;
    font-size: 1.08rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
}

/* Hero buttons: restore readable gold/blue styling */
.downloads-page .hero-actions .btn {
    border-radius: 3px;
    font-family: Arial, sans-serif;
    letter-spacing: 0.04em;
}

.downloads-page .hero-actions .btn-primary {
    color: #120c03;
    background:
        linear-gradient(
            180deg,
            #f0c75f 0%,
            #c99331 50%,
            #8c5c17 100%
        );
    border-color: rgba(243, 207, 112, 0.85);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.25),
        inset 0 -3px 5px rgba(57,30,0,0.42),
        0 5px 15px rgba(0,0,0,0.36);
}

.downloads-page .hero-actions .btn-primary:hover {
    color: #120c03;
    background:
        linear-gradient(
            180deg,
            #f6d477 0%,
            #d49e38 50%,
            #96631b 100%
        );
}

.downloads-page .hero-actions .btn-secondary {
    color: #d9ecff;
    background:
        linear-gradient(
            180deg,
            rgba(20,46,68,0.96),
            rgba(7,22,36,0.98)
        );
    border-color: rgba(95,153,203,0.65);
}

/* Edition area */
.downloads-page .download-section {
    padding-top: 72px;
}

.downloads-page .section-heading .eyebrow {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid rgba(100, 164, 211, 0.30);
    border-radius: 999px;
    background: rgba(8, 21, 35, 0.72);
    color: #9fc9e7;
}

.downloads-page .section-heading h2 {
    color: #efc45b;
    font-family: Georgia, "Times New Roman", serif;
    text-shadow:
        0 2px 3px rgba(0,0,0,0.85),
        0 0 12px rgba(238,191,78,0.12);
}

.downloads-page .section-heading p {
    color: #9ebad4;
}

/* Card frames more like the homepage panels */
.downloads-page .client-card {
    border-radius: 4px;
    border: 1px solid rgba(103, 158, 199, 0.52);
    background:
        linear-gradient(
            180deg,
            rgba(10, 25, 40, 0.98) 0%,
            rgba(5, 15, 27, 0.99) 100%
        );
    box-shadow:
        0 14px 32px rgba(0,0,0,0.42),
        0 0 0 1px rgba(0,0,0,0.88),
        inset 0 0 34px rgba(53,113,162,0.05);
}

.downloads-page .client-card::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 0;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(93,171,225,0.44),
            rgba(223,182,82,0.38),
            rgba(93,171,225,0.44),
            transparent
        );
}

.downloads-page .client-card.featured {
    border-color: rgba(213, 171, 73, 0.74);
    background:
        radial-gradient(circle at 100% 0%, rgba(207,156,55,0.10), transparent 18rem),
        linear-gradient(
            180deg,
            rgba(15,28,40,0.99),
            rgba(6,16,26,1)
        );
}

.downloads-page .card-heading h3 {
    color: #f1f5f8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
}

.downloads-page .edition-tag {
    color: #87bfe4;
}

.downloads-page .card-description,
.downloads-page .feature-list {
    color: #b3c4d4;
}

.downloads-page .feature-list li {
    border-bottom-color: rgba(110, 157, 194, 0.10);
}

.downloads-page .package-info {
    color: #859eb3;
}

/* Make disabled package button readable and intentional */
.downloads-page .download-button.disabled {
    opacity: 1;
    filter: none;
    cursor: default;
    color: #d2dbe3;
    border-color: rgba(93, 148, 192, 0.40);
    background:
        linear-gradient(
            180deg,
            rgba(18, 42, 62, 0.96),
            rgba(7, 21, 35, 0.98)
        );
    box-shadow:
        inset 0 1px 0 rgba(190,220,242,0.06),
        0 4px 12px rgba(0,0,0,0.30);
}

/* Keep the recommended edition special */
.downloads-page .featured .download-button.disabled {
    color: #e6c777;
    border-color: rgba(213, 171, 73, 0.45);
    background:
        linear-gradient(
            180deg,
            rgba(63, 50, 22, 0.82),
            rgba(29, 23, 12, 0.90)
        );
}

/* Comparison + installation should feel like site panels */
.downloads-page .comparison-wrap,
.downloads-page .download-note,
.downloads-page .step {
    border-radius: 4px;
    border-color: rgba(95, 145, 186, 0.34);
    background:
        linear-gradient(
            180deg,
            rgba(8, 22, 35, 0.94),
            rgba(4, 13, 22, 0.96)
        );
}

.downloads-page .comparison-table th {
    background: rgba(12, 29, 45, 0.92);
    color: #e3b954;
}

.downloads-page .step-number {
    color: #efbd4d;
}

/* Slightly tighter spacing so the page feels less empty */
@media (min-width: 901px) {
    .downloads-page .download-section,
    .downloads-page .comparison-section,
    .downloads-page .installation-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }
}


/* ============================================================
   DOWNLOADS PAGE POLISH V4
   Icon color restoration + package version panel
   ============================================================ */

/* Force card symbols to render as styled text, not dark emoji glyphs */
.downloads-page .card-icon {
    position: relative;
    z-index: 2;
    color: #f0c45b !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-weight: 700;
    font-size: 1.55rem;
    line-height: 1;
    text-shadow:
        0 0 8px rgba(240, 196, 91, 0.28),
        0 1px 2px rgba(0, 0, 0, 0.9);
    border-color: rgba(213, 171, 73, 0.52);
    background:
        radial-gradient(circle at center, rgba(213, 171, 73, 0.08), transparent 72%),
        rgba(2, 9, 16, 0.82);
    box-shadow:
        inset 0 0 12px rgba(213, 171, 73, 0.035),
        0 0 10px rgba(0, 0, 0, 0.18);
}

/* Give the HD snowflake a slightly frostier identity */
.downloads-page .card-icon.hd-icon {
    color: #a9daf5 !important;
    border-color: rgba(117, 187, 229, 0.55);
    text-shadow:
        0 0 9px rgba(112, 190, 237, 0.42),
        0 1px 2px rgba(0, 0, 0, 0.9);
}

/* Complete edition gets gold emphasis */
.downloads-page .card-icon.complete-icon {
    color: #f2c75d !important;
    border-color: rgba(229, 187, 83, 0.68);
    box-shadow:
        inset 0 0 14px rgba(229, 187, 83, 0.055),
        0 0 10px rgba(214, 166, 56, 0.08);
}

/* Client Package Version should match the ceremonial Wrath panels */
.downloads-page .download-note-section {
    padding-top: 6px;
    padding-bottom: 82px;
}

.downloads-page .download-note {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 36px 34px;

    border: 1px solid rgba(103, 158, 199, 0.52);
    border-radius: 4px;

    background:
        radial-gradient(circle at 50% 0%, rgba(73, 137, 188, 0.08), transparent 22rem),
        linear-gradient(
            180deg,
            rgba(10, 25, 40, 0.98) 0%,
            rgba(5, 15, 27, 0.99) 100%
        );

    box-shadow:
        0 14px 30px rgba(0,0,0,0.38),
        0 0 0 1px rgba(0,0,0,0.85),
        inset 0 0 30px rgba(53,113,162,0.045);
}

.downloads-page .download-note::before {
    content: "";
    position: absolute;
    left: 15%;
    right: 15%;
    top: 0;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(93,171,225,0.46),
            rgba(223,182,82,0.44),
            rgba(93,171,225,0.46),
            transparent
        );
    box-shadow: 0 0 9px rgba(94,173,230,0.12);
}

.downloads-page .download-note h2 {
    position: relative;
    margin: 0 0 12px;
    color: #efc45b !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    text-shadow:
        0 2px 3px rgba(0,0,0,0.85),
        0 0 10px rgba(238,191,78,0.12);
}

.downloads-page .download-note h2::after {
    content: "";
    display: block;
    width: 190px;
    height: 1px;
    margin: 13px auto 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(78,138,189,0.45),
            rgba(207,166,73,0.72),
            rgba(78,138,189,0.45),
            transparent
        );
}

.downloads-page .download-note p {
    position: relative;
    margin: 0 auto;
    max-width: 720px;
    color: #a9c0d5 !important;
    font-size: 0.98rem;
    line-height: 1.7;
}

.downloads-page .download-note strong {
    color: #f0c45b;
}

/* Comparison table symbols */
.comparison-table td:not(:first-child) {
    color: #f6c453 !important;
}

.comparison-table tr:last-child td:last-child {
    color: #f6c453 !important;
    font-weight: 700;
}

.card-number {
    display: none !important;
}

.torrent-button {
    margin-top: 10px;
    background: #0c2235;
    color: #f6c453;
    border: 1px solid #3f6685;
}

.torrent-button:hover {
    background: #12314d;
}

/* ============================================================
   HOW TO PLAY PAGE
   ============================================================ */

.how-to-play-page {
    min-height: 100vh;
    color: #eaf3ff;
    background:
        radial-gradient(circle at 50% 0%, rgba(47, 99, 148, 0.18), transparent 34rem),
        linear-gradient(180deg, #07111b 0%, #03080e 58%, #020507 100%);
}

.how-to-play-page .nav-links a.active {
    color: #eef8ff;
    text-shadow: 0 0 9px rgba(109, 181, 231, 0.35);
}

.how-to-play-page .nav-links a.active::after {
    left: 0;
    width: 100%;
}

.how-hero {
    position: relative;
    padding: 90px 0 82px;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(2, 8, 15, 0.32) 0%,
            rgba(2, 8, 15, 0.58) 58%,
            rgba(3, 9, 16, 0.97) 100%
        ),
        url("../assets/wrath-hero.png") center 38% / cover no-repeat;
}

.how-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 30%, rgba(72, 139, 189, 0.12), transparent 30rem);
}

.how-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(900px, 85%);
    height: 3px;
    transform: translateX(-50%);
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(101, 157, 208, 0.35) 15%,
            #b58b39 48%,
            #d6b45e 50%,
            #b58b39 52%,
            rgba(101, 157, 208, 0.35) 85%,
            transparent
        );
    box-shadow: 0 0 13px rgba(97, 160, 220, 0.35);
}

.how-hero .container {
    position: relative;
    z-index: 1;
}

.how-hero h1 {
    margin: 0;
    color: #f0c45b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 1.05;
    text-shadow:
        0 3px 4px rgba(0,0,0,0.9),
        0 0 24px rgba(240,196,91,0.20),
        0 0 45px rgba(82,151,207,0.10);
}

.how-hero p {
    width: min(760px, 100%);
    margin: 20px auto 0;
    color: #b7cde0;
    font-size: 1.1rem;
    line-height: 1.7;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
}

.how-guide {
    padding-top: 54px;
}

.how-intro {
    margin-bottom: 28px;
}

.how-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.how-quick-card,
.trouble-card {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(88, 130, 167, 0.30);
    border-radius: 4px;
    background:
        linear-gradient(
            180deg,
            rgba(5, 17, 28, 0.96),
            rgba(3, 12, 21, 0.98)
        );
    box-shadow:
        inset 0 0 20px rgba(72, 131, 180, 0.04),
        0 4px 10px rgba(0,0,0,0.24);
}

.how-quick-card h3,
.trouble-card h3 {
    margin: 0 0 9px;
    color: #eef5fb;
    font-family: Georgia, "Times New Roman", serif;
}

.how-quick-card p,
.trouble-card p {
    margin: 0;
    color: #a9c0d6;
    line-height: 1.65;
}

.how-step {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 26px;
    align-items: start;
    margin-top: 28px;
    padding: 30px;
}

.how-step-badge {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border: 1px solid rgba(237, 198, 98, 0.75);
    border-radius: 50%;
    color: #120c03;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.9rem;
    font-weight: 800;
    background:
        linear-gradient(
            180deg,
            #f1c85f 0%,
            #c7932f 50%,
            #8b5a15 100%
        );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.28),
        0 0 16px rgba(224,178,67,0.12);
}

.how-step-content h2 {
    margin: 2px 0 12px;
    color: #efc45b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.how-step-content p {
    max-width: 850px;
    margin: 0 0 18px;
    color: #abc2d7;
    line-height: 1.75;
}

.realm-address-box {
    max-width: 650px;
    margin: 18px 0 16px;
    padding: 20px;
    border: 1px solid rgba(98, 160, 207, 0.46);
    background:
        linear-gradient(
            180deg,
            rgba(4, 17, 29, 0.98),
            rgba(2, 11, 19, 1)
        );
    box-shadow:
        inset 0 0 20px rgba(63, 131, 181, 0.06);
}

.realm-address-label {
    display: block;
    margin-bottom: 9px;
    color: #89bfe3;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.realm-address-box code {
    color: #f0c45b;
    font-size: clamp(1.05rem, 2.7vw, 1.45rem);
    word-break: break-word;
}

.how-tip {
    max-width: 760px;
    margin-top: 18px;
    padding: 14px 16px;
    border-left: 3px solid #d7aa49;
    background: rgba(25, 39, 52, 0.62);
    color: #b9cde0;
    line-height: 1.6;
}

.troubleshooting {
    margin-top: 34px;
}

.trouble-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.how-bottom-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

@media (max-width: 900px) {
    .how-quick-grid,
    .trouble-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .how-hero {
        padding: 64px 0 54px;
    }

    .how-step {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 20px;
    }

    .how-step-badge {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .how-step-content h2 {
        font-size: 1.65rem;
    }
}
