@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&display=swap");

/* ═══ VARIABLES ═══ */
:root {
  --black: #030305;
  --dark: #08080c;
  --medium: #0e0e14;
  --light: #16161f;
  --card: #1a1a24;
  --red: #ff2d2d;
  --red-bright: #ff4545;
  --red-dim: #ff2d2d1a;
  --orange: #ff6b35;
  --gold: #ffd700;
  --cyan: #00e5ff;
  --white: #ffffff;
  --gray-100: #f0f0f5;
  --gray-200: #c8c8d4;
  --gray-300: #9898a8;
  --gray-400: #68687a;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Inter", sans-serif;
  --gap-xs: 4px;
  --gap-sm: 8px;
  --gap-md: 16px;
  --gap-lg: 24px;
  --gap-xl: 40px;
  --gap-2xl: 60px;
  --max-w: 1200px;
  --radius: 8px;
  --radius-lg: 16px;
}

/* ═══ RESET ═══ */
*, *:before, *:after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--black); color: var(--gray-100); line-height: 1.5; overflow-x: hidden; font-weight: 500; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; letter-spacing: .04em; text-transform: uppercase; color: var(--white); }
h1 { font-size: clamp(3rem, 8vw, 5rem); line-height: .95; }
h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1; }
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--gray-200); font-size: 15px; font-weight: 500; }
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-bright); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ═══ LAYOUT ═══ */
.wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-lg { margin-top: var(--gap-lg); }
.mt-xl { margin-top: var(--gap-xl); }

/* ═══ BUTTONS ═══ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; font-family: var(--font-display); font-size: 18px; letter-spacing: .06em; text-transform: uppercase; border: none; border-radius: var(--radius); cursor: pointer; transition: all .2s; text-decoration: none; }
.btn-red { background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%); color: #fff; box-shadow: 0 4px 20px #ff2d2d59; }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 6px 30px #ff2d2d80; color: #fff; }
.btn-gold { background: linear-gradient(135deg, var(--gold) 0%, #ffb700 100%); color: var(--black); box-shadow: 0 4px 20px #ffd70059; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 30px #ffd70080; color: var(--black); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.25); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }
.btn-sm { padding: 10px 20px; font-size: 15px; }
.btn-lg { padding: 18px 36px; font-size: 20px; }

/* ═══ AGE BAR ═══ */
.age-bar { background: var(--red); padding: 10px 20px; position: relative; z-index: 100; }
.age-bar-inner { display: flex; align-items: center; justify-content: center; gap: 12px; font-family: var(--font-display); font-size: 18px; letter-spacing: .05em; color: #fff; }
.age-badge { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--black); border-radius: 50%; font-size: 16px; font-weight: 700; }

/* ═══ HEADER ═══ */
.header { background: #030305f2; backdrop-filter: blur(10px); padding: 12px 0; position: sticky; top: 0; z-index: 99; border-bottom: 1px solid rgba(255,45,45,.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 28px; letter-spacing: .04em; color: var(--white); text-decoration: none; }
.logo-icon { font-size: 32px; }
.logo span { color: var(--red); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; list-style: none; gap: 24px; }
.nav-links a { font-family: var(--font-display); font-size: 16px; letter-spacing: .05em; color: var(--gray-200); }
.nav-links a:hover { color: var(--red); }
.mobile-btn { display: none; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; }
.mobile-menu { display: none; position: fixed; top: 100px; left: 0; right: 0; background: var(--dark); padding: 20px; z-index: 98; border-bottom: 1px solid rgba(255,45,45,.2); }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; margin-bottom: 16px; }
.mobile-menu li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.mobile-menu a { font-family: var(--font-display); font-size: 18px; color: var(--gray-100); }
@media(max-width:800px) { .nav-links, .nav .btn { display: none; } .mobile-btn { display: block; } }

/* ═══ HERO ═══ */
.hero { padding: 50px 0 40px; background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%); position: relative; overflow: hidden; }
.hero:before { content: ""; position: absolute; top: -50%; right: -20%; width: 70%; height: 200%; background: radial-gradient(ellipse, rgba(255,45,45,.12) 0%, transparent 60%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--gap-xl); align-items: center; }
@media(max-width:900px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: #ff2d2d26; border: 1px solid rgba(255,45,45,.4); border-radius: 50px; font-size: 13px; font-weight: 600; color: var(--red-bright); margin-bottom: 16px; }
.hero h1 { margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero-text { font-size: 16px; margin-bottom: 24px; max-width: 500px; }
@media(max-width:900px) { .hero-text { margin: 0 auto 24px; } }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
@media(max-width:900px) { .hero-btns { justify-content: center; } }
.hero-stats { display: flex; gap: 32px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
@media(max-width:900px) { .hero-stats { justify-content: center; } }
.stat-val { font-family: var(--font-display); font-size: 32px; color: var(--red); }
.stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-400); }

/* ═══ HERO CARD ═══ */
.hero-card { background: var(--card); border: 1px solid rgba(255,45,45,.2); border-radius: var(--radius-lg); padding: 24px; }
.hero-card h3 { text-align: center; margin-bottom: 20px; font-size: 1.5rem; }
.hero-card-btns { display: flex; flex-direction: column; gap: 10px; }
.hero-card-btns .btn { width: 100%; }
.hero-card-info { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); text-align: center; font-size: 14px; color: var(--gray-300); }
.hero-card-info strong { color: var(--gray-100); }

/* ═══ DISCLOSURE ═══ */
.disclosure { background: #ffd70014; border-top: 1px solid rgba(255,215,0,.2); border-bottom: 1px solid rgba(255,215,0,.2); padding: 12px 0; }
.disclosure p { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--gold); text-align: center; flex-wrap: wrap; }

/* ═══ SECTIONS ═══ */
.section { padding: var(--gap-2xl) 0; }
.section-alt { background: var(--dark); }
.section-head { text-align: center; margin-bottom: var(--gap-xl); }
.section-tag { display: inline-block; padding: 4px 12px; background: var(--red-dim); border-radius: 50px; font-family: var(--font-display); font-size: 14px; letter-spacing: .1em; color: var(--red); margin-bottom: 12px; }
.section-head h2 { margin-bottom: 12px; }
.section-head h2 em { font-style: normal; color: var(--red); }
.section-desc { max-width: 600px; margin: 0 auto; }

/* ═══ GAMES GRID ═══ */
.games-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media(max-width:1100px) { .games-grid { grid-template-columns: repeat(4, 1fr); } }
@media(max-width:850px) { .games-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:600px) { .games-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:400px) { .games-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; } }
.game-card { position: relative; background: var(--card); border-radius: var(--radius); overflow: hidden; transition: all .3s; aspect-ratio: 419/314; }
.game-card:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85) 100%); pointer-events: none; }
.game-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px #ff2d2d40; }
.game-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.game-card:hover img { transform: scale(1.08); }
.game-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px; z-index: 2; }
.game-card-title { font-family: var(--font-display); font-size: 16px; color: var(--white); letter-spacing: .03em; }
.game-card-provider { font-size: 11px; color: var(--red); font-weight: 600; }

/* ═══ RIVALO SECTION ═══ */
.rivalo-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: var(--gap-xl); align-items: start; }
@media(max-width:900px) { .rivalo-grid { grid-template-columns: 1fr; } }
.rivalo-content h2 { margin-bottom: 20px; }
.rivalo-content h2 em { font-style: normal; color: var(--red); }
.rivalo-content p { margin-bottom: 14px; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
@media(max-width:500px) { .features-grid { grid-template-columns: 1fr; } }
.feature { display: flex; align-items: center; gap: 12px; padding: 14px; background: #ffffff08; border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); }
.feature-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--red), var(--orange)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.feature-title { font-family: var(--font-display); font-size: 15px; color: var(--white); letter-spacing: .03em; }
.feature-text { font-size: 12px; color: var(--gray-400); }

/* ═══ SIDEBAR CARD ═══ */
.sidebar-card { background: var(--card); border: 1px solid rgba(255,45,45,.15); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 80px; }
.sidebar-logo { width: 160px; margin: 0 auto 20px; }
.sidebar-btns { display: flex; flex-direction: column; gap: 8px; }
.sidebar-btns .btn { width: 100%; }
.sidebar-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); text-align: center; font-size: 13px; }
.sidebar-meta-label { display: block; color: var(--gray-400); font-size: 11px; margin-bottom: 2px; }
.sidebar-meta-val { font-family: var(--font-display); font-size: 18px; color: var(--white); }

/* ═══ BONUSES ═══ */
.bonuses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width:800px) { .bonuses-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }
.bonus-card { background: var(--card); border: 1px solid rgba(255,255,255,.05); border-radius: var(--radius-lg); padding: 24px; position: relative; overflow: hidden; }
.bonus-card:before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--orange)); }
.bonus-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--red), var(--orange)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.bonus-card h3 { margin-bottom: 8px; font-size: 1.3rem; }
.bonus-card p { font-size: 14px; margin-bottom: 16px; }

/* ═══ STEPS ═══ */
.steps { display: flex; justify-content: center; gap: 40px; position: relative; }
.steps:before { content: ""; position: absolute; top: 24px; left: 15%; right: 15%; height: 2px; background: #ff2d2d4d; }
@media(max-width:700px) { .steps { flex-direction: column; gap: 24px; align-items: center; } .steps:before { display: none; } }
.step { text-align: center; position: relative; z-index: 1; flex: 1; max-width: 200px; }
.step-num { width: 48px; height: 48px; background: linear-gradient(135deg, var(--red), var(--orange)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 22px; color: #fff; margin: 0 auto 12px; }
.step h4 { margin-bottom: 4px; }
.step p { font-size: 13px; color: var(--gray-400); }

/* ═══ FAQ ═══ */
.faq { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; cursor: pointer; transition: color .2s; }
.faq-q h4 { font-size: 1.1rem; margin: 0; pointer-events: none; }
.faq-q:hover h4 { color: var(--red); }
.faq-arrow { font-size: 20px; color: var(--gray-400); transition: transform .3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--red); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 20px; }
.faq-a p { font-size: 14px; }

/* ═══ FOOTER ═══ */
.footer { background: linear-gradient(180deg, var(--medium) 0%, var(--black) 100%); padding-top: var(--gap-xl); border-top: 2px solid var(--red); }
.footer-main { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: var(--gap-xl); padding-bottom: var(--gap-lg); }
@media(max-width:800px) { .footer-main { grid-template-columns: 1fr 1fr; gap: var(--gap-lg); } }
@media(max-width:500px) { .footer-main { grid-template-columns: 1fr; text-align: center; } }
.footer-brand p { font-size: 14px; margin-top: 12px; max-width: 300px; }
@media(max-width:500px) { .footer-brand p { max-width: 100%; } }
.footer-col h5 { font-family: var(--font-display); font-size: 14px; letter-spacing: .1em; color: var(--red); margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 14px; color: var(--gray-300); }
.footer-col a:hover { color: var(--white); }

/* ═══ FOOTER RESPONSIBLE ═══ */
.responsible-bar { background: #ff2d2d14; border: 1px solid rgba(255,45,45,.2); border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: var(--gap-lg); }
.responsible-top { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
@media(max-width:600px) { .responsible-top { flex-direction: column; text-align: center; } }
.responsible-icon { width: 48px; height: 48px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.responsible-top h5 { font-family: var(--font-display); font-size: 18px; color: var(--red-bright); margin-bottom: 4px; }
.responsible-top p { font-size: 14px; margin: 0; }
.responsible-tips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
@media(max-width:900px) { .responsible-tips { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:500px) { .responsible-tips { grid-template-columns: 1fr; } }
.tip { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-200); }
.tip-icon { color: var(--red); font-size: 16px; }
.coljuegos-badge { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: #ffd70014; border: 1px solid rgba(255,215,0,.25); border-radius: var(--radius); margin-bottom: var(--gap-lg); }
@media(max-width:600px) { .coljuegos-badge { flex-direction: column; text-align: center; } }
.coljuegos-badge img { width: 60px; height: auto; }
.coljuegos-badge-text { font-size: 14px; }
.coljuegos-badge-text strong { display: block; font-family: var(--font-display); font-size: 16px; color: var(--gold); margin-bottom: 2px; }
.help-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: var(--gap-lg); }
.help-link { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: #ffffff0a; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); font-size: 13px; font-weight: 600; color: var(--gray-300); transition: all .2s; }
.help-link:hover { background: var(--red-dim); border-color: var(--red); color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 20px 0; text-align: center; }
.footer-badges { display: flex; justify-content: center; gap: 12px; margin-bottom: 12px; }
.badge-18 { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--red); border-radius: 50%; font-family: var(--font-display); font-size: 16px; color: #fff; }
.badge-license { display: inline-flex; align-items: center; padding: 8px 14px; background: var(--red-dim); border: 1px solid var(--red); border-radius: var(--radius); font-family: var(--font-display); font-size: 13px; color: var(--red); }
.copyright { font-size: 13px; color: var(--gray-400); margin-bottom: 8px; }
.copyright a { color: var(--gray-300); }
.disclaimer { font-size: 11px; color: var(--gray-400); max-width: 650px; margin: 0 auto; line-height: 1.6; }

/* ═══ LEGAL PAGES ═══ */
.legal-page { padding: 100px 0 60px; min-height: 100vh; }
.legal-content { max-width: 750px; margin: 0 auto; }
.legal-content h1 { font-size: 2.5rem; margin-bottom: 8px; }
.legal-date { font-size: 13px; color: var(--gray-400); margin-bottom: 32px; }
.legal-content h2 { font-size: 1.5rem; margin-top: 40px; margin-bottom: 16px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.05); }
.legal-content h3 { font-size: 1.1rem; color: var(--red); margin-top: 24px; margin-bottom: 12px; text-transform: none; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul, .legal-content ol { margin-bottom: 14px; padding-left: 20px; list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li { margin-bottom: 6px; color: var(--gray-200); font-size: 15px; }
.legal-box { background: #ff2d2d14; border: 1px solid rgba(255,45,45,.2); border-radius: var(--radius); padding: 20px; margin: 24px 0; }
.legal-box p { margin: 0; }
.legal-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.legal-table th, .legal-table td { padding: 12px; text-align: left; border: 1px solid rgba(255,255,255,.1); }
.legal-table th { background: var(--red-dim); font-family: var(--font-display); color: var(--red); }
.legal-table td { color: var(--gray-200); }

/* ═══ BREADCRUMBS ═══ */
.breadcrumbs { padding: 16px 0; font-size: 13px; }
.breadcrumbs a { color: var(--gray-400); }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs span { color: var(--gray-400); margin: 0 8px; }
.breadcrumbs .current { color: var(--gray-200); }

/* ═══ BLOG INDEX ═══ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-lg); overflow: hidden; transition: all .3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(255,45,45,.15); border-color: rgba(255,45,45,.3); }
.blog-card-img { height: 180px; background: linear-gradient(135deg, var(--card) 0%, var(--light) 100%); display: flex; align-items: center; justify-content: center; font-size: 48px; border-bottom: 2px solid var(--red); }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-card-tag { padding: 3px 10px; background: var(--red-dim); border-radius: 50px; font-family: var(--font-display); font-size: 11px; letter-spacing: .08em; color: var(--red); }
.blog-card-date { font-size: 12px; color: var(--gray-400); }
.blog-card-body h3 { font-size: 1.2rem; margin-bottom: 8px; text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-weight: 700; color: var(--white); }
.blog-card-body p { font-size: 14px; color: var(--gray-300); flex: 1; }
.blog-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--font-display); font-size: 14px; letter-spacing: .06em; color: var(--red); }
.blog-card-link:hover { color: var(--red-bright); gap: 10px; }

/* ═══ ARTICLE PAGE ═══ */
.article-page { padding: 100px 0 60px; }
.article-header { max-width: 750px; margin: 0 auto 40px; }
.article-header h1 { font-size: clamp(2rem, 5vw, 3rem); text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.article-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.article-meta-tag { padding: 4px 12px; background: var(--red-dim); border-radius: 50px; font-family: var(--font-display); font-size: 12px; color: var(--red); }
.article-meta-date { font-size: 13px; color: var(--gray-400); }
.article-meta-reading { font-size: 13px; color: var(--gray-400); }
.article-content { max-width: 750px; margin: 0 auto; }
.article-content h2 { font-size: 1.6rem; margin-top: 40px; margin-bottom: 16px; text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-weight: 700; }
.article-content h3 { font-size: 1.2rem; color: var(--red); margin-top: 28px; margin-bottom: 12px; text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-weight: 700; }
.article-content p { margin-bottom: 16px; line-height: 1.7; }
.article-content ul, .article-content ol { margin-bottom: 16px; padding-left: 24px; list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 8px; color: var(--gray-200); line-height: 1.6; }
.article-content blockquote { border-left: 3px solid var(--red); padding: 16px 20px; margin: 24px 0; background: var(--red-dim); border-radius: 0 var(--radius) var(--radius) 0; }
.article-content blockquote p { margin: 0; font-style: italic; color: var(--gray-100); }
.article-content strong { color: var(--white); }
.article-cta { max-width: 750px; margin: 40px auto 0; padding: 24px; background: var(--card); border: 1px solid rgba(255,45,45,.2); border-radius: var(--radius-lg); text-align: center; }
.article-cta h3 { margin-bottom: 12px; }
.article-cta p { margin-bottom: 16px; }

/* ═══ PAYMENT METHODS PAGE ═══ */
.pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media(max-width:800px) { .pay-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:500px) { .pay-grid { grid-template-columns: 1fr; } }
.pay-card { background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-lg); padding: 24px; text-align: center; transition: all .3s; }
.pay-card:hover { border-color: rgba(255,45,45,.3); transform: translateY(-2px); }
.pay-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--red), var(--orange)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 16px; }
.pay-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.pay-card p { font-size: 13px; color: var(--gray-300); margin-bottom: 12px; }
.pay-detail { display: flex; justify-content: center; gap: 16px; font-size: 12px; color: var(--gray-400); }
.pay-detail span { display: flex; align-items: center; gap: 4px; }

/* ═══ RESPONSIBLE GAMING PAGE ═══ */
.rg-hero { padding: 100px 0 40px; background: linear-gradient(180deg, var(--dark), var(--black)); text-align: center; }
.rg-hero h1 { margin-bottom: 16px; }
.rg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media(max-width:700px) { .rg-grid { grid-template-columns: 1fr; } }
.rg-card { background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-lg); padding: 24px; }
.rg-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--red); text-transform: none; }
.rg-card p { font-size: 14px; }
.rg-card ul { list-style: disc; padding-left: 20px; margin-top: 12px; }
.rg-card li { font-size: 14px; color: var(--gray-200); margin-bottom: 6px; }
.rg-orgs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
@media(max-width:800px) { .rg-orgs { grid-template-columns: repeat(2, 1fr); } }
.rg-org { background: var(--card); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding: 20px; text-align: center; }
.rg-org h4 { font-size: 1rem; margin-bottom: 6px; color: var(--gold); }
.rg-org p { font-size: 13px; color: var(--gray-300); margin-bottom: 8px; }

/* ═══ COOKIE CONSENT ═══ */
.consent { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); border-top: 1px solid rgba(255,45,45,.2); padding: 16px 20px; z-index: 200; transform: translateY(100%); transition: transform .4s; }
.consent.show { transform: translateY(0); }
.consent-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.consent-text { font-size: 14px; color: var(--gray-200); flex: 1; }
.consent-text a { color: var(--red); }
.consent-btns { display: flex; gap: 8px; }
.consent-panel { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); border-top: 1px solid rgba(255,45,45,.2); padding: 24px; z-index: 201; max-height: 80vh; overflow-y: auto; }
.consent-panel.show { display: block; }
.consent-toggle { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.consent-toggle label { font-size: 14px; color: var(--gray-100); font-weight: 600; }
.consent-toggle small { font-size: 12px; color: var(--gray-400); display: block; margin-top: 2px; font-weight: 400; }
.toggle-switch { position: relative; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: var(--gray-400); border-radius: 24px; cursor: pointer; transition: .3s; }
.toggle-slider:before { content: ""; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px; background: white; border-radius: 50%; transition: .3s; }
.toggle-switch input:checked + .toggle-slider { background: var(--red); }
.toggle-switch input:checked + .toggle-slider:before { transform: translateX(20px); }

/* ═══ CONTENT PAGE HEADER ═══ */
.page-hero { padding: 100px 0 40px; background: linear-gradient(180deg, var(--dark), var(--black)); position: relative; overflow: hidden; }
.page-hero:before { content: ""; position: absolute; top: -30%; right: -10%; width: 50%; height: 150%; background: radial-gradient(ellipse, rgba(255,45,45,.08) 0%, transparent 60%); pointer-events: none; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--red); }
.page-hero-desc { font-size: 16px; max-width: 600px; }
@media(max-width:900px) { .page-hero { text-align: center; } .page-hero-desc { margin: 0 auto; } }

/* ═══ INFO BOXES ═══ */
.info-box { padding: 20px; border-radius: var(--radius); margin: 24px 0; }
.info-box-warning { background: #ff2d2d14; border: 1px solid rgba(255,45,45,.2); }
.info-box-info { background: #00e5ff14; border: 1px solid rgba(0,229,255,.2); }
.info-box-gold { background: #ffd70014; border: 1px solid rgba(255,215,0,.2); }
.info-box p { margin: 0; font-size: 14px; }
.info-box strong { color: var(--white); }

/* ═══ COMPARISON TABLE ═══ */
.compare-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border: 1px solid rgba(255,255,255,.08); }
.compare-table th { background: var(--card); font-family: var(--font-display); font-size: 15px; color: var(--red); letter-spacing: .03em; }
.compare-table td { color: var(--gray-200); }
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.compare-highlight { color: var(--gold) !important; font-weight: 700; }
