
:root {
    --bg: #0f1117;
    --card: #14151b;
    --soft: #0f1218;
    --muted: #9aa0a6;
    --text: #ffffff;
    --accent: #4effff;
    --ring: rgba(78, 255, 255, .25);
    --ok: #27ae60;
    --danger: #e74c3c;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .4);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    background: url("https://rimuruslime.com/wp-content/uploads/2025/12/christmas_cover.jpg") center center / cover no-repeat fixed;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.45;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(15, 17, 23, .94), rgba(15, 17, 23, .94)),
        radial-gradient(circle at top, rgba(78, 255, 255, 0.12), transparent 55%),
        radial-gradient(circle at bottom, rgba(0, 0, 0, 0.7), transparent 60%);
    background-color: #0506092d;
}

img {
    max-width: 100%;
    display: block;
}


button {
    font: inherit;
    font-weight: 700;
}

.upage {
    max-width: 1120px;
    margin: 0 auto;
    padding: 56px 16px 16px;
    font-family: "Poppins", sans-serif;

}

/* HEADER / TOP BAR */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: saturate(140%) blur(8px);
    background: linear-gradient(180deg, rgba(15, 17, 23, .96), rgba(15, 17, 23, .80), rgba(15, 17, 23, 0));
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    max-width: 1120px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, #ffffff, var(--accent) 40%, transparent 70%),
        #05070a;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow:
        0 0 12px rgba(78, 255, 255, .6),
        0 0 24px rgba(78, 255, 255, .35),
        inset 0 0 0 1px rgba(0, 0, 0, .6);
}

.brand-name {
    font-weight: 800;
    letter-spacing: .3px;
    font-size: .95rem;
}

.brand-sub {
    font-size: .7rem;
    color: var(--muted);
}

.nav-links {
    display: none;
    gap: 8px;
    align-items: center;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .03);
    font-size: .78rem;
    color: var(--muted);
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, transform .12s ease;
}

.nav-pill span:last-child {
    font-size: .9em;
    opacity: .8;
}

.nav-pill:hover {
    background: rgba(78, 255, 255, .08);
    border-color: rgba(78, 255, 255, .45);
    color: var(--accent);
    transform: translateY(-1px);
}

@media (min-width: 720px) {
    .nav-links {
        display: flex;
    }
}

/* BUTTONS / PILLS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .02);
    color: #fff;
    cursor: pointer;
    transition:
        transform .12s ease,
        border-color .18s ease,
        background .18s ease,
        box-shadow .18s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, .25);
}

.ubtn-primary {
    background: var(--accent);
    color: #000;
    border-color: transparent;
    box-shadow:
        0 0 14px rgba(78, 255, 255, .7),
        0 10px 24px rgba(0, 0, 0, .7) !important;
}

.btn-secondary {
    background: #fc9bff;
    color: #000;
    border-color: transparent;
    box-shadow:
        0 0 14px rgba(255, 78, 240, 0.7),
        0 10px 24px rgba(0, 0, 0, .7) !important;
}

.feature-card .btn {
    margin-bottom: 10px;
    align-self: center;
    padding: 8px 14px;
    font-size: .85rem;
    font-weight: 600;
}

@media (max-width: 480px) {
    .feature-card .btn {
        text-align: center;
        justify-content: center;
    }
}

.ubtn-primary:hover {
    box-shadow:
        0 0 18px rgba(78, 255, 255, .9),
        0 14px 30px rgba(0, 0, 0, .8);
}

.btn-ghost {
    background: transparent;
}

.btn-block {
    width: 100%;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .78rem;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    color: var(--muted);
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--accent), transparent 65%);
}

/* HERO */

.hero {
    padding: 18px 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

@media (min-width: 900px) {
    .hero {
        padding: 30px 0 18px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, .9fr);
        align-items: center;
    }
}

.hero-eyebrow {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--muted);
    margin-bottom: 6px;
    align-items: center;
    gap: 6px;
}

.hero-eyebrow-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    box-shadow:
        0 0 10px rgba(78, 255, 255, .8),
        0 0 18px rgba(78, 255, 255, .6);
}

.hero-title {
    margin: 0 0 8px;
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    letter-spacing: .2px;
}

.hero-sub {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: .95rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.hero-statline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-statline .pill {
    background: #12131a;
    border-color: #232634;
    color: #dfe7f0;
}

/* Hero side card */

.hero-card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
}

.hero-card-title {
    font-size: 1rem;
    margin: 0 0 8px;
}

.hero-card-sub {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: .9rem;
}

/* SECTIONS */

.section {
    padding: 22px 0 6px;
}

.section-header {
    margin-bottom: 10px;
}

.section-kicker {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--muted);
    margin-bottom: 4px;
}

.section-title {
    font-size: 1.15rem;
    margin: 0 0 6px;
    letter-spacing: .2px;
}

.section-sub {
    margin: 0;
    font-size: .9rem;
    color: var(--muted);
}

/* CARD GRID */

.feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-top: 14px;
}

@media (min-width: 640px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* @media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
} */

.feature-card {
    background: var(--card);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 14px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-badge {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--soft);
    border: 1px solid rgba(255, 255, 255, .06);
    font-size: 1.1rem;
}

.feature-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}

.feature-title {
    margin: 0;
    font-size: .98rem;
    font-weight: 600;
}

.feature-body {
    margin: 0;
    font-size: .9rem;
    color: var(--muted);
}

.feature-footer strong,
.feature-body strong {
    color: var(--accent);
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    font-size: .88rem;
    color: var(--muted);
    display: grid;
    gap: 4px;
}

.feature-list li {
    position: relative;
    padding-left: 14px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: .55em;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--accent), transparent 65%);
}

.feature-footer {
    margin-top: 6px;
    font-size: .8rem;
    color: var(--muted);
}

/* GACHA PACKS */

.pack-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-top: 14px;
}

@media (min-width: 720px) {
    .pack-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.pack-card {
    position: relative;
    background: var(--card);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 14px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pack-card.featured {
    border-color: rgba(78, 255, 255, .6);
    box-shadow:
        0 0 0 1px rgba(78, 255, 255, .25),
        0 10px 30px rgba(0, 0, 0, .7);
}

.pack-ribbon {
    position: absolute;
    top: -10px;
    right: 12px;
    background: var(--accent);
    color: #000;
    font-weight: 800;
    font-size: .72rem;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .4);
}

.pack-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pack-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pack-label {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--muted);
}

.pack-title {
    font-size: 1rem;
    font-weight: 600;
}

.pack-pricepill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .02);
    font-size: .78rem;
}

.pack-pricepill span:first-child {
    font-size: .85rem;
}

.pack-body {
    font-size: .9rem;
    color: var(--muted);
}

.pack-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: grid;
    gap: 4px;
    font-size: .88rem;
}

.pack-list li {
    position: relative;
    padding-left: 14px;
}

.pack-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: .55em;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--accent), transparent 65%);
}

.pack-note {
    margin-top: 6px;
    font-size: .8rem;
    color: var(--muted);
}

/* FOOTER */

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 18px 0 6px;
    margin-top: 10px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: .8rem;
    color: var(--muted);
    align-items: flex-start;
}

@media (min-width: 720px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(78, 255, 255, .08);
    border: 1px solid rgba(78, 255, 255, .35);
    color: var(--accent);
    cursor: pointer;
    font-weight: 600;
    font-size: .78rem;
    text-shadow: 0 0 6px rgba(78, 255, 255, .5);
    transition: background .18s ease, color .18s ease, transform .12s ease, text-shadow .18s ease;
}

.footer-link:hover {
    background: var(--accent);
    color: #000;
    text-shadow: none;
    transform: translateY(-2px);
}

/* FOCUS */

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    box-shadow: 0 0 0 6px var(--ring);
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

.feature-badge img {
    max-width: 80%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}