/* ===========================
   APUESTAS MUNDIAL 2026
   style.css — Global Styles
   =========================== */

/* ---------- RESET & TOKENS ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #0a1628;
    --secondary: #111f38;
    --card-bg: #0f1d35;
    --accent: #00d4aa;
    --accent-hover: #00b894;
    --gold: #f59e0b;
    --red: #ef4444;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, .08);
    --gradient: linear-gradient(135deg, #00d4aa 0%, #0284c7 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --shadow: 0 4px 24px rgba(0, 0, 0, .45);
    --radius: 12px;
    --radius-lg: 20px;
    --font: 'Inter', system-ui, sans-serif;
    --font-display: 'Bebas Neue', sans-serif;
    --transition: .25s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---------- SKIP LINK ---------- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    padding: .5rem 1rem;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    z-index: 9999;
    border-radius: 0 0 var(--radius) 0;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 0;
}

/* ---------- CONTAINER ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- HEADER ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, .95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 68px;
}

.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    border-radius: 8px;
}

.logo-text {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.2;
}

.logo-text strong {
    color: var(--accent);
    display: block;
    font-size: 1.05rem;
}

.logo-text em {
    color: var(--gold);
    font-style: normal;
    font-size: .85rem;
}

.main-nav {
    margin-left: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: .25rem;
}

.main-nav a {
    display: block;
    padding: .45rem .75rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
    background: rgba(0, 212, 170, .1);
}

.header-cta {
    display: inline-block;
    padding: .5rem 1.2rem;
    background: var(--gradient);
    color: #000;
    font-weight: 700;
    font-size: .85rem;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity var(--transition);
    flex-shrink: 0;
}

.header-cta:hover {
    opacity: .88;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--secondary);
    z-index: 999;
    padding: 1.5rem;
    overflow-y: auto;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid var(--border);
}

.mobile-nav a {
    display: block;
    padding: 1rem .5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

.mobile-nav a:hover {
    color: var(--accent);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, .92) 0%, rgba(10, 22, 40, .75) 50%, rgba(0, 212, 170, .15) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 5rem 1.5rem 4rem;
    max-width: 760px;
}

.hero-badge {
    display: inline-block;
    padding: .35rem 1rem;
    background: rgba(0, 212, 170, .15);
    border: 1px solid rgba(0, 212, 170, .4);
    color: var(--accent);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .05em;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    letter-spacing: .02em;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.stat span {
    font-size: .75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* ---------- CTA BUTTONS ---------- */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 1.8rem;
    background: var(--gradient);
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    animation: pulse-glow 2.5s infinite;
    transition: transform var(--transition), box-shadow var(--transition);
}

.cta-btn:hover {
    transform: translateY(-2px);
}

.cta-badge {
    display: inline-block;
    padding: .15rem .5rem;
    background: rgba(0, 0, 0, .2);
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
}

.cta-secondary {
    background: var(--gradient-gold);
}

.cta-tertiary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 212, 170, .4);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 212, 170, .7);
    }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: .9rem 1.8rem;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.btn-secondary:hover {
    background: var(--accent);
    color: #000;
}

/* ---------- RG BAR ---------- */
.rg-bar {
    background: rgba(239, 68, 68, .12);
    border-top: 2px solid rgba(239, 68, 68, .4);
    border-bottom: 2px solid rgba(239, 68, 68, .2);
    padding: .65rem 1.5rem;
    text-align: center;
    font-size: .82rem;
    color: #fca5a5;
}

.rg-bar a {
    color: #fca5a5;
    text-decoration: underline;
    margin-left: .5rem;
}

/* ---------- SECTIONS ---------- */
.section {
    padding: 5rem 0;
}

.section:nth-child(even) {
    background: var(--secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2,
.section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    letter-spacing: .02em;
    color: #fff;
    margin-bottom: .75rem;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto .5rem;
}

/* ---------- BOOKMAKER CARDS ---------- */
.bookmaker-card {
    display: grid;
    grid-template-columns: 56px 180px 1fr auto;
    align-items: center;
    gap: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin-bottom: 1.25rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.bookmaker-card:hover {
    border-color: rgba(0, 212, 170, .35);
    box-shadow: 0 8px 32px rgba(0, 212, 170, .12);
}

.card-rank {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    text-align: center;
}

.logo-placeholder {
    width: 140px;
    height: 56px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: .05em;
}

.bet365-logo {
    background: #026b00;
    color: #fff;
}

.betway-logo {
    background: #00873e;
    color: #fff;
}

.caliente-logo {
    background: #d32f2f;
    color: #fff;
}

.xbet-logo {
    background: #006bff;
    color: #fff;
}

.melbet-logo {
    background: #e64a19;
    color: #fff;
}

.card-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .4rem;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem;
}

.stars {
    color: var(--gold);
    font-size: 1rem;
}

.score {
    font-weight: 700;
    color: var(--gold);
}

.card-bonus strong {
    display: block;
    color: var(--accent);
    font-size: 1.05rem;
}

.card-bonus span {
    font-size: .8rem;
    color: var(--text-muted);
}

.card-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-top: .6rem;
}

.card-features li {
    font-size: .82rem;
    color: var(--text-muted);
}

.card-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    text-align: center;
}

.card-pros {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    justify-content: center;
}

.pro-tag {
    display: inline-block;
    padding: .2rem .6rem;
    background: rgba(0, 212, 170, .12);
    border: 1px solid rgba(0, 212, 170, .3);
    color: var(--accent);
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
}

.card-disclaimer {
    font-size: .7rem;
    color: var(--text-muted);
}

.see-all-wrap {
    text-align: center;
    margin-top: 2rem;
}

.see-all-btn {
    display: inline-block;
    padding: .9rem 2rem;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    font-weight: 700;
    font-size: .95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.see-all-btn:hover {
    background: var(--accent);
    color: #000;
}

/* ---------- COMPARISON TABLE ---------- */
.table-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.comparison-table caption {
    text-align: left;
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: .75rem;
    padding: 0 0 .5rem;
}

.comparison-table th {
    background: rgba(0, 212, 170, .12);
    color: var(--accent);
    font-weight: 700;
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 2px solid rgba(0, 212, 170, .25);
    white-space: nowrap;
}

.comparison-table td {
    padding: .9rem 1.25rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, .03);
}

.comparison-table .row-top {
    background: rgba(0, 212, 170, .04);
}

.bonus-cell {
    color: var(--accent) !important;
    font-weight: 600 !important;
}

.score-cell {
    color: var(--gold) !important;
    font-weight: 700 !important;
}

.table-note {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}

/* ---------- ODDS SECTION ---------- */
.odds-section h2 {
    text-align: center;
}

.odds-section .section-sub {
    text-align: center;
    margin-bottom: 2.5rem;
}

.odds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.odds-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    transition: border-color var(--transition);
}

.odds-card.gold {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(245, 158, 11, .2);
}

.odds-card.mx-card {
    border-color: rgba(0, 212, 170, .4);
}

.odds-flag {
    font-size: 2rem;
}

.odds-country {
    font-weight: 700;
    font-size: .95rem;
}

.odds-value {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--accent);
}

.odds-label {
    font-size: .72rem;
    color: var(--text-muted);
}

.odds-cta {
    text-align: center;
}

/* ---------- GROUPS ---------- */
.groups-section h2 {
    text-align: center;
    margin-bottom: .5rem;
}

.groups-section .section-sub {
    text-align: center;
    margin-bottom: 2.5rem;
}

.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.group-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: border-color var(--transition), transform var(--transition);
}

.group-card:hover {
    border-color: rgba(0, 212, 170, .4);
    transform: translateY(-3px);
}

.group-card.mx-group {
    border-color: rgba(0, 212, 170, .35);
}

.group-letter {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}

.group-teams {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    font-size: .88rem;
    color: var(--text-muted);
}

.group-teams span {
    color: var(--text);
}

.group-link {
    font-size: .82rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: auto;
}

.groups-cta {
    text-align: center;
}

/* ---------- GUIDE STEPS ---------- */
.guide-section h2 {
    text-align: center;
    margin-bottom: .5rem;
}

.guide-section .section-sub {
    text-align: center;
    margin-bottom: 2.5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    position: relative;
}

.step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient);
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: .5rem;
}

.step-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.guide-cta {
    text-align: center;
}

/* ---------- PAYMENTS ---------- */
.payments-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}

.payment-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
}

.pay-icon {
    font-size: 2rem;
    margin-bottom: .25rem;
}

.payment-item strong {
    font-size: .92rem;
    color: #fff;
}

.payment-item span {
    font-size: .78rem;
    color: var(--text-muted);
}

.pay-time {
    color: var(--accent) !important;
    font-weight: 600 !important;
    font-size: .8rem !important;
}

/* ---------- FAQ ---------- */
.faq-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: .75rem;
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item[open] {
    border-color: rgba(0, 212, 170, .35);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: .95rem;
    color: var(--text);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card-bg);
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 300;
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-body {
    padding: 1rem 1.5rem 1.5rem;
    background: var(--card-bg);
    border-top: 1px solid var(--border);
}

.faq-body p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------- SEO CONTENT ---------- */
.seo-content {
    background: var(--secondary);
}

.seo-article {
    max-width: 860px;
    margin: 0 auto;
}

.seo-article h2 {
    margin-bottom: 1.5rem;
}

.seo-article h3 {
    font-size: 1.15rem;
    color: var(--accent);
    margin: 2rem 0 .75rem;
}

.seo-article p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: .96rem;
}

.text-link {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-style: dashed;
    text-underline-offset: 3px;
}

.text-link:hover {
    text-decoration-style: solid;
}

.seo-news-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: .75rem;
    margin: 1.75rem 0;
}

.seo-news-links a {
    display: block;
    padding: .9rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    transition: border-color var(--transition), color var(--transition);
}

.seo-news-links a:hover {
    border-color: rgba(0, 212, 170, .35);
    color: var(--accent);
}

.related-sports {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: .75rem;
    margin-top: 2rem;
}

.sport-link {
    display: flex;
    gap: .75rem;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    font-size: .88rem;
    font-weight: 500;
    transition: border-color var(--transition), background var(--transition);
}

.sport-link:hover {
    border-color: rgba(0, 212, 170, .35);
    background: rgba(0, 212, 170, .05);
}

.sport-link span {
    color: var(--accent);
    font-weight: 700;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #060e1c;
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 1rem 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: .95rem;
}

.footer-logo strong {
    color: var(--accent);
}

.footer-badges {
    display: flex;
    gap: .5rem;
}

.badge-18 {
    padding: .25rem .6rem;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    font-size: .8rem;
    border-radius: 6px;
}

.badge-segob {
    padding: .25rem .6rem;
    background: rgba(0, 212, 170, .15);
    border: 1px solid rgba(0, 212, 170, .3);
    color: var(--accent);
    font-weight: 700;
    font-size: .8rem;
    border-radius: 6px;
}

.footer-nav h4 {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: .5rem;
}

.footer-nav a {
    font-size: .85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--accent);
}

/* ---------- FIFA SOCIAL BLOCK ---------- */
.fifa-social-block {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}

.fifa-social-block .social-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.fifa-social-block .social-label::before,
.fifa-social-block .social-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.social-networks {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.social-net-card {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: .88rem;
    border: 1.5px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.social-net-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .12;
    transition: opacity var(--transition);
}

.social-net-card:hover {
    transform: translateY(-3px);
}

.social-net-card:hover::before {
    opacity: .2;
}

.social-net-card .sn-icon {
    font-size: 1.3rem;
    line-height: 1;
    flex-shrink: 0;
}

.social-net-card .sn-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.social-net-card .sn-info span:first-child {
    font-size: .72rem;
    font-weight: 500;
    opacity: .7;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* Facebook */
.sn-facebook {
    background: rgba(24, 119, 242, .1);
    border-color: rgba(24, 119, 242, .35);
    color: #4898ff;
}

.sn-facebook::before {
    background: #1877f2;
}

.sn-facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 8px 24px rgba(24, 119, 242, .25);
}

/* X / Twitter */
.sn-x {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .2);
    color: #e7e9ea;
}

.sn-x::before {
    background: #fff;
}

.sn-x:hover {
    border-color: rgba(255, 255, 255, .5);
    box-shadow: 0 8px 24px rgba(255, 255, 255, .1);
}

/* TikTok */
.sn-tiktok {
    background: rgba(105, 201, 208, .08);
    border-color: rgba(105, 201, 208, .3);
    color: #69c9d0;
}

.sn-tiktok::before {
    background: linear-gradient(135deg, #69c9d0, #ee1d52);
}

.sn-tiktok:hover {
    border-color: #69c9d0;
    box-shadow: 0 8px 24px rgba(105, 201, 208, .2);
}

/* Instagram */
.sn-instagram {
    background: rgba(228, 64, 95, .08);
    border-color: rgba(228, 64, 95, .3);
    color: #e44060;
}

.sn-instagram::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.sn-instagram:hover {
    border-color: #e44060;
    box-shadow: 0 8px 24px rgba(228, 64, 95, .25);
}

.footer-gambling-warning {
    background: rgba(239, 68, 68, .07);
    border-top: 1px solid rgba(239, 68, 68, .2);
    border-bottom: 1px solid rgba(239, 68, 68, .2);
    padding: 1rem;
    text-align: center;
    margin: 0 -1.5rem;
}

.footer-gambling-warning p {
    font-size: .82rem;
    color: #fca5a5;
    line-height: 1.65;
}

.footer-gambling-warning a {
    color: #fca5a5;
    text-decoration: underline;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: .8rem;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
}

.footer-bottom a {
    color: var(--accent);
    text-decoration: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .bookmaker-card {
        grid-template-columns: 56px 140px 1fr auto;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .main-nav {
        display: none;
    }

    .header-cta {
        display: inline-flex !important;
        font-size: .72rem !important;
        padding: .4rem .85rem !important;
        flex-shrink: 0 !important;
    }

    .logo-text {
        display: none !important;
    }

    .logo img {
        width: 28px !important;
        height: 28px !important;
    }

    .header-inner {
        gap: .5rem !important;
    }

    .burger {
        display: flex;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: 4rem 1rem 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .bookmaker-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .card-rank {
        font-size: 1.4rem;
    }

    .logo-placeholder {
        width: 100%;
    }

    .card-features {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-gambling-warning {
        margin: 0;
    }

    .odds-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .groups-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .odds-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .groups-grid {
        grid-template-columns: 1fr;
    }

    .payments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}