@font-face {
    font-family: "Fuzzy Bubbles";
    src: url("fonts/FuzzyBubbles-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Schoolbell";
    src: url("fonts/Schoolbell-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

:root {
    --rr-green: #22c55e;
    --rr-green-deep: #166534;
    --rr-acid: #bef264;
    --rr-ink: #08110d;
    --rr-panel: rgba(10, 22, 15, 0.84);
    --rr-panel-border: rgba(190, 242, 100, 0.22);
    --rr-text: #eafff1;
    --sy-f-body: "Schoolbell", cursive;
    --sy-f-heading: "Fuzzy Bubbles", cursive;
    --sy-f-title: "Fuzzy Bubbles", cursive;
}

html,
body {
    background:
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.18), transparent 28%),
        radial-gradient(circle at top left, rgba(190, 242, 100, 0.12), transparent 24%),
        linear-gradient(180deg, #09110d 0%, #0f1712 100%);
    color: var(--rr-text);
}

body {
    font-family: var(--sy-f-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand {
    font-family: var(--sy-f-heading);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.announcement {
    background: linear-gradient(90deg, #14532d, #22c55e, #bef264);
    color: #041108;
    font-weight: 700;
}

main a,
article a {
    color: #9df36c;
}

table {
    background: rgba(7, 16, 11, 0.72);
    border-radius: 16px;
    overflow: hidden;
}

th {
    background: rgba(34, 197, 94, 0.14);
}

.rr-hero {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    padding: 2rem;
    margin: 1rem 0 2rem;
    border: 1px solid var(--rr-panel-border);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(190, 242, 100, 0.14), transparent 30%),
        linear-gradient(180deg, rgba(9, 20, 13, 0.96), rgba(12, 25, 17, 0.88));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.rr-hero__art img {
    width: 100%;
    max-width: 360px;
    display: block;
    margin-inline: auto;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
}

.rr-eyebrow {
    margin: 0 0 0.5rem;
    color: var(--rr-acid);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
}

.rr-lead {
    font-size: 1.1rem;
    max-width: 46rem;
}

.rr-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.rr-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.rr-button--primary {
    color: #05110a;
    background: linear-gradient(135deg, var(--rr-acid), var(--rr-green));
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.22);
}

.rr-button--secondary {
    color: var(--rr-text);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--rr-panel-border);
}

.rr-grid {
    display: grid;
    gap: 1rem;
    margin: 1rem 0 2rem;
}

.rr-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rr-card {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1.1rem 1.15rem;
    border-radius: 22px;
    border: 1px solid var(--rr-panel-border);
    background: var(--rr-panel);
    color: var(--rr-text);
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.rr-card:hover {
    border-color: rgba(190, 242, 100, 0.45);
}

@media (max-width: 960px) {
    .rr-hero,
    .rr-grid--three {
        grid-template-columns: 1fr;
    }
}
