﻿:root {
    --bg: #070b0f;
    --bg-soft: #0d141c;
    --panel: #111a24;
    --panel-light: #172330;
    --border: #263746;
    --text: #f2f4f6;
    --muted: #9aa9b6;
    --gold: #d2ad58;
    --gold-light: #f1d383;
    --green: #51c878;
    --blue: #74b7e8;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(70, 155, 220, 0.28),
            transparent 35%
        ),
        radial-gradient(
            circle at 15% 25%,
            rgba(30, 90, 140, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 35%,
            rgba(55, 125, 180, 0.14),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #07111b 0%,
            #050a10 35%,
            #030609 100%
        );

    background-attachment: fixed;
    color: var(--text);
}

a {
    color: inherit;
}

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

.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 10, 15, 0.95);
    border-bottom: 1px solid rgba(210, 173, 88, 0.25);
    backdrop-filter: blur(12px);
}

.header-content {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    text-decoration: none;
    color: var(--gold-light);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: #d6dee5;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: 0.2s;
}

nav a:hover {
    color: var(--gold-light);
}

.hero {
    min-height: 650px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(100, 190, 255, 0.25);

    background:
    linear-gradient(
        90deg,
        rgba(3, 8, 13, 0.90) 0%,
        rgba(5, 13, 22, 0.70) 42%,
        rgba(7, 25, 40, 0.55) 72%,
        rgba(5, 12, 18, 0.80) 100%
    ),
    url("../images/background.jpg") center center / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 90px,
            rgba(255,255,255,0.025) 91px,
            rgba(255,255,255,0.025) 92px
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 70px;
    padding-bottom: 70px;
}

.hero-kicker {
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 820px;
    margin: 15px 0 18px;
    font-size: clamp(50px, 7vw, 86px);
    line-height: 0.95;
    letter-spacing: -3px;
    text-shadow:
        0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-description {
    max-width: 700px;
    margin: 0;
    color: #c0ccd5;
    font-size: 19px;
    line-height: 1.7;
}

.hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-tags span {
    padding: 9px 13px;
    background: rgba(22, 35, 48, 0.72);
    border: 1px solid rgba(116, 183, 232, 0.25);
    border-radius: 5px;
    color: #c9dcea;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition:
        transform 0.2s,
        background 0.2s,
        border-color 0.2s;
}

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

.btn-primary {
    color: #17120a;
    background: linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );
    border: 1px solid var(--gold-light);
}

.btn-secondary {
    color: #e5edf2;
    background: rgba(17, 26, 36, 0.8);
    border: 1px solid #50677a;
}

.server-status,
.features-section,
.ranking-preview,
.start-section {
    padding: 85px 0;
}

.server-status {
    background: rgba(8, 13, 19, 0.85);
}

.section-header {
    margin-bottom: 32px;
}

.section-header > span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-header h2 {
    margin: 8px 0 0;
    font-size: clamp(30px, 4vw, 44px);
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
}

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

.status-card {
    min-height: 145px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(
            145deg,
            var(--panel-light),
            var(--panel)
        );
    border: 1px solid var(--border);
    border-radius: 8px;
}

.status-label {
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.status-card strong {
    font-size: 26px;
}

.status-online {
    color: var(--green);
}

.realmlist {
    font-size: 18px !important;
    color: var(--blue);
    word-break: break-word;
}

.features-section {
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(61, 121, 157, 0.1),
            transparent 30%
        );
}

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

.feature-card {
    min-height: 245px;
    padding: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(19, 30, 42, 0.96),
            rgba(11, 18, 26, 0.96)
        );
    border: 1px solid var(--border);
    border-radius: 8px;
    transition:
        transform 0.2s,
        border-color 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(210, 173, 88, 0.55);
}

.feature-number {
    color: var(--gold);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
}

.feature-card h3 {
    margin: 30px 0 12px;
    font-size: 22px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.ranking-preview {
    background: #090f15;
    border-top: 1px solid #172431;
    border-bottom: 1px solid #172431;
}

.ranking-link {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 800;
}

.ranking-link:hover {
    text-decoration: underline;
}

.ranking-card,
.ranking-preview-card {
    overflow-x: auto;
    background:
        linear-gradient(
            145deg,
            #121c26,
            #0d151d
        );
    border: 1px solid var(--border);
    border-radius: 8px;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
}

.ranking-table th,
.ranking-table td {
    padding: 17px 18px;
    text-align: left;
    border-bottom: 1px solid #263746;
}

.ranking-table th {
    background: #17222e;
    color: #dfe8ef;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ranking-table td {
    color: #d2dbe2;
}

.ranking-table tbody tr {
    transition: background 0.2s;
}

.ranking-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.025);
}

.player-name {
    color: #fff !important;
    font-weight: 700;
}

.page-title {
    padding: 55px 0 25px;
}

.page-title h2 {
    margin: 0 0 8px;
    font-size: 38px;
}

.page-title p {
    color: var(--muted);
}

.online {
    color: var(--green);
    font-weight: 800;
}

.offline {
    color: #82909c;
}

.start-section {
    background:
        linear-gradient(
            135deg,
            #101a23,
            #071018
        );
}

.start-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 45px;
    border: 1px solid rgba(210, 173, 88, 0.35);
    border-radius: 10px;
    background:
        linear-gradient(
            135deg,
            rgba(210, 173, 88, 0.08),
            rgba(32, 78, 108, 0.08)
        );
}

.start-box h2 {
    margin: 10px 0;
    font-size: 34px;
}

.start-box p {
    color: var(--muted);
    margin: 0;
}

.start-box .hero-buttons {
    margin-top: 0;
    flex-shrink: 0;
}

.main-footer {
    padding: 40px 0;
    background: #05090d;
    border-top: 1px solid #172431;
    color: var(--muted);
}

.main-footer strong {
    color: var(--gold-light);
}

.main-footer p {
    margin: 8px 0 0;
    font-size: 13px;
}

@media (max-width: 980px) {

    .header-content {
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .start-box {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 650px) {

    nav {
        gap: 14px;
    }

    nav a {
        font-size: 12px;
    }

    .hero {
    min-height: 650px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(100, 190, 255, 0.25);

    background:
        radial-gradient(
            circle at 72% 45%,
            rgba(90, 190, 255, 0.26),
            transparent 18%
        ),
        radial-gradient(
            circle at 72% 45%,
            rgba(20, 70, 110, 0.30),
            transparent 38%
        ),
        linear-gradient(
            90deg,
            rgba(3, 8, 13, 0.98) 0%,
            rgba(5, 13, 22, 0.92) 42%,
            rgba(7, 25, 40, 0.72) 72%,
            rgba(5, 12, 18, 0.90) 100%
        );
}

    .hero h1 {
        letter-spacing: -2px;
    }

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

    .section-header-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .start-box {
        padding: 28px;
    }

    .hero-buttons {
        width: 100%;
    }

    .btn {
        flex: 1;
    }

}

/* ===============================
   WOTLK / FROZEN THEME
   =============================== */

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(125, 210, 255, 0.04),
            transparent 25%,
            transparent 70%,
            rgba(0, 0, 0, 0.65)
        );

    box-shadow:
        inset 0 -100px 120px rgba(0, 0, 0, 0.75);
}

.hero h1 {
    color: #f4fbff;

    text-shadow:
        0 0 8px rgba(120, 205, 255, 0.55),
        0 0 25px rgba(55, 145, 220, 0.35),
        0 5px 15px rgba(0, 0, 0, 0.85);
}

.hero-kicker {
    color: #8fd7ff;
    text-shadow:
        0 0 12px rgba(90, 190, 255, 0.45);
}

.brand {
    color: #c7edff;

    text-shadow:
        0 0 10px rgba(90, 190, 255, 0.35);
}

.main-header {
    background:
        linear-gradient(
            180deg,
            rgba(4, 11, 18, 0.98),
            rgba(5, 13, 20, 0.94)
        );

    border-bottom:
        1px solid rgba(95, 190, 250, 0.25);
}

.feature-card,
.status-card,
.ranking-card,
.ranking-preview-card {
    box-shadow:
        inset 0 1px 0 rgba(150, 220, 255, 0.03),
        0 12px 30px rgba(0, 0, 0, 0.25);
}

.feature-card:hover {
    border-color:
        rgba(100, 190, 250, 0.60);

    box-shadow:
        0 0 22px rgba(65, 155, 220, 0.12);
}

.status-online {
    color: #78e6a1;

    text-shadow:
        0 0 10px rgba(80, 220, 140, 0.25);
}

.realmlist {
    color: #8ed8ff;
}

.ranking-table th {
    background:
        linear-gradient(
            180deg,
            #172838,
            #101c28
        );
}

.server-status,
.ranking-preview {
    background:
        linear-gradient(
            180deg,
            rgba(4, 10, 16, 0.92),
            rgba(7, 15, 23, 0.94)
        );
}

.start-section {
    background:
        radial-gradient(
            circle at center,
            rgba(55, 125, 180, 0.10),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            #07111a,
            #04090e
        );
}


/* =====================================
   ACCOUNT / REGISTER
   ===================================== */

.account-page {
    min-height: calc(100vh - 78px);
    padding: 90px 0;

    background:
        radial-gradient(
            circle at 25% 40%,
            rgba(55, 145, 210, 0.17),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            rgba(4, 10, 16, 0.98),
            rgba(8, 22, 34, 0.96)
        );
}

.account-wrapper {
    display: grid;
    grid-template-columns: 1fr 480px;
    align-items: center;
    gap: 80px;
}

.account-intro h1 {
    margin: 10px 0 18px;
    font-size: clamp(48px, 7vw, 78px);
    letter-spacing: -3px;
}

.account-intro p {
    max-width: 540px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.account-realm {
    display: inline-flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 28px;
    padding: 17px 20px;
    border: 1px solid rgba(100, 190, 250, 0.28);
    border-radius: 7px;
    background: rgba(8, 20, 30, 0.72);
}

.account-realm span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.account-realm strong {
    color: #8ed8ff;
    font-size: 18px;
}

.form-card {
    padding: 34px;

    border:
        1px solid rgba(100, 190, 250, 0.25);

    border-radius: 10px;

    background:
        linear-gradient(
            145deg,
            rgba(20, 34, 47, 0.96),
            rgba(9, 17, 25, 0.98)
        );

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.45);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;

    color: #cbd7df;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    height: 52px;

    padding: 0 15px;

    border: 1px solid #334b5f;
    border-radius: 5px;

    outline: none;

    background: #09121a;
    color: #fff;

    font-size: 16px;

    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.form-group input:focus {
    border-color: #72bee9;

    box-shadow:
        0 0 0 3px rgba(80, 170, 225, 0.10);
}

.form-submit {
    width: 100%;
    margin-top: 8px;
    cursor: pointer;
}

.form-message {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 5px;
    font-weight: 700;
    line-height: 1.5;
}

.form-message.success {
    color: #91f0ae;
    border: 1px solid rgba(75, 200, 115, 0.35);
    background: rgba(30, 120, 65, 0.15);
}

.form-message.error {
    color: #ff9d9d;
    border: 1px solid rgba(220, 70, 70, 0.35);
    background: rgba(150, 30, 30, 0.15);
}

.form-help {
    margin: 22px 0 0;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}

.form-help a {
    color: #8ed8ff;
    font-weight: 700;
    text-decoration: none;
}

.form-help a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {

    .account-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .form-card {
        max-width: 540px;
    }

}


/* =====================================
   PLAYER ACCOUNT
   ===================================== */

.player-account-page {
    min-height: calc(100vh - 78px);
    padding: 75px 0 100px;

    background:
        radial-gradient(
            circle at 75% 0%,
            rgba(60, 145, 205, 0.13),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #07111a,
            #050a0f
        );
}

.account-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 45px;
}

.account-dashboard-header h1 {
    margin: 8px 0 10px;
    font-size: clamp(42px, 6vw, 65px);
    letter-spacing: -2px;
}

.account-dashboard-header p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.account-info-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 70px;
}

.account-date {
    font-size: 16px !important;
}

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

.empty-account {
    padding: 35px;

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

    background: var(--panel);

    color: var(--muted);

    text-align: center;
}

@media (max-width: 900px) {

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

    .account-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 550px) {

    .account-info-grid {
        grid-template-columns: 1fr;
    }

}


/* =====================================
   WOW BRAZUCA CUSTOM - FROZEN LK THEME
   ===================================== */

body {
    min-height: 100vh;

    background:
        radial-gradient(
            ellipse at 50% -10%,
            rgba(82, 184, 255, 0.32) 0%,
            rgba(22, 78, 120, 0.15) 28%,
            transparent 55%
        ),
        radial-gradient(
            circle at 8% 38%,
            rgba(49, 144, 210, 0.17),
            transparent 32%
        ),
        radial-gradient(
            circle at 92% 48%,
            rgba(43, 126, 190, 0.15),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            #071421 0%,
            #050c13 34%,
            #020609 72%,
            #010304 100%
        );

    background-attachment: fixed;
}

/* Brilho congelado atrás da página */

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;

    background:
        radial-gradient(
            ellipse at center top,
            rgba(110, 207, 255, 0.16),
            transparent 42%
        ),
        linear-gradient(
            110deg,
            transparent 0%,
            rgba(120, 210, 255, 0.018) 35%,
            transparent 36%
        ),
        linear-gradient(
            70deg,
            transparent 0%,
            rgba(120, 210, 255, 0.018) 65%,
            transparent 66%
        );
}

/* Névoa / gelo na parte inferior */

body::after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    height: 320px;

    z-index: -1;
    pointer-events: none;

    background:
        radial-gradient(
            ellipse at 20% 100%,
            rgba(79, 171, 225, 0.13),
            transparent 50%
        ),
        radial-gradient(
            ellipse at 70% 100%,
            rgba(76, 165, 220, 0.10),
            transparent 55%
        ),
        linear-gradient(
            180deg,
            transparent,
            rgba(24, 72, 104, 0.12)
        );

    filter: blur(8px);
}

/* Header mais estilo Icecrown */

.main-header {
    background:
        linear-gradient(
            180deg,
            rgba(3, 10, 17, 0.98),
            rgba(5, 16, 25, 0.95)
        );

    border-bottom:
        1px solid rgba(103, 195, 255, 0.32);

    box-shadow:
        0 5px 35px rgba(0, 0, 0, 0.55),
        0 1px 18px rgba(58, 151, 218, 0.08);
}

/* Logo congelada */

.brand {
    color: #d8f3ff;

    text-shadow:
        0 0 7px rgba(120, 212, 255, 0.55),
        0 0 24px rgba(66, 157, 220, 0.25);
}

/* Conteúdo das páginas */

.account-page,
.player-account-page {
    background:
        radial-gradient(
            circle at 50% 15%,
            rgba(65, 160, 225, 0.12),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            rgba(4, 13, 21, 0.42),
            rgba(2, 7, 11, 0.72)
        );
}

/* Painéis */

.form-card,
.status-card,
.feature-card,
.ranking-card,
.ranking-preview-card {
    background:
        linear-gradient(
            145deg,
            rgba(19, 37, 52, 0.94),
            rgba(6, 15, 23, 0.97)
        );

    border:
        1px solid rgba(94, 173, 225, 0.27);

    box-shadow:
        inset 0 1px 0 rgba(165, 224, 255, 0.04),
        0 18px 40px rgba(0, 0, 0, 0.32);
}

/* Painéis quando passa o mouse */

.feature-card:hover {
    border-color:
        rgba(126, 211, 255, 0.65);

    box-shadow:
        0 0 25px rgba(54, 153, 220, 0.13),
        0 18px 40px rgba(0, 0, 0, 0.34);
}

/* Títulos */

.hero h1,
.account-intro h1,
.account-dashboard-header h1,
.section-header h2 {
    color: #f2faff;

    text-shadow:
        0 0 8px rgba(113, 198, 245, 0.18),
        0 3px 8px rgba(0, 0, 0, 0.65);
}

/* Pequenos títulos azuis */

.hero-kicker,
.section-header > span,
.feature-number {
    color: #8bd7ff;
}

/* Botão principal congelado */

.btn-primary {
    color: #031019;

    background:
        linear-gradient(
            135deg,
            #73c9f4,
            #c9efff
        );

    border:
        1px solid #d4f4ff;

    box-shadow:
        0 0 18px rgba(82, 179, 235, 0.16);
}

.btn-primary:hover {
    box-shadow:
        0 0 28px rgba(93, 193, 245, 0.28);
}

/* Menu */

nav a:hover {
    color: #93dcff;

    text-shadow:
        0 0 10px rgba(91, 190, 240, 0.3);
}

/* Tabela */

.ranking-table th {
    background:
        linear-gradient(
            180deg,
            rgba(25, 50, 69, 0.98),
            rgba(12, 29, 42, 0.98)
        );

    color: #d8f3ff;
}

/* Realmlist */

.realmlist,
.account-realm strong {
    color: #93dcff;

    text-shadow:
        0 0 10px rgba(72, 173, 230, 0.25);
}

/* Status online */

.status-online,
.online {
    color: #74e59a;

    text-shadow:
        0 0 10px rgba(75, 220, 130, 0.22);
}


/* =====================================
   HERO COM FUNDO GELADO
   ===================================== */

.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(3, 8, 14, 0.96) 0%,
            rgba(3, 9, 15, 0.88) 38%,
            rgba(4, 11, 18, 0.55) 68%,
            rgba(3, 8, 14, 0.30) 100%
        ),
        url("../img/background.jpg");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.12),
            rgba(0, 0, 0, 0.15) 55%,
            rgba(2, 7, 11, 0.82) 100%
        );

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}
.downloads-box {
    margin-top: 30px;
    padding: 24px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
}

.download-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.download-btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background: #9a6b18;
    transition: 0.2s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.15);
}

.downloads-box pre {
    padding: 12px;
    border-radius: 6px;
    overflow-x: auto;
}

