:root {
    --bg: #070c12;
    --bg-soft: #101923;
    --panel: rgba(12, 24, 32, 0.9);
    --panel-strong: rgba(17, 32, 42, 0.96);
    --line: rgba(100, 184, 232, 0.34);
    --line-strong: rgba(100, 184, 232, 0.62);
    --text: #f4fbff;
    --muted: #a8cce2;
    --blue: #62d4ff;
    --gold: #ffc928;
    --green: #39ff9a;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
}

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

img {
    max-width: 100%;
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 34px;
    background: rgba(4, 9, 13, 0.9);
    border-bottom: 1px solid rgba(98, 212, 255, 0.22);
    backdrop-filter: blur(14px);
}

.site-brand img {
    display: block;
    width: 132px;
    filter: drop-shadow(0 8px 20px rgba(98, 212, 255, 0.2));
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
}

.site-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid transparent;
    color: #e4f4ff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-nav a:hover {
    border-color: var(--line-strong);
    background: rgba(21, 48, 65, 0.68);
}

.site-nav i,
.section-icon,
.download-art,
.discord-card i {
    color: var(--gold);
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 124px 32px 72px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 201, 40, 0.36);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 12, 18, 0.96), rgba(7, 12, 18, 0.56) 42%, rgba(7, 12, 18, 0.88)),
        linear-gradient(180deg, rgba(7, 12, 18, 0.18), rgba(7, 12, 18, 0.9)),
        url("../images/bg/bg.jpg") center / cover no-repeat;
    transform: scale(1.03);
}

.hero-layout {
    position: relative;
    z-index: 2;
    width: min(1220px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: end;
}

.hero-copy-block {
    max-width: 780px;
}

.hero-logo {
    width: min(390px, 74vw);
    display: block;
    margin-bottom: 18px;
    filter: drop-shadow(0 18px 34px rgba(62, 190, 255, 0.24));
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    letter-spacing: 0;
}

.hero h1 {
    margin: 0;
    font-size: clamp(44px, 7vw, 94px);
    line-height: 0.96;
    text-transform: uppercase;
    text-shadow: 0 0 28px rgba(98, 212, 255, 0.28);
}

.hero-copy {
    max-width: 700px;
    margin: 22px 0 0;
    color: #c8e8f9;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 700;
}

.hero-actions,
.download-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions {
    margin-top: 30px;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: 1px solid rgba(98, 212, 255, 0.36);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.btn-primary {
    border-color: rgba(255, 201, 40, 0.86);
    background: linear-gradient(180deg, #c48a10, #7c4f05);
    box-shadow: 0 0 28px rgba(255, 201, 40, 0.14);
}

.btn-secondary {
    background: rgba(17, 35, 47, 0.88);
}

.btn:hover {
    transform: translateY(-1px);
    border-color: var(--blue);
}

.hero-status-panel {
    border: 1px solid var(--line);
    background: rgba(5, 13, 18, 0.76);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), inset 0 0 30px rgba(98, 212, 255, 0.035);
}

.hero-status-panel div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(98, 212, 255, 0.18);
}

.hero-status-panel div:last-child {
    border-bottom: 0;
}

.hero-status-panel span {
    color: var(--muted);
    font-weight: 800;
}

.hero-status-panel strong {
    color: var(--green);
    font-size: 18px;
}

.section {
    padding: 86px 32px;
    background:
        radial-gradient(circle at 12% 0%, rgba(98, 212, 255, 0.08), transparent 34%),
        var(--bg-soft);
}

.section:nth-of-type(odd) {
    background:
        radial-gradient(circle at 88% 0%, rgba(255, 201, 40, 0.08), transparent 30%),
        #0b1219;
}

.section-head,
.feature-board,
.boss-strip,
.download-board,
.account-panel,
.donate-panel {
    width: min(1220px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.section-head {
    margin-bottom: 28px;
}

.section-head h2,
.account-panel h2,
.donate-panel h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
}

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

.feature-board article,
.download-board article,
.account-panel,
.donate-panel {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(12, 25, 34, 0.96), rgba(20, 33, 43, 0.88));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22), inset 0 0 34px rgba(98, 212, 255, 0.035);
}

.feature-board article {
    padding: 22px;
}

.section-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 201, 40, 0.36);
    background: rgba(255, 201, 40, 0.08);
    font-size: 18px;
}

.feature-board h3,
.download-board h3 {
    margin: 16px 0;
    font-size: 22px;
}

.feature-board ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-board li,
.boss-strip div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid rgba(98, 212, 255, 0.14);
    padding: 10px 0;
}

.feature-board li:last-child {
    border-bottom: 0;
}

.feature-board span,
.boss-strip span,
.download-board p,
.account-panel p,
.donate-panel p {
    color: var(--muted);
    font-weight: 800;
}

.feature-board strong,
.boss-strip strong {
    color: var(--green);
    text-align: right;
}

.boss-strip {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border: 1px solid var(--line);
    background: rgba(5, 13, 18, 0.52);
}

.boss-strip div {
    display: block;
    border-bottom: 0;
    border-right: 1px solid rgba(98, 212, 255, 0.16);
    padding: 16px;
}

.boss-strip div:last-child {
    border-right: 0;
}

.boss-strip span,
.boss-strip strong {
    display: block;
}

.boss-strip strong {
    margin-top: 6px;
    text-align: left;
}

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

.download-board article {
    padding: 24px;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
}

.download-art {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 201, 40, 0.34);
    background: rgba(255, 201, 40, 0.08);
    font-size: 24px;
}

.download-board p,
.account-panel p,
.donate-panel p {
    line-height: 1.65;
}

.download-actions {
    grid-column: 1 / -1;
}

.account-panel,
.donate-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 28px;
}

.account-panel p,
.donate-panel p {
    max-width: 760px;
}

.vote-card,
.discord-card {
    position: fixed;
    z-index: 40;
    border: 1px solid rgba(98, 212, 255, 0.32);
    background: rgba(5, 13, 18, 0.84);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.vote-card {
    left: 18px;
    bottom: 22px;
    width: 174px;
    padding: 12px;
}

.vote-card strong {
    display: block;
    color: var(--green);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 13px;
}

.vote-card img {
    display: block;
    width: 100%;
}

.discord-card {
    right: 18px;
    bottom: 22px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    color: #fff;
    font-weight: 900;
}

.discord-card i {
    color: #9fb7ff;
    font-size: 22px;
}

.site-footer {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 28px;
    border-top: 1px solid rgba(98, 212, 255, 0.18);
    background: #060a0f;
    color: var(--muted);
    font-weight: 800;
}

@media (max-width: 1100px) {
    .hero-layout,
    .feature-board,
    .download-board {
        grid-template-columns: 1fr;
    }

    .hero-status-panel {
        width: min(520px, 100%);
    }

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

@media (max-width: 820px) {
    .site-header {
        position: sticky;
        height: auto;
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 16px;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .site-nav a {
        flex: 0 0 auto;
    }

    .hero {
        min-height: auto;
        padding: 58px 18px;
    }

    .section {
        padding: 58px 18px;
    }

    .account-panel,
    .donate-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .vote-card,
    .discord-card {
        display: none;
    }
}

@media (max-width: 540px) {
    .boss-strip {
        grid-template-columns: 1fr;
    }

    .boss-strip div {
        border-right: 0;
        border-bottom: 1px solid rgba(98, 212, 255, 0.16);
    }

    .download-board article {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }
}
