*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --festive-pink: #ff4f8b;
    --festive-gold: #ffc857;
    --festive-green: #4caf50;
    --deep-navy: #0b1f3a;
    --midnight: #041022;
    --soft-white: #fefefe;
    --mist: #e8f0ff;
    --text-body: #102a43;
    --card-shadow: 0 20px 45px rgba(11, 31, 58, 0.15);
}

body {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--soft-white);
    background: linear-gradient(180deg, #030613 0%, #071631 45%, #091d3f 100%);
    min-height: 100vh;
    line-height: 1.6;
}


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

a:hover {
    text-decoration: underline;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(3, 6, 19, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--soft-white);
}

.logo__mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--festive-pink), var(--festive-gold));
    display: grid;
    place-items: center;
    font-weight: 700;
}

.logo__text small {
    display: block;
    font-size: 0.78rem;
    opacity: 0.7;
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav__link {
    color: var(--soft-white);
    font-weight: 500;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav__link--active::after,
.nav__link:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--festive-pink), var(--festive-gold));
}

.nav-toggle {
    display: none;
    background: var(--festive-pink);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
}

.page-shell {
    padding: 4rem 5vw;
}

.hero {
    background: radial-gradient(circle at top right, rgba(255, 79, 139, 0.45), rgba(4, 16, 34, 0.9));
    border-radius: 32px;
    padding: 3rem;
    color: var(--soft-white);
    box-shadow: var(--card-shadow);
    margin-bottom: 3rem;
}

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.8rem;
    color: var(--festive-gold);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0.5rem 0;
}

.hero p {
    max-width: 60ch;
    opacity: 0.85;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.cta {
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.cta--primary {
    background: linear-gradient(120deg, var(--festive-pink), var(--festive-gold));
    color: var(--deep-navy);
}

.cta--ghost {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--soft-white);
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.grid--three {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
    background: #0e1d3b;
    border-radius: 24px;
    padding: 1.75rem;
    color: var(--soft-white);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 23px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.card h3 {
    margin-top: 0;
    color: var(--festive-gold);
}

.card + .card {
    margin-top: 1.5rem;
}

section.card + section.grid,
section.grid + section.card,
section.card + section.card {
    margin-top: 1.5rem;
}

.breadcrumb {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb a {
    color: var(--festive-gold);
}

.breadcrumb li::after {
    content: '›';
    margin-left: 0.35rem;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb li:last-child::after {
    content: '';
}

.sfb-image {
    margin: 2rem 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem;
}

.sfb-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    margin-bottom: 0.75rem;
}

.sections-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.sections-list li {
    background: rgba(255, 255, 255, 0.06);
    padding: 1rem;
    border-radius: 16px;
    color: var(--soft-white);
}

.site-footer {
    background: var(--midnight);
    color: #cbd5f5;
    padding: 3rem 5vw;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__note {
    grid-column: 1 / -1;
    text-align: center;
    margin: 0;
    opacity: 0.6;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 200, 87, 0.15);
    color: var(--festive-gold);
    font-size: 0.85rem;
    font-weight: 600;
}

.tool {
    background: rgba(9, 29, 63, 0.85);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: var(--card-shadow);
    color: var(--soft-white);
}

.tool label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tool input,
.tool select {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(4, 16, 34, 0.8);
    color: var(--soft-white);
}

.tool__result {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: var(--festive-gold);
    font-weight: 700;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.country-card {
    padding: 1.25rem;
    border-radius: 18px;
    background: rgba(14, 29, 59, 0.85);
    color: var(--soft-white);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.country-card h4 {
    margin-top: 0;
    color: var(--festive-pink);
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pill-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 20px;
    overflow: hidden;
    margin: 2rem 0;
    color: var(--soft-white);
}

th,
td {
    padding: 1rem;
    text-align: left;
}

th {
    background: rgba(255, 255, 255, 0.08);
    color: var(--festive-gold);
}

tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 900px) {
    .site-header {
        flex-wrap: wrap;
    }

    .nav {
        width: 100%;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav--open {
        max-height: 400px;
        padding-top: 1rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .page-shell {
        padding: 3rem 1.5rem;
    }
}

/* Bookmaker tables styling */
.bookmaker-tables {
    margin: 2rem 0;
}

.bookmaker-tables .badge {
    display: inline-block;
    position: relative;
    margin-top: 0;
    margin-bottom: -1.5rem;
    margin-left: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 200, 87, 0.3);
    z-index: 10;
    transform: translateY(3.5rem);
}

.badge-1 {
    background: linear-gradient(135deg, var(--festive-gold), #ffb020);
    color: var(--deep-navy);
}

.badge-2 {
    background: linear-gradient(135deg, var(--festive-pink), #ff6ba3);
    color: var(--soft-white);
}

.hovernone {
    text-decoration: none;
    display: block;
    margin-bottom: 3rem;
    margin-top: 1.5rem;
    position: relative;
}

.hovernone:hover {
    text-decoration: none;
}

.estil5 {
    background: rgba(9, 29, 63, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 200, 87, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.hovernone:hover .estil5 {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 200, 87, 0.6);
}

.estil51 {
    margin-bottom: 1rem;
}

.pimg511 {
    text-align: center;
    margin: 0;
    padding: 3rem 0;
}

.img511 {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.estil52 {
    margin-bottom: 1.5rem;
}

.titulo52 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--festive-gold);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(255, 200, 87, 0.3);
}

.estil532 {
    margin: 2rem 0;
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(4, 16, 34, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.table-bordered {
    border: 2px solid rgba(255, 200, 87, 0.4);
}

.table-bordered td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 200, 87, 0.25);
    background: rgba(4, 16, 34, 0.7);
}

.table-bordered tr:last-child td {
    border-bottom: none;
}

.spanparatabla {
    color: var(--soft-white);
    font-size: 1rem;
    font-weight: 500;
    opacity: 1;
    letter-spacing: 0.02em;
}

.spanparabonos {
    color: var(--festive-gold);
    font-size: 2.2rem;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(255, 200, 87, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.spanpourtd {
    color: var(--soft-white);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

.spanpourtd s {
    opacity: 0.5;
    color: rgba(255, 255, 255, 0.5);
}

.spanpourtd strong {
    color: var(--festive-gold);
    font-weight: 700;
}

.estil533 {
    margin-top: 1.5rem;
}

.estil533 p {
    color: var(--soft-white);
    text-align: center;
    margin: 0;
    opacity: 1;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
}

.text-center {
    text-align: center;
}

.justify-content-center {
    justify-content: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
}

.col,
.col-md-8,
.col-md-12 {
    padding: 0 0.5rem;
    flex: 1;
}

.col-md-8 {
    max-width: 66.666667%;
    flex: 0 0 66.666667%;
}

.col-md-12 {
    max-width: 100%;
    flex: 0 0 100%;
}

@media (max-width: 768px) {
    .col-md-8 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .estil5 {
        padding: 1.5rem;
    }
    
    .spanparabonos {
        font-size: 1.5rem;
    }
}

