:root {
    --bg: #030712;
    --bg-2: #0a1628;
    --panel: rgba(255, 255, 255, 0.06);
    --panel-strong: rgba(255, 255, 255, 0.1);
    --text: #f8f7ff;
    --muted: #a6accd;
    --accent: #22d3ee;
    --accent-2: #0891b2;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(34, 211, 238, 0.22), transparent 28%),
        linear-gradient(135deg, var(--bg), var(--bg-2));
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.page-shell {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 1.25rem 3rem;
}

main {
    padding: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(8, 8, 14, 0.78);
    box-shadow: var(--shadow);
    margin-top: 0.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text);
    text-decoration: none;
    position: relative;
    z-index: 51;
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
}

.brand-domo {
    color: var(--text);
}

.brand-tips {
    color: var(--accent);
}

.brand-logo {
    height: 3.2rem;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.45));
    border-radius: 8px;
}

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2.5rem 1rem 1rem;
    text-align: left;
}

.hero-brand-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(34, 211, 238, 0.5));
    border-radius: 20px;
}

.hero-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hero-brand-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin: 0;
    letter-spacing: 0.04em;
    text-shadow: 0 0 40px rgba(34, 211, 238, 0.35);
}

.hero-brand-heading .brand-domo {
    color: var(--text);
}

.hero-brand-heading .brand-tips {
    color: var(--accent);
}

.hero-brand-tagline {
    margin: 0;
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    color: var(--accent);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 0.6rem;
    padding: 0.45rem 0.6rem;
    cursor: pointer;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
    display: flex;
    gap: 1.25rem;
}

.site-nav a,
.site-footer a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active,
.site-footer a:hover {
    color: var(--text);
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.9rem 1.3rem;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.header-cta,
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: white;
    box-shadow: 0 14px 30px rgba(34, 211, 238, 0.25);
}

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

.header-cta:hover,
.btn:hover {
    transform: translateY(-2px);
}

.section {
    padding: 4.5rem 0 0;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 2rem;
    padding-top: 3rem;
}

.eyebrow,
.mini-label {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.78rem;
    color: var(--accent);
    font-weight: 700;
    margin: 0 0 0.5rem;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
    color: var(--text);
}

h1 {
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.06;
    margin-top: 0.5rem;
}

h2 {
    font-size: clamp(1.7rem, 2.6vw, 2.35rem);
    font-weight: 700;
}

.hero-text,
.section-heading p,
.glass-card p,
.site-footer p,
.faq-item p,
.legal-page p,
.legal-page li,
.contact-form label {
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 1rem;
}

.hero-copy h1 {
    margin-top: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.trust-badges span,
.trust-badges a,
.trust-badge-link {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.65rem 0.85rem;
    font-size: 0.92rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    text-decoration: none;
}

.trust-badges a:hover,
.trust-badge-link:hover {
    border-color: rgba(34, 211, 238, 0.45);
    color: var(--accent);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card,
.glass-card {
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow);
    border-radius: 1.5rem;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-card {
    width: min(100%, 430px);
    padding: 1.3rem;
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.status-pill {
    background: rgba(34, 211, 238, 0.2);
    color: #cffafe;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    font-size: 0.82rem;
}

.match-stack {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.match-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.match-row.muted {
    opacity: 0.75;
}

.match-row strong {
    font-family: var(--font-display, 'Space Grotesk');
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.stat-grid div {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}

.stat-grid strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--accent);
}

.stat-grid span {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-heading {
    margin-bottom: 1.5rem;
}

.section-heading h2 {
    max-width: 650px;
}

.feature-grid,
.benefit-grid,
.vip-grid,
.pricing-grid,
.testimonial-grid,
.odds-grid,
.prediction-grid {
    display: grid;
    gap: 1.1rem;
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.glass-card {
    padding: 1.25rem;
}

.feature-card,
.benefit-card {
    min-height: 220px;
}

.feature-card h3,
.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.feature-link:hover .feature-card {
    transform: translateY(-3px);
    border-color: rgba(34, 211, 238, 0.45);
}

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

.prediction-card {
    display: grid;
    gap: 1rem;
}

.prediction-head,
.tip-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.time-pill,
.confidence-pill,
.tip-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.83rem;
}

.time-pill {
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
}

.confidence-pill {
    background: rgba(34, 211, 238, 0.16);
    color: #cffafe;
}

.tip-pill {
    background: rgba(34, 211, 238, 0.14);
    color: #cffafe;
    font-weight: 600;
}

.match-line {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.7rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
}

.team-block {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
}

.team-name {
    font-weight: 700;
}

.team-tag,
.label {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
}

.vs {
    font-weight: 700;
    color: var(--accent);
    text-align: center;
}

.odds-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.odds-row>div {
    padding: 0.8rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
}

.odds-row strong {
    display: block;
    margin-top: 0.25rem;
    font-size: 1rem;
    color: var(--accent);
}

.prediction-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.3), rgba(8, 145, 178, 0.25));
    margin-bottom: 0.9rem;
    font-size: 1.3rem;
}

.filters {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    justify-content: center;
}

.filter-btn {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-color: transparent;
}

.table-card {
    overflow-x: auto;
}

.table-card-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

th,
td {
    text-align: left;
    padding: 1rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

th {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: var(--muted);
}

.league-pill {
    display: inline-block;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.16);
    color: #cffafe;
    font-size: 0.78rem;
    font-weight: 600;
}

.team-cell {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.status {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
}

.status.won {
    background: rgba(34, 211, 238, 0.13);
    color: #cffafe;
}

.status.lost {
    background: rgba(248, 113, 113, 0.15);
    color: #fecaca;
}

.step-card {
    display: grid;
    gap: 1.25rem;
}

.step-flow {
    display: grid;
    gap: 0.8rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
}

.step-badge {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    font-weight: 700;
    flex-shrink: 0;
}

.step-item h3 {
    font-size: 1rem;
    margin: 0;
}

.step-arrow {
    text-align: center;
    color: var(--accent);
    font-size: 1.2rem;
}

.btn.big {
    width: fit-content;
    padding-inline: 1.5rem;
}

.vip-grid,
.pricing-grid,
.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vip-card,
.pricing-card,
.testimonial-card,
.odds-card,
.faq-item {
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.vip-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.odds-card:hover,
.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.45);
}

.vip-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.vip-card h3 {
    font-size: 1.1rem;
}

.locked-box {
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 0.9rem;
    margin: 0.6rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--muted);
}

.vip-card .btn {
    margin-top: auto;
    align-self: stretch;
}

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

.odds-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.odds-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    font-size: 1.15rem;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
}

.odds-footer strong {
    font-size: 1.5rem;
    color: var(--accent);
}

.pricing-card {
    position: relative;
}

.pricing-card.popular {
    border-color: rgba(34, 211, 238, 0.45);
    box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.22);
}

.popular-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #e0f2fe;
    font-size: 0.8rem;
    border-radius: 999px;
    padding: 0.35rem 0.6rem;
    background: rgba(34, 211, 238, 0.22);
    font-weight: 700;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.6rem 0 1rem;
    color: var(--accent);
}

.pricing-card ul {
    padding-left: 1.1rem;
    color: var(--muted);
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
}

.pricing-card .btn {
    margin-top: auto;
    align-self: stretch;
}

.testimonial-card .stars {
    color: #fbbf24;
    letter-spacing: 0.2em;
    margin-bottom: 0.8rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.avatar {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.faq-list {
    display: grid;
    gap: 0.8rem;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    padding: 1rem 1.1rem;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary {
    margin-bottom: 0.6rem;
}

.faq-item p {
    padding: 0 1.1rem 1rem;
}

.download-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.download-copy h2 {
    margin-bottom: 0.8rem;
}

.download-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
}

.phone-screen {
    width: min(100%, 260px);
    border-radius: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.25), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-header {
    text-align: center;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--text);
}

.phone-body {
    display: grid;
    gap: 0.7rem;
}

.phone-card {
    height: 95px;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.13);
}

.phone-card.small {
    height: 48px;
}

.qr-box {
    width: 120px;
    height: 120px;
    padding: 0.7rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.qr-box svg {
    width: 100%;
    height: 100%;
}

.site-footer {
    margin-top: 3rem;
    padding: 2rem 0 0;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 1.5rem;
    border-top: 1px solid var(--border);
}

.site-footer h3 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.site-footer a {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
}

.copyright {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    color: var(--muted);
    font-size: 0.88rem;
    text-align: left;
    margin: 0;
}

.legal-page {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 0;
}

.legal-page h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 0.5rem;
}

.legal-page .updated {
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.25rem;
    margin: 1.75rem 0 0.6rem;
    color: var(--accent);
}

.legal-page ul {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.contact-form {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 1.5rem;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-sizing: border-box;
}

.contact-form .field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.85rem 1rem;
    border-radius: 0.9rem;
    font-family: inherit;
    font-size: 0.95rem;
    width: 100%;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

.alert {
    padding: 0.85rem 1rem;
    border-radius: 0.9rem;
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
}

.alert-success {
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: #cffafe;
}

.alert-error {
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #fecaca;
}

.empty-state {
    text-align: center;
    color: var(--muted);
    padding: 2.5rem 1.25rem;
    font-size: 0.95rem;
}

@media (max-width: 1080px) {

    .feature-grid,
    .benefit-grid,
    .vip-grid,
    .pricing-grid,
    .testimonial-grid,
    .odds-grid,
    .download-section,
    .site-footer {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 760px) {
    .page-shell {
        padding-inline: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .site-header {
        border-radius: 1.2rem;
        flex-wrap: wrap;
        align-items: center;
        gap: 0;
    }

    .header-cta {
        display: none;
    }

    .site-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 0.5rem 0 0.25rem;
        gap: 0;
        order: 3;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        padding: 0.85rem 0.25rem;
        border-top: 1px solid var(--border);
        font-size: 1rem;
    }

    .prediction-grid,
    .feature-grid,
    .benefit-grid,
    .vip-grid,
    .pricing-grid,
    .testimonial-grid,
    .odds-grid,
    .download-section,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .download-preview {
        flex-direction: column;
    }

    .section {
        padding-top: 3rem;
    }

    .hero {
        padding-top: 1.5rem;
    }

    .hero-visual {
        order: 2;
    }

    .brand-logo {
        height: 2.2rem;
    }

    .brand-name {
        font-size: 1rem;
    }

    .hero-brand {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem 0.5rem;
        gap: 1rem;
    }

    .hero-brand-logo {
        width: 80px;
        height: 80px;
    }

    .hero-brand-text {
        align-items: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .match-row {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }

    .odds-row strong {
        font-size: 0.95rem;
    }

    .price {
        font-size: 1.6rem;
    }

    .odds-footer {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-shell {
        padding-inline: 0.75rem;
    }

    .site-header {
        padding: 0.8rem 0.9rem;
    }

    h1 {
        font-size: 2rem;
    }

    .section-heading h2 {
        font-size: 1.5rem;
    }

    .glass-card {
        padding: 1rem;
    }

    .hero-card {
        padding: 1rem;
    }

    .hero-brand-logo {
        width: 64px;
        height: 64px;
    }

    .hero-brand-heading {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .copyright {
        text-align: center;
    }

    .popular-tag {
        top: 0.6rem;
        right: 0.6rem;
        font-size: 0.7rem;
    }

    .legal-page h1 {
        font-size: 1.6rem;
    }

    .contact-form {
        padding: 1rem;
    }
}