/* ============================================================
   PISTOLO CASINO — STYLE.CSS
   Luxury Dark Casino | Gold & Crimson Palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --gold:        #C9A84C;
  --gold-light:  #F0CC6E;
  --gold-dark:   #9A7630;
  --crimson:     #8B1A1A;
  --crimson-bright: #C0392B;
  --bg-dark:     #0A0A0E;
  --bg-card:     #12121A;
  --bg-card2:    #1A1A26;
  --text-main:   #E8E0D0;
  --text-muted:  #888070;
  --text-bright: #F5EDD8;
  --border:      rgba(201,168,76,0.25);
  --border-glow: rgba(201,168,76,0.6);
  --radius:      10px;
  --radius-lg:   18px;
  --shadow-gold: 0 0 30px rgba(201,168,76,0.2), 0 4px 20px rgba(0,0,0,0.6);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.7);
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.75;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(139,26,26,0.18) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  min-height: 100vh;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================================
   SELECTION
   ============================================================ */
::selection { background: var(--gold); color: var(--bg-dark); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(201,168,76,0.3); }
  50%       { box-shadow: 0 0 25px rgba(201,168,76,0.7), 0 0 50px rgba(201,168,76,0.3); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes card-deal {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes border-run {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes number-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); color: var(--gold-light); }
  100% { transform: scale(1); }
}

/* ============================================================
   TYPOGRAPHY — GLOBAL ELEMENT STYLES
   ============================================================ */

h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dark) 70%, var(--gold-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  margin-bottom: 1rem;
  position: relative;
}
h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 0.5rem;
  border-radius: 2px;
}

h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
h2::before {
  content: '◆';
  color: var(--crimson-bright);
  margin-right: 0.5rem;
  font-size: 0.7em;
  vertical-align: middle;
}

h3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-bright);
  letter-spacing: 0.02em;
  margin: 2rem 0 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}

h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin: 1.5rem 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--text-bright);
  margin: 1.2rem 0 0.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* ============================================================
   PARAGRAPH STYLES
   ============================================================ */
p {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-weight: 400;
  position: relative;
}

/* First letter drop-cap for first paragraph after h1/h2 */
h1 + p::first-letter,
h2 + p::first-letter {
  font-family: 'Cinzel', serif;
  font-size: 3.2em;
  font-weight: 900;
  float: left;
  line-height: 0.75;
  margin: 0.05em 0.12em 0 0;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201,168,76,0.5);
}

/* Strong/Bold inside paragraphs */
p strong, p b {
  color: var(--gold-light);
  font-weight: 700;
}

p em, p i {
  color: var(--text-bright);
  font-style: italic;
}

/* ============================================================
   LINKS
   ============================================================ */
a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition), text-shadow var(--transition);
}
a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 12px rgba(201,168,76,0.5);
}

/* ============================================================
   LISTS
   ============================================================ */
ul, ol {
  margin: 1.5rem 0 1.5rem 0;
  padding: 0;
  list-style: none;
}

ul li {
  position: relative;
  padding: 0.6rem 0.8rem 0.6rem 2.2rem;
  margin-bottom: 0.4rem;
  background: linear-gradient(90deg, rgba(201,168,76,0.05) 0%, transparent 100%);
  border-left: 2px solid rgba(201,168,76,0.3);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-main);
  transition: background var(--transition), border-color var(--transition);
}
ul li::before {
  content: '♠';
  position: absolute;
  left: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.75rem;
}
ul li:hover {
  background: linear-gradient(90deg, rgba(201,168,76,0.12) 0%, transparent 100%);
  border-left-color: var(--gold);
}

ol {
  counter-reset: casino-counter;
}
ol li {
  counter-increment: casino-counter;
  position: relative;
  padding: 0.65rem 0.8rem 0.65rem 3rem;
  margin-bottom: 0.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-main);
  transition: border-color var(--transition), transform var(--transition);
}
ol li::before {
  content: counter(casino-counter);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 0.85rem;
  border-radius: var(--radius) 0 0 var(--radius);
}
ol li:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

/* ============================================================
   TABLES
   ============================================================ */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

thead tr {
  background: linear-gradient(90deg, #1A0E00, #2A1A04, #1A0E00);
  position: relative;
}
thead tr::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

thead th {
  padding: 1rem 1.2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-align: left;
}

tbody tr {
  transition: background var(--transition);
  border-bottom: 1px solid rgba(201,168,76,0.07);
}
tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
tbody tr:hover { background: rgba(201,168,76,0.06); }

tbody td {
  padding: 0.85rem 1.2rem;
  color: var(--text-main);
  font-size: 0.95rem;
  vertical-align: middle;
}

tbody td:first-child {
  font-weight: 600;
  color: var(--text-bright);
}

/* Table caption */
caption {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.5rem;
  caption-side: bottom;
  text-align: right;
  letter-spacing: 0.05em;
}

/* ============================================================
   BLOCKQUOTE
   ============================================================ */
blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(139,26,26,0.15), rgba(201,168,76,0.05));
  border-left: 4px solid var(--crimson-bright);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  position: relative;
  font-family: 'Cinzel', serif;
  font-style: italic;
  color: var(--text-bright);
  font-size: 1.05rem;
}
blockquote::before {
  content: '"';
  position: absolute;
  top: -0.5rem; left: 0.8rem;
  font-size: 4rem;
  color: var(--crimson-bright);
  opacity: 0.4;
  line-height: 1;
  font-style: normal;
}

/* ============================================================
   HR / DIVIDER
   ============================================================ */
hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  margin: 2.5rem 0;
  opacity: 0.5;
}

/* ============================================================
   IMAGES IN CONTENT
   ============================================================ */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

figure {
  margin: 2rem 0;
  text-align: center;
}
figure img {
  margin: 0 auto;
  max-height: 500px;
  object-fit: cover;
  width: 100%;
}
figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   CODE
   ============================================================ */
code {
  font-family: 'Courier New', monospace;
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
  border: 1px solid rgba(201,168,76,0.2);
}

/* ============================================================
   GLOBAL BUTTON
   ============================================================ */
.btn, button, input[type="submit"], input[type="button"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  color: var(--gold-light);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before, button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}
.btn:hover::before, button:hover::before { opacity: 1; }
.btn:hover, button:hover {
  color: var(--bg-dark);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}
.btn span, button span { position: relative; z-index: 1; }
.btn:hover span, button:hover span { color: var(--bg-dark); }

/* Primary button variant */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  border-color: var(--gold-light);
  font-weight: 900;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 30px rgba(201,168,76,0.5), 0 0 0 4px rgba(201,168,76,0.15);
}

/* ============================================================
   LAYOUT WRAPPER
   ============================================================ */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,14,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  animation: fadeInDown 0.6s ease both;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1220px;
  margin: 0 auto;
  gap: 1rem;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border: none;
  box-shadow: none;
  border-radius: 50%;
  background: var(--bg-card2);
  padding: 4px;
}
.logo-text {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.logo-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  -webkit-text-fill-color: var(--text-muted);
  margin-top: -2px;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.header-nav li { margin: 0; background: none; border: none; padding: 0; }
.header-nav li::before { display: none; }
.header-nav a {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: block;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid transparent;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--gold-light);
  border-color: var(--border);
  background: rgba(201,168,76,0.08);
  text-shadow: 0 0 10px rgba(201,168,76,0.4);
}

/* CTA button in header */
.header-cta {
  flex-shrink: 0;
}
.header-cta a {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark) !important;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  display: inline-block;
  animation: pulse-glow 3s ease-in-out infinite;
  white-space: nowrap;
}
.header-cta a:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  text-shadow: none;
}

/* Burger menu */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,14,0.97);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  text-decoration: none;
  transition: color var(--transition);
  border-bottom: 1px solid var(--border);
  width: 260px;
  text-align: center;
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .mobile-cta {
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark) !important;
  border-radius: var(--radius);
  border: none;
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

/* ============================================================
   TICKER BAR
   ============================================================ */
.ticker-bar {
  background: linear-gradient(90deg, var(--crimson) 0%, #4A0A0A 50%, var(--crimson) 100%);
  overflow: hidden;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.ticker-inner {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}
.ticker-bar:hover .ticker-inner { animation-play-state: paused; }
.ticker-item {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ticker-item .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-glow 1.5s infinite;
}

/* ============================================================
   BONUS SECTION
   ============================================================ */
.bonus-section {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.bonus-section::before {
  content: '';
  position: absolute;
  top: -60%; left: -20%;
  width: 140%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(139,26,26,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.bonus-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.bonus-header h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  border: none;
  padding: 0;
}
.bonus-header h2::before { display: none; }
.bonus-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  animation: card-deal 0.6s ease both;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: default;
}
.bonus-card:nth-child(1) { animation-delay: 0.1s; }
.bonus-card:nth-child(2) { animation-delay: 0.2s; }
.bonus-card:nth-child(3) { animation-delay: 0.3s; }

.bonus-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.bonus-card:hover::before { opacity: 1; }
.bonus-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

/* Featured card */
.bonus-card.featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, #1A1308, #12120A);
  animation: pulse-glow 3s ease-in-out infinite;
}
.bonus-card.featured::after {
  content: '⭐ LEGJOBB AJÁNLAT';
  position: absolute;
  top: 1rem; right: -2.5rem;
  background: linear-gradient(135deg, var(--crimson-bright), var(--crimson));
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 3rem;
  transform: rotate(35deg);
  white-space: nowrap;
}

.bonus-icon {
  font-size: 2.5rem;
  text-align: center;
  animation: float 3s ease-in-out infinite;
  display: block;
}

.bonus-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  text-align: center;
  letter-spacing: 0.05em;
}

.bonus-amount {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  animation: number-pop 2s ease-in-out infinite;
}
.bonus-amount small {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
  letter-spacing: 0.05em;
  font-family: 'Raleway', sans-serif;
  margin-top: 0.2rem;
}

.bonus-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.bonus-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-main);
  padding: 0.35rem 0;
  background: none;
  border-left: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(201,168,76,0.07);
}
.bonus-features li::before { display: none; }
.bonus-features li:last-child { border-bottom: none; }
.bonus-features li .check {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.bonus-card .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  padding: 0.85rem;
  font-size: 0.8rem;
}
.bonus-card.featured .btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  border-color: var(--gold-light);
}
.bonus-card.featured .btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* ============================================================
   MAIN CONTENT AREA
   ============================================================ */
.content-section {
  padding: 3rem 0 2rem;
  position: relative;
}

.content-wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   SLOTS SECTION
   ============================================================ */
.slots-section {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.slots-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(139,26,26,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.slots-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.slots-header h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  border: none;
  padding: 0;
}
.slots-header h2::before { display: none; }
.slots-header p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr));
  gap: 1.2rem;
}

.slot-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}
.slot-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(201,168,76,0.25);
  z-index: 2;
}
.slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  box-shadow: none;
  border-radius: 0;
  transition: transform var(--transition);
}
.slot-card:hover img { transform: scale(1.06); }

.slot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,14,0.92) 0%, rgba(10,10,14,0.6) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem;
  gap: 0.4rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.slot-card:hover .slot-overlay { opacity: 1; }

.slot-name {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.slot-btn {
  width: 100%;
  padding: 0.5rem 0.8rem;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  transition: all var(--transition);
  display: block;
}
.slot-btn-play {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  border: none;
}
.slot-btn-play:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: none;
  text-shadow: none;
}
.slot-btn-demo {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(201,168,76,0.4);
}
.slot-btn-demo:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--gold-light);
  text-shadow: none;
}

/* Image placeholder */
.slot-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
  background: linear-gradient(145deg, var(--bg-card), var(--bg-card2));
}
.slot-placeholder .slot-icon { font-size: 2.5rem; opacity: 0.5; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.footer-logo img {
  width: 40px; height: 40px;
  border: none; box-shadow: none;
  border-radius: 50%;
  background: var(--bg-card2);
  padding: 3px;
  object-fit: contain;
}
.footer-logo-text {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.footer-badge {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-family: 'Cinzel', serif;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.footer-badge.age {
  background: var(--crimson);
  border-color: rgba(192,57,43,0.5);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
}

.footer-disclaimer {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.footer-disclaimer p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.6rem;
  text-align: justify;
}
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-disclaimer strong {
  color: var(--gold-dark);
  font-weight: 600;
}

.footer-rg {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.rg-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.rg-text {
  flex: 1;
  min-width: 200px;
}
.rg-text strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  color: var(--gold-dark);
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}
.rg-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin: 0; padding: 0;
  background: none; border: none;
}
.footer-links li::before { display: none; }
.footer-links a {
  font-size: 0.78rem;
  font-family: 'Cinzel', serif;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all var(--transition);
  display: block;
  white-space: nowrap;
}
.footer-links a:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'Raleway', sans-serif;
}

/* ============================================================
   HERO / PAGE INTRO STRIP
   ============================================================ */
.page-hero {
  padding: 3rem 1.5rem 2rem;
  max-width: 1220px;
  margin: 0 auto;
  animation: fadeInUp 0.7s ease both;
}
.page-hero h1 { margin-bottom: 0.6rem; }
.page-hero p.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 0;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  max-width: 1220px;
  margin: 0 auto;
  padding: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}
.stat-value {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
  display: block;
}

/* ============================================================
   TRUST BADGES ROW
   ============================================================ */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 1.5rem;
  max-width: 1220px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.05em;
}
.trust-icon { font-size: 1.8rem; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .burger-btn { display: flex; }
  .mobile-nav { display: flex; }

  .slots-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .bonus-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
  body { font-size: 15px; }

  .header-inner { padding: 0.75rem 1rem; }
  .logo-text { font-size: 1.1rem; }

  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.05rem; }

  h1 + p::first-letter,
  h2 + p::first-letter { font-size: 2.2em; }

  .content-wrap,
  .footer-inner,
  .header-inner,
  .page-hero { padding-left: 1rem; padding-right: 1rem; }

  .bonus-grid { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }

  .slot-overlay { opacity: 1; background: linear-gradient(0deg, rgba(10,10,14,0.88) 0%, transparent 60%); justify-content: flex-end; }
  .slot-overlay .slot-name { display: none; }

  table { font-size: 0.85rem; }
  thead th { padding: 0.7rem 0.8rem; font-size: 0.72rem; }
  tbody td { padding: 0.65rem 0.8rem; }

  ul li, ol li { padding-left: 2rem; font-size: 0.9rem; }

  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-links { gap: 0.3rem; }

  .stats-inner { gap: 0.5rem; padding: 1rem; }
  .stat-value { font-size: 1.3rem; }

  .trust-row { gap: 1rem; }

  .bonus-amount { font-size: 1.8rem; }

  blockquote { padding: 1rem 1rem 1rem 1.5rem; font-size: 0.95rem; }

  .ticker-bar { display: none; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   MOBILE NAV CLOSE BUTTON
   ============================================================ */
.mobile-nav-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 1200;
  padding: 0;
  line-height: 1;
}
.mobile-nav-close:hover,
.mobile-nav-close:focus {
  background: rgba(201,168,76,0.25);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: rotate(90deg) scale(1.1);
  outline: none;
}
.mobile-nav-close::before {
  display: none;
}