* {
    box-sizing: border-box;
}

:root {
    --ink: #26211d;
    --muted: #6a5f56;
    --cream: #fff6e7;
    --gold: #d9a94f;
    --orange: #d8784f;
    --coral: #b94e3d;
    --teal: #168f9a;
    --blue: #5865f2;
    --line: rgba(72, 54, 38, 0.22);
    --shadow: rgba(31, 24, 18, 0.22);
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
}

body {
    overflow: hidden;
    font-family: Verdana, Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 234, 166, 0.85), transparent 18%),
        radial-gradient(circle at 78% 24%, rgba(255, 131, 91, 0.34), transparent 24%),
        radial-gradient(circle at 72% 78%, rgba(39, 175, 190, 0.24), transparent 28%),
        linear-gradient(135deg, #efbd67 0%, #e88d65 38%, #5c8799 72%, #1b3144 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to top, rgba(22, 34, 45, 0.58), transparent 42%),
        repeating-linear-gradient(to right,
            rgba(255, 255, 255, 0.07) 0 1px,
            transparent 1px 130px);
    opacity: 0.65;
}

body::after {
    content: "";
    position: fixed;
    left: -10%;
    right: -10%;
    bottom: -1px;
    height: 18vh;
    pointer-events: none;
    background:
        linear-gradient(to top, rgba(20, 28, 36, 0.95), rgba(20, 28, 36, 0.15)),
        repeating-linear-gradient(90deg,
            rgba(20, 25, 30, 0.95) 0 70px,
            rgba(28, 34, 40, 0.95) 70px 120px);
    clip-path: polygon(0 48%, 8% 40%, 13% 54%, 22% 32%, 31% 52%, 40% 36%, 50% 50%, 58% 30%, 67% 46%, 75% 28%, 84% 46%, 92% 36%, 100% 48%, 100% 100%, 0 100%);
    opacity: 0.82;
}

.page {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    padding: 28px;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 14px;
}

.hero {
    width: min(1120px, 100%);
    min-height: 0;
    margin: auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
    padding: 42px;
    background:
        linear-gradient(145deg, rgba(255, 248, 235, 0.97), rgba(255, 235, 207, 0.95));
    border: 1px solid rgba(68, 51, 35, 0.18);
    border-radius: 8px;
    box-shadow:
        0 28px 70px rgba(20, 28, 38, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 12%, rgba(217, 169, 79, 0.14), transparent 22%),
        radial-gradient(circle at 92% 12%, rgba(22, 143, 154, 0.11), transparent 22%);
}

.hero::after {
    content: "PLS";
    position: absolute;
    right: -14px;
    bottom: -30px;
    color: rgba(184, 78, 61, 0.07);
    font-size: 12rem;
    font-weight: 900;
    letter-spacing: -0.14em;
    line-height: 1;
    pointer-events: none;
}

.left,
.right {
    position: relative;
    z-index: 1;
}

.badge {
    width: fit-content;
    margin-bottom: 28px;
    padding: 8px 12px;
    color: #fff9ec;
    background: linear-gradient(135deg, var(--coral), var(--gold));
    border-radius: 4px;
    box-shadow: 0 10px 18px rgba(184, 78, 61, 0.18);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.kicker {
    margin: 0 0 10px;
    color: var(--teal);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(4.1rem, 7.2vw, 6.35rem);
    line-height: 0.84;
    letter-spacing: -0.075em;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.82);
}

.tagline {
    max-width: 580px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.55;
}

.actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    color: #fff;
    background: #5865f2;
    border: 1px solid rgba(28, 36, 142, 0.22);
    border-radius: 5px;
    box-shadow: 0 11px 20px rgba(88, 101, 242, 0.22);
    font-size: 0.93rem;
    font-weight: 800;
    text-decoration: none;
}

.button:hover {
    background: #6672f5;
}

.discord-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
}

.discord-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.status {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    color: var(--teal);
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(22, 143, 154, 0.24);
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 800;
}

.status span {
    width: 9px;
    height: 9px;
    display: inline-block;
    background: #30bf87;
    border-radius: 2px;
    box-shadow: 0 0 0 4px rgba(48, 191, 135, 0.14);
}

.street-sign {
    width: 100%;
    margin-bottom: 18px;
    padding: 18px;
    color: #fffaf0;
    background:
        linear-gradient(135deg, rgba(22, 143, 154, 0.96), rgba(18, 112, 130, 0.96));
    border: 3px solid rgba(255, 255, 255, 0.84);
    border-radius: 6px;
    box-shadow: 0 15px 26px rgba(30, 92, 105, 0.18);
    text-align: center;
}

.street-sign span {
    display: block;
    margin-bottom: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    opacity: 0.82;
}

.street-sign strong {
    display: block;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-list article {
    min-height: 132px;
    padding: 17px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(93, 68, 43, 0.2);
    border-radius: 6px;
    box-shadow: 0 11px 22px rgba(83, 58, 38, 0.09);
}

.feature-list h2 {
    margin: 0 0 8px;
    color: var(--coral);
    font-size: 1rem;
}

.feature-list p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

footer {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: rgba(255, 248, 235, 0.78);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
    body {
        overflow: auto;
    }

    .page {
        min-height: 100vh;
        height: auto;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    h1 {
        font-size: 4rem;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .page {
        padding: 14px;
    }

    .hero {
        padding: 22px;
        border-radius: 6px;
    }

    .badge {
        margin-bottom: 20px;
    }

    h1 {
        font-size: 3.15rem;
    }

    .tagline {
        font-size: 0.98rem;
    }

    .actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button,
    .status {
        width: 100%;
        justify-content: center;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }
}