﻿/* ============================================================
   DUDESPIN-CASINOS.DE — Main Stylesheet
   Brand: dark navy + orange/gold
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --bg-primary:   #06162B;
  --bg-secondary: #081A33;
  --bg-card:      #0D2342;
  --bg-hover:     #12315A;
  --accent:       #FC3D77;
  --accent-hover: #FF5FA5;
  --cyan:         #0484C4;
  --orange:       #FE6301;
  --gold:         #FFCF46;
  --gold-light:   #FFE27A;
  --green:        #00C875;
  --red:          #FF3B5C;
  --purple:       #0484C4;
  --text-primary: #F0F6FF;
  --text-muted:   #A9BAD4;
  --text-dim:     #6582A4;
  --border:       #1B3B66;
  --border-light: #27507F;
  --radius:       8px;
  --radius-lg:    12px;
  --radius-sm:    6px;
  --shadow:       0 14px 36px rgba(0,0,0,.38);
  --shadow-glow:  0 0 24px rgba(252,61,119,.28), 0 0 32px rgba(4,132,196,.16);
  --gradient-fire: linear-gradient(135deg, #FC3D77 0%, #0484C4 52%, #FE6301 100%);
  --gradient-body: linear-gradient(180deg, #0B223C 0%, #06162B 100%);
  --transition:   .2s ease;
  --font:         'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Skip-to-content (Accessibility) ── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 99999;
  background: var(--accent);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: top .15s ease;
  white-space: nowrap;
}
.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ── Focus visible (keyboard navigation) ── */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }
h1,h2,h3,h4,h5 { line-height: 1.25; font-weight: 800; }

/* ── Typography ── */
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--text-primary); }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); color: var(--text-primary); }
h3 { font-size: clamp(1rem, 2vw, 1.3rem); }
h4 { font-size: 1rem; }
p  { color: var(--text-muted); line-height: 1.8; margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text-primary); }

/* ── Container ── */
.container { max-width: 1220px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ── Sections ── */
.section    { padding: 64px 0; }
.section-sm { padding: 36px 0; }
.section-lg { padding: 96px 0; }

/* ── Text Gradient ── */
.text-gradient {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8,12,27,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1220px; margin: 0 auto; padding: 0 20px;
  min-height: 66px; height: 66px; display: flex; align-items: center; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text { font-size: 1.25rem; font-weight: 900; color: var(--text-primary); letter-spacing: 0; }
.logo-text span { color: var(--gold); }
.logo:hover { opacity: .9; }

.main-nav { display: flex; align-items: center; gap: 4px; margin-left: 24px; flex: 1; }
.main-nav a {
  padding: 6px 12px; border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 600; color: var(--text-muted); white-space: nowrap;
  transition: all var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--text-primary); background: var(--bg-hover); }
.main-nav a.active { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.btn-login {
  padding: 7px 16px; border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); font-size: .82rem; font-weight: 600;
  color: var(--text-muted); transition: all var(--transition);
}
.btn-login:hover { border-color: var(--accent); color: var(--accent); }
.btn-tracker {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: var(--radius-sm);
  background: var(--gradient-fire); color: #fff !important;
  font-size: .85rem; font-weight: 700; white-space: nowrap;
  box-shadow: var(--shadow-glow); transition: all var(--transition); text-decoration: none;
}
.btn-tracker:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 0 32px rgba(252,61,119,.4); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  padding: 4px; align-items: center; justify-content: center;
}
.hamburger span { width: 22px; height: 2px; background: var(--text-muted); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 20px 20px; background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  position: absolute; width: 100%; top: 100%; left: 0;
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 14px; border-radius: var(--radius-sm);
  min-height: 44px; display: flex; align-items: center;
  color: var(--text-muted); font-size: .9rem; font-weight: 600; transition: all var(--transition);
}
.mobile-nav a:hover { background: var(--bg-hover); color: var(--text-primary); }
.mobile-tracker { margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--border); }
.mobile-tracker .btn-tracker { width: 100%; justify-content: center; padding: 14px; font-size: .9rem; }

/* BREADCRUMB */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--text-dim); margin-bottom: 12px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--text-dim); }
.breadcrumb .current { color: var(--gold); }

/* HERO */
.hero { position: relative; padding: 72px 0 60px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 60%, rgba(252,61,119,.08), transparent),
              radial-gradient(ellipse 40% 60% at 80% 30%, rgba(255,207,70,.06), transparent),
              var(--gradient-body);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none;
  transition: all var(--transition); white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: .95rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary { background: var(--gradient-fire); color: #fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover { filter: brightness(1.12); transform: translateY(-1px); color: #fff; }
.btn-secondary { background: var(--bg-hover); color: var(--text-primary); border: 1px solid var(--border-light); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #000; font-weight: 800; }
.btn-gold:hover { filter: brightness(1.1); transform: translateY(-1px); color: #000; }
.btn-outline { background: transparent; border: 1px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }

/* STAT GRID */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat-box {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 16px; text-align: center; transition: border-color var(--transition);
}
.stat-box:hover { border-color: var(--accent); }
.stat-num { display: block; font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1.1; }
.stat-label { display: block; font-size: .8rem; color: var(--text-muted); margin-top: 4px; }

/* NOTICE BAR */
.notice-bar {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(252,61,119,.1), rgba(255,207,70,.07));
  border: 1px solid rgba(252,61,119,.3); border-radius: var(--radius);
  color: var(--text-muted); font-size: .9rem;
}
.notice-bar > span { font-size: 1.4rem; flex-shrink: 0; }
.notice-bar strong { color: var(--gold); }

/* PAGE WITH SIDEBAR */
.page-with-sidebar { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 32px; align-items: start; }
.page-with-sidebar > * { min-width: 0; }
.sidebar-sticky { position: sticky; top: 82px; }
.sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.sidebar-widget h3 {
  font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  color: var(--gold); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border);
}

/* PROS / CONS */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pros, .cons { border-radius: var(--radius); padding: 20px; }
.pros { background: rgba(0,200,117,.08); border: 1px solid rgba(0,200,117,.25); }
.cons { background: rgba(255,59,92,.08);  border: 1px solid rgba(255,59,92,.25); }
.pros h4 { color: var(--green); margin-bottom: 12px; font-size: .9rem; }
.cons h4 { color: var(--red);   margin-bottom: 12px; font-size: .9rem; }
.pros ul li, .cons ul li {
  font-size: .85rem; color: var(--text-muted); padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.04); display: flex; align-items: flex-start; gap: 6px;
}
.pros ul li::before { content: 'OK'; color: var(--green); flex-shrink:0; font-weight: 700; font-size:.7rem; padding-top:2px; }
.cons ul li::before { content: 'X';  color: var(--red);   flex-shrink:0; font-weight: 700; font-size:.7rem; padding-top:2px; }
.pros ul li:last-child, .cons ul li:last-child { border-bottom: none; }

/* DATA TABLES */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--border); }
.table-wrap { max-width: 100%; }
.data-table { width: 100%; border-collapse: collapse; font-size: .86rem; min-width: 520px; }
.data-table th {
  background: var(--bg-card); padding: 11px 14px; text-align: left;
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--text-muted); border-bottom: 1px solid var(--border); white-space: nowrap;
}
.data-table td { padding: 11px 14px; border-bottom: 1px solid rgba(30,40,69,.5); color: var(--text-muted); white-space: nowrap; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg-hover); }
.data-table tr.highlight td { background: rgba(252,61,119,.06); color: var(--text-primary); }
.rating-num { display: inline-block; font-size: .95rem; font-weight: 900; color: var(--gold); }

/* BAR TRACK */
.bar-track { flex: 1; height: 6px; background: var(--bg-hover); border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--gradient-fire); border-radius: 99px; width: 0; transition: width 1s ease; }
.bar-item { display: flex; align-items: center; gap: 12px; }
.bar-label { min-width: 120px; font-size: .82rem; color: var(--text-muted); }
.bar-val { min-width: 56px; font-size: .82rem; font-weight: 700; color: var(--gold); text-align: right; }
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar-chart .bar-item { gap: 14px; }
.bar-chart .bar-track { height: 8px; }

/* DONUT CHART */
.donut-wrap { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.donut-svg { width: 200px; height: 200px; flex-shrink: 0; }
.donut-legend { display: flex; flex-direction: column; gap: 10px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text-muted); }
.legend-dot { width: 12px; height: 12px; border-radius: 99px; flex-shrink: 0; }

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num {
  width: 36px; height: 36px; border-radius: 99px; background: var(--gradient-fire);
  color: #fff; font-weight: 900; font-size: .95rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-content h4 { font-size: .95rem; margin-bottom: 4px; color: var(--text-primary); }
.step-content p { font-size: .85rem; color: var(--text-muted); margin: 0; }
.step-content a { color: var(--accent); font-weight: 600; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.faq-item:hover { border-color: var(--border-light); }
.faq-q {
  padding: 16px 20px; font-weight: 700; font-size: .9rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; text-align: left; color: var(--text-primary);
  background: none; border: none; font-family: var(--font);
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--accent); font-weight: 300; flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 14px 20px 16px; font-size: .86rem; color: var(--text-muted); border-top: 1px solid var(--border); }
.faq-item.open .faq-a { display: block; }

/* CARDS / GRID */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); transition: all var(--transition); }
.card:hover { border-color: var(--border-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.card, .promo-card, .tournament-card, .stat-box, .sidebar-widget { min-width: 0; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* BADGES */
.badge { display: inline-block; padding: 3px 10px; border-radius: 99px; font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.badge-new   { background: rgba(252,61,119,.15);  color: var(--accent); border: 1px solid rgba(252,61,119,.3); }
.badge-green { background: rgba(0,200,117,.15);  color: var(--green);  border: 1px solid rgba(0,200,117,.3); }
.badge-accent{ background: rgba(4,132,196,.15); color: var(--purple); border: 1px solid rgba(4,132,196,.3); }
.badge-gold  { background: rgba(255,207,70,.15);  color: var(--gold);   border: 1px solid rgba(255,207,70,.3); }
.payment-badge { padding: 4px 10px; border-radius: 6px; background: var(--bg-hover); border: 1px solid var(--border); font-size: .78rem; color: var(--text-muted); }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, rgba(252,61,119,.12), rgba(255,207,70,.08));
  border: 1px solid rgba(252,61,119,.3); border-radius: var(--radius-lg);
  padding: 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner h2 { margin-bottom: 12px; }
.cta-banner p { max-width: 560px; margin: 0 auto 24px; }

/* SEO BLOCK */
.seo-block { margin-top: 40px; padding: 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.seo-block h2 { margin-bottom: 16px; }
.seo-block h3 { font-size: 1.05rem; margin: 28px 0 10px; color: var(--gold); }
.seo-block p { font-size: .9rem; color: var(--text-muted); }
.seo-block a { color: var(--accent); font-weight: 600; }

/* PAYMENT ROW */
.payment-list { display: flex; flex-direction: column; gap: 12px; }
.payment-row { display: flex; align-items: center; gap: 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; transition: border-color var(--transition); }
.payment-row:hover { border-color: var(--border-light); }
.payment-icon { font-size: 1.8rem; flex-shrink: 0; width: 44px; text-align: center; }
.payment-name { font-weight: 700; font-size: .92rem; }
.payment-detail { font-size: .8rem; color: var(--text-muted); margin-top: 2px; }
.payment-tags { margin-left: auto; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }

/* PROMO CARDS */
.promo-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: all var(--transition); }
.promo-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.promo-header { padding: 24px; position: relative; background: linear-gradient(135deg, rgba(252,61,119,.15), rgba(255,207,70,.08)); }
.promo-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.promo-amount { font-size: 2rem; font-weight: 900; color: var(--gold); }
.promo-title { font-size: .95rem; font-weight: 700; color: var(--text-primary); margin: 6px 0; }
.promo-desc { font-size: .82rem; color: var(--text-muted); flex: 1; }

/* TOURNAMENT CARD */
.tournament-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 12px; transition: all var(--transition); }
.tournament-card:hover { border-color: var(--gold); }
.tournament-prize { font-size: 1.8rem; font-weight: 900; color: var(--gold); }
.tournament-name { font-size: 1rem; font-weight: 700; }
.tournament-meta { font-size: .8rem; color: var(--text-muted); display: flex; gap: 14px; flex-wrap: wrap; }
.tournament-status { display: flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; }
.pulse { width: 8px; height: 8px; border-radius: 99px; background: var(--green); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.3); } }

/* GAME GRID */
.game-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.game-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: all var(--transition); cursor: pointer; position: relative; }
.game-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.game-thumb { width: 100%; aspect-ratio: 3/4; background: var(--bg-hover); display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 2rem; position: relative; overflow: hidden; }
.game-info { padding: 10px; }
.game-name { font-size: .78rem; font-weight: 700; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-provider { font-size: .7rem; color: var(--text-dim); }

/* FOOTER */
.site-footer { margin-top: 80px; background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.footer-brand p { font-size: .85rem; color: var(--text-muted); margin: 16px 0; }
.footer-col h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted); margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .86rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge { padding: 4px 10px; border-radius: 99px; background: var(--bg-hover); border: 1px solid var(--border); font-size: .73rem; color: var(--text-muted); }
.footer-copy { font-size: .8rem; color: var(--text-dim); }
.footer-disclaimer { border-top: 1px solid var(--border); padding: 20px 0; font-size: .75rem; color: var(--text-dim); line-height: 1.7; }
.footer-disclaimer a { color: var(--text-dim); text-decoration: underline; }
.age-badge { display: inline-block; padding: 4px 10px; background: var(--red); border-radius: 99px; color: #fff; font-size: .75rem; font-weight: 700; }

/* SCROLL TOP */
#scroll-top { position: fixed; bottom: 28px; right: 24px; z-index: 999; width: 44px; height: 44px; border-radius: 99px; background: var(--gradient-fire); color: #fff; font-size: 1.1rem; font-weight: 700; border: none; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: var(--shadow-glow); transition: all var(--transition); }
#scroll-top:hover { filter: brightness(1.15); transform: translateY(-2px); }
#scroll-top.visible { display: flex; }

/* COOKIE BAR */
#cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--bg-card); border-top: 1px solid var(--border); padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; box-shadow: 0 -8px 32px rgba(0,0,0,.4); }
#cookie-bar p { font-size: .85rem; color: var(--text-muted); margin: 0; }
#cookie-bar a { color: var(--accent); }
#cookie-accept { padding: 8px 20px; border-radius: var(--radius-sm); background: var(--gradient-fire); color: #fff; border: none; font-weight: 700; font-size: .85rem; cursor: pointer; white-space: nowrap; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: auto; }
  .btn-login { display: none; }
  .page-with-sidebar { grid-template-columns: minmax(0, 1fr); }
  .sidebar-sticky { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .game-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .cta-banner { padding: 32px 20px; }
  .hero { padding: 48px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .donut-wrap { flex-direction: column; align-items: flex-start; gap: 20px; }
  .donut-svg { width: 150px !important; height: 150px !important; }
  .donut-legend { width: 100%; }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .data-table { min-width: 560px; }
  .bar-item { flex-wrap: wrap; align-items: center; gap: 8px; }
  .bar-label { width: 100%; min-width: 0; }
  .bar-track { flex: 1 1 calc(100% - 70px); }
  .bar-val { min-width: 62px; text-align: right; }
  .table-wrap { margin-left: -20px; margin-right: -20px; border-radius: 0; border-left: none; border-right: none; }
  .btn-login { display: none; }
  /* Grid helpers collapse on tablet/mobile */
  .hero-grid,
  .two-col-equal,
  .bonus-hero-row { grid-template-columns: 1fr !important; gap: 28px; }
  /* Payment row wraps */
  .payment-row { flex-wrap: wrap; gap: 8px; }
  .payment-tags { margin-left: 0 !important; margin-top: 8px; }
  .payment-name { flex: 1 1 auto; min-width: 0; }
  .payment-info { flex-shrink: 0; }
  .payment-limit { flex: 1 1 100%; order: 3; font-size: .8rem; color: var(--text-muted); }
  .payment-speed { order: 4; flex-shrink: 0; }
  .payment-fee { order: 5; flex-shrink: 0; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  .container { padding: 0 14px; }
  .header-inner { gap: 10px; }
  .header-actions .btn-tracker { display: none; }
  .hero { padding: 36px 0 28px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stat-num { font-size: 1.6rem; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .bar-label { min-width: 90px; font-size: .76rem; }
  .bar-track { flex: 1 1 100%; }
  .bar-val { margin-left: auto; }
  .seo-block { padding: 20px 16px; }
  .cta-banner { padding: 24px 16px; }
  .btn-lg { padding: 12px 20px; font-size: .88rem; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .table-wrap { margin-left: -14px !important; margin-right: -14px !important; }
  .data-table { min-width: 520px; }
  /* Force collapse all inline grids at 480px */
  .hero-grid,
  .two-col-equal,
  .bonus-hero-row { grid-template-columns: 1fr !important; gap: 20px; }
  /* Payment tags left-align */
  .payment-tags { justify-content: flex-start !important; }
  .leaderboard-row { flex-wrap: wrap !important; row-gap: 6px; }
  .leaderboard-row > span:nth-child(2) { flex: 1 1 calc(100% - 42px) !important; }
}

/* ── Safe-area insets (notch/home-indicator support) ── */
#cookie-bar {
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  padding-left:   calc(24px + env(safe-area-inset-left, 0px));
  padding-right:  calc(24px + env(safe-area-inset-right, 0px));
}
#scroll-top {
  bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  right:  calc(24px + env(safe-area-inset-right, 0px));
}

/* ── Print styles ── */
@media print {
  .site-header, #cookie-bar, #scroll-top, .btn-tracker, .cta-banner { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; }
}

/* ── High contrast / reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
@media (forced-colors: active) {
  .btn-tracker, .btn-primary { border: 2px solid ButtonText; }
}

/* ── Hero Image Backgrounds ── */
.hero-img-wrap {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: .18; filter: saturate(1.4) brightness(.85);
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg-primary) 40%, transparent 100%),
              linear-gradient(180deg, transparent 60%, var(--bg-primary) 100%);
}
/* Author photo */
.author-photo {
  width: 90px; height: 90px; border-radius: 12px;
  object-fit: cover; object-position: top center;
  flex-shrink: 0; border: 2px solid var(--border-light);
}
/* Slot card image */
.game-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.game-card:hover .game-thumb img { transform: scale(1.06); }


/* DUDESPIN BRAND REFRESH */
.logo { min-width: 0; }
.logo-icon.brand-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(252,61,119,.28), 0 0 22px rgba(4,132,196,.16);
}
.logo-text { letter-spacing: 0; }
.logo-text span { color: var(--cyan); text-shadow: 0 0 10px rgba(4,132,196,.35); }
.site-header {
  background: rgba(6,22,43,.96);
  box-shadow: 0 12px 36px rgba(0,0,0,.22);
}
.hero {
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-grid,
.bonus-hero-row,
.two-col-equal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 42px;
  align-items: center;
}
.hero-img-wrap img {
  opacity: .46;
  filter: saturate(1.18) contrast(1.08) brightness(.78);
}
.hero-img-overlay {
  background:
    linear-gradient(90deg, rgba(6,22,43,.98) 0%, rgba(6,22,43,.9) 38%, rgba(6,22,43,.52) 66%, rgba(6,22,43,.26) 100%),
    linear-gradient(180deg, rgba(6,22,43,.12) 0%, var(--bg-primary) 100%);
}
.stat-box,
.card,
.sidebar-widget,
.seo-block,
.payment-row,
.table-wrap {
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.card,
.sidebar-widget,
.seo-block,
.payment-row,
.promo-card,
.tournament-card,
.stat-box {
  background: linear-gradient(180deg, rgba(13,35,66,.98), rgba(8,26,51,.98));
}
.btn-primary,
.btn-tracker,
#cookie-accept,
#scroll-top {
  box-shadow: var(--shadow-glow);
}
.promo-card {
  border-color: rgba(39,80,127,.86);
}
.promo-card:hover {
  border-color: var(--accent);
  box-shadow: 0 14px 34px rgba(252,61,119,.18);
}
.promo-art,
.tournament-art {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-bottom: 1px solid rgba(39,80,127,.85);
}
.promo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 62px;
}
.tournament-card {
  padding: 0 !important;
  gap: 0;
  overflow: hidden;
}
.tournament-card > :not(.tournament-art) {
  margin-left: 24px;
  margin-right: 24px;
}
.tournament-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.tournament-live,
.tournament-time {
  font-size: .76rem;
  color: var(--text-muted);
}
.tournament-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(252,61,119,.13);
  color: var(--accent);
  font-weight: 800;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(252,61,119,.7);
}
.tournament-title {
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.tournament-desc {
  color: var(--text-muted);
  font-size: .86rem;
  line-height: 1.65;
  margin-top: 8px;
}
.tournament-footer {
  margin-top: 16px;
  margin-bottom: 24px;
}
.author-photo {
  width: 96px;
  height: 116px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid rgba(252,61,119,.55);
  box-shadow: 0 0 20px rgba(252,61,119,.22), 0 0 26px rgba(4,132,196,.12);
}
.sidebar-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.sidebar-author .author-photo {
  width: 64px;
  height: 64px;
  border-radius: 10px;
}
.team-member-card {
  min-width: 0;
}
.team-member-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.game-card {
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}
.game-card:hover {
  box-shadow: 0 14px 34px rgba(252,61,119,.2);
}
.game-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,207,70,.16), inset 0 -40px 70px rgba(6,22,43,.12);
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }
  .team-member-card {
    flex-direction: column !important;
    gap: 14px !important;
    padding: 20px !important;
  }
  .team-member-card .author-photo {
    width: 80px;
    height: 96px;
  }
  .promo-art,
  .tournament-art {
    aspect-ratio: 16 / 8;
  }
  .tournament-card > :not(.tournament-art) {
    margin-left: 18px;
    margin-right: 18px;
  }
  .tournament-footer {
    margin-bottom: 18px;
  }
}
