/* Supersreca v2 (fixed) — clean, responsive */
:root {
    --bg: #c0f5fa;
    --card: #ffffff;
    --text: #0b1220;
    --muted: #5b6476;
    --accent: #3b82f6;
    --chip: #eef2ff;
    --line: #e6e8f0;
    --radius: 14px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, 'Noto Sans', sans-serif;
    color: var(--text);
    background: linear-gradient(to bottom, #c0f5fa, #c0d0fa);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    font-family: 'Rubik', system-ui, sans-serif;
    line-height: 1.25
}

a {
    color: var(--accent);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

.container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 16px
}

/* Header */
.header {
    background: #c0d0fa;
    border-bottom: 1px solid var(--line)
}

.top-age {
    background: #0b1220;
    color: #fff;
    font-weight: 600;
    font-size: .92rem
}

.top-age .container {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 8px 16px
}

.badge18 {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ef4444;
    font-weight: 800
}

/* Nav (no burger) */
.nav {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 10px 0
}

.brand {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 800
}

.logo {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6)
}

.menu {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap
}

.menu a {
    padding: 8px 10px;
    border-radius: 10px
}

.menu a[aria-current="page"], .menu a:hover {
    background: #f4f6ff;
    text-decoration: none
}

/* Hero */
.hero {
    background: #1d163f;
    padding: 40px 0;
    color: #fff
}

.hero .wrap {
    display: grid;
    justify-content: center;
    text-align: center;
    gap: 18px;
    align-items: center
}

.hero .card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px
}

.hero .title {
    font-size: clamp(28px, 5vw, 40px);
    margin: 0 0 8px
}

.hero p {
    margin: 0;
    color: #ccc
}

.hero .cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 600
}

.btn.primary {
    background: var(--accent);
    color: #fff;
    border-color: transparent
}

@media (max-width: 920px) {
    .hero .wrap {
        grid-template-columns:1fr
    }
}

/* Sections */
.section {
    padding: 28px 0
}

.section h2 {
    font-size: clamp(22px, 3.5vw, 28px);
    margin: 0 0 8px
}

.lead {
    color: var(--muted);
    margin-bottom: 14px
}

.section.alt {
    background: #f4f6ff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

/* Offer card */
.offer-list {
    display: grid;
    grid-template-columns:1fr;
    gap: 12px
}

.offer-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px
}

.offer-head {
    display: grid;
    grid-template-columns:160px 1fr auto;
    gap: 12px;
    align-items: center
}

.logo-box {
    width: 160px;
    border-radius: 12px;
    background: #000;
    padding: 5px;
    display: grid;
    place-items: center;
    font-weight: 800
}
.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.rating {
    display: flex;
    align-items: center;
    gap: 8px
}

.stars {
    display: inline-flex;
    gap: 2px
}

.star {
    width: 18px;
    height: 18px;
    display: inline-block;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox=\"0 0 24 24\"><path d=\"M12 17.3l-6.2 3.3 1.2-6.9L1 8.8l7-1 3-6 3 6 7 1-6 4.9 1.2 6.9z\"/></svg>') no-repeat center / contain;
    background: #d9e0ee
}

.star.filled {
    background: #f5b301
}

.score {
    font-weight: 800
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px
}

.chip {
    background: #f4f6ff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .92rem
}

.offer-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px
}

.disclaimer {
    font-size: .92rem;
    color: var(--muted)
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 12px
}

.info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px
}

.info-card h3 {
    margin: 0 0 6px;
    font-size: 18px
}

@media (max-width: 900px) {
    .info-grid {
        grid-template-columns:1fr
    }
}

/* Footer */
.footer {
    background: #353535;
}

.footer .wrap {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 12px;
    padding: 16px 0;
}

.footer .rg-logos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center
}

.placeholder {
    width: 120px;
    height: 60px;
    padding: 5px;
    border-radius: 6px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: #64748b;
    border: 1px dashed #94a3b8
}

.plus18 {
    background: #f33;
    border-radius: 50%;
    padding: 7px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.footer a {
  color: #c5c5c5
}

.footer .legal {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer small {
  color: #c5c5c5
}

@media (max-width: 740px) {
    .footer .wrap {
        grid-template-columns:1fr
    }

    .footer .legal {
        justify-content: flex-start
    }
    .offer-head {

        grid-template-columns: auto;
    }
    .rating-score {
        text-align: left!important;
    }
}

/* Pages */
.page {
    padding: 24px 0
}

.prose {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px
}

.prose h1 {
    margin-top: 0
}

.prose h2 {
    margin-top: 1rem
}

.alert {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    border-radius: 10px;
    padding: 10px 12px;
    margin: 12px 0
}

/* A11y */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}
.placeholder img {
    width: 100%;
}