/* ============================================================
   style.css — brozburger.it | Nuovi Casino Online 2026
   Design: Dark gambling aesthetic + Italian flag accents
   ============================================================ */

/* ----------------------------------------
   1. CSS VARIABLES
   ---------------------------------------- */
:root {
  /* Colors */
  --c-bg:           #09090f;
  --c-bg-card:      #111320;
  --c-bg-card-alt:  #0e1019;
  --c-bg-section:   #0c0e1a;
  --c-bg-listing:   #070910;

  --c-gold:         #c8a534;
  --c-gold-light:   #e6c558;
  --c-gold-dark:    #9a7a1f;
  --c-green:        #009246;
  --c-green-light:  #00b356;
  --c-red:          #ce2b37;
  --c-red-light:    #e83545;
  --c-white:        #ffffff;

  --c-text:         #dde1f0;
  --c-text-soft:    #9ca3c0;
  --c-text-muted:   #5c6180;
  --c-border:       #1e2240;
  --c-border-glow:  rgba(200, 165, 52, 0.25);

  /* Typography */
  --font-display:   'Bebas Neue', cursive;
  --font-body:      'Nunito', sans-serif;

  /* Spacing */
  --container-w:    1180px;
  --header-h:       68px;
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      28px;

  /* Shadows */
  --shadow-card:    0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow:    0 0 24px rgba(200, 165, 52, 0.12);
  --shadow-glow-g:  0 0 20px rgba(0, 146, 70, 0.2);
  --shadow-btn:     0 4px 20px rgba(0, 146, 70, 0.45);

  /* Transitions */
  --tr-fast:        0.15s ease;
  --tr-base:        0.25s ease;
  --tr-slow:        0.4s ease;
}

/* ----------------------------------------
   2. RESET & BASE
   ---------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text);
  background-color: var(--c-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--c-gold);
  text-decoration: none;
  transition: color var(--tr-fast);
}

a:hover {
  color: var(--c-gold-light);
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ----------------------------------------
   3. LAYOUT: CONTAINER
   ---------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ----------------------------------------
   4. HEADER
   ---------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(9, 9, 15, 0.96);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

/* Navigation — desktop only */
.main-nav {
  display: none;
  flex: 1;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: block;
  padding: 6px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text-soft);
  border-radius: var(--radius-sm);
  transition: color var(--tr-fast), background var(--tr-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--c-gold);
  background: rgba(200, 165, 52, 0.08);
}

/* Header CTA button */
.btn-header {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-bg);
  background: linear-gradient(135deg, var(--c-gold-light) 0%, var(--c-gold) 60%, var(--c-gold-dark) 100%);
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: transform var(--tr-fast), box-shadow var(--tr-fast), filter var(--tr-fast);
  box-shadow: 0 3px 16px rgba(200, 165, 52, 0.4);
}

.btn-header:hover {
  color: var(--c-bg);
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(200, 165, 52, 0.5);
}

.btn-icon {
  flex-shrink: 0;
}

/* ----------------------------------------
   5. HERO SECTION
   ---------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 48px 40px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 146, 70, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(206, 43, 55, 0.05) 0%, transparent 70%),
    linear-gradient(180deg, #0b0d1c 0%, var(--c-bg) 100%);
}

/* Decorative card suits */
.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.deco-suit,
.deco-chip {
  position: absolute;
  font-size: 5rem;
  font-weight: 900;
  opacity: 0.035;
  animation: floatDeco 12s ease-in-out infinite;
  user-select: none;
}

.deco-1 { top: 8%;  left: 4%;  color: var(--c-red);   animation-delay: 0s;   font-size: 6rem; }
.deco-2 { top: 15%; right: 6%; color: var(--c-red);   animation-delay: 2s;   font-size: 4rem; }
.deco-3 { bottom: 15%; left: 8%; color: var(--c-gold); animation-delay: 4s; font-size: 5rem; }
.deco-4 { bottom: 10%; right: 10%; color: var(--c-gold); animation-delay: 1s; font-size: 7rem; }
.deco-5 { top: 30%; left: 1%;  color: var(--c-green); animation-delay: 3s; font-size: 3.5rem; }
.deco-6 { top: 50%; right: 2%; color: var(--c-green); animation-delay: 5s; font-size: 2.5rem; }

@keyframes floatDeco {
  0%, 100% { transform: translateY(0) rotate(0deg);   }
  50%       { transform: translateY(-16px) rotate(5deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  margin-bottom: 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold);
  background: rgba(200, 165, 52, 0.1);
  border: 1px solid rgba(200, 165, 52, 0.2);
  border-radius: 999px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 6px var(--c-green);
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1);    }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

/* Hero H1 */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--c-white);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #e6c558 45%, #c8a534 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-intro {
  font-size: 1.05rem;
  color: var(--c-text-soft);
  margin-bottom: 28px;
  max-width: 680px;
  line-height: 1.75;
}

/* Author block */
.author-block {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  width: fit-content;
  max-width: 100%;
}

.author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-gold);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.author-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-white);
}

.author-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 9px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--c-green);
  border-radius: 999px;
}

.author-date {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

/* ----------------------------------------
   6. LISTING SECTION
   ---------------------------------------- */
.listing-section {
  background: var(--c-bg-listing);
  padding-block: 56px 64px;
  position: relative;
}

.listing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-green) 0%, var(--c-gold) 50%, var(--c-red) 100%);
}

.listing-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.03em;
  color: var(--c-white);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.listing-title-icon {
  font-size: 1.8rem;
}

/* Casino Cards List */
.casino-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Casino Card */
.casino-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(200, 165, 52, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.casino-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border-color: var(--c-border-glow);
}

/* Featured (first) card */
.card-featured {
  border-color: rgba(200, 165, 52, 0.3);
  background: linear-gradient(135deg, #141829 0%, #111320 100%);
}

.card-featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold-dark) 0%, var(--c-gold-light) 50%, var(--c-gold-dark) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Card header row */
.card-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Rank badge */
.card-rank {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--c-gold-dark), var(--c-gold));
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.rank-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--c-bg);
  line-height: 1;
  letter-spacing: 0.02em;
}

.rank-label {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(9, 9, 15, 0.7);
  line-height: 1;
}

/* Brand block */
.card-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: 48px;
  max-width: 140px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(1) saturate(1);
  transition: filter var(--tr-base);
}

.casino-card:hover .brand-logo {
  filter: brightness(1.05);
}

.brand-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.2;
}

/* Star rating */
.star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
}

.star {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1;
}

.star.filled {
  color: var(--c-gold);
}

.star.half {
  color: var(--c-gold);
  opacity: 0.5;
}

.rating-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-left: 4px;
}

/* Card body row */
.card-body-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* Bonus block */
.card-bonus {
  flex: 1;
  min-width: 220px;
  background: rgba(200, 165, 52, 0.06);
  border: 1px solid rgba(200, 165, 52, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bonus-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.bonus-text {
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.5;
}

.bonus-text strong {
  color: var(--c-gold-light);
  font-weight: 800;
}

.bonus-terms {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  line-height: 1.4;
}

/* Features list */
.features-list {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.3;
}

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* Card CTA */
.card-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--c-white);
  background: linear-gradient(135deg, var(--c-green-light) 0%, var(--c-green) 100%);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform var(--tr-fast), box-shadow var(--tr-fast), filter var(--tr-fast);
  box-shadow: var(--shadow-btn);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-play:hover {
  color: var(--c-white);
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 146, 70, 0.55);
}

.btn-play:active {
  transform: translateY(0);
}

.min-dep-note {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

/* ----------------------------------------
   7. MAIN CONTENT SECTION
   ---------------------------------------- */
.content-section {
  padding-block: 64px 72px;
  background: var(--c-bg-section);
  position: relative;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border) 30%, var(--c-border) 70%, transparent);
}

.content-wrapper {
  max-width: 860px;
}

/* Content typography */
.content-wrapper h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: 0.03em;
  color: var(--c-white);
  margin-top: 52px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, var(--c-gold) 0%, var(--c-green) 60%, transparent 100%) 1;
  line-height: 1.2;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-gold);
  margin-top: 32px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.content-wrapper p {
  font-size: 0.97rem;
  color: var(--c-text-soft);
  margin-bottom: 14px;
  line-height: 1.8;
}

.content-wrapper p:last-child {
  margin-bottom: 0;
}

.content-wrapper a {
  color: var(--c-gold);
  text-decoration: underline;
  text-decoration-color: rgba(200, 165, 52, 0.3);
  text-underline-offset: 3px;
  word-break: break-all;
}

.content-wrapper a:hover {
  color: var(--c-gold-light);
  text-decoration-color: var(--c-gold-light);
}

.content-wrapper strong {
  color: var(--c-text);
  font-weight: 700;
}

/* Ordered and unordered lists in content */
.content-wrapper ol,
.content-wrapper ul {
  padding-left: 0;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content-wrapper ol {
  counter-reset: ol-counter;
  list-style: none;
}

.content-wrapper ol li {
  counter-increment: ol-counter;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--c-text-soft);
  line-height: 1.7;
}

.content-wrapper ol li::before {
  content: counter(ol-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--c-bg);
  background: var(--c-gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.content-wrapper ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--c-text-soft);
  line-height: 1.7;
  padding-left: 0;
}

.content-wrapper ul li::before {
  content: '♦';
  color: var(--c-gold);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.7rem;
  padding-top: 4px;
}

/* ----------------------------------------
   8. TABLES
   ---------------------------------------- */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
}

.content-wrapper table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.content-wrapper table td,
.content-wrapper table th {
  padding: 12px 16px;
  text-align: left;
  color: var(--c-text-soft);
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
  line-height: 1.5;
}

.content-wrapper table td p {
  font-size: inherit;
  color: inherit;
  margin-bottom: 0;
  line-height: 1.5;
}

.content-wrapper table tr:first-child td {
  background: rgba(200, 165, 52, 0.07);
  color: var(--c-gold);
  font-weight: 700;
  border-bottom: 2px solid rgba(200, 165, 52, 0.2);
}

.content-wrapper table tr:not(:first-child):nth-child(even) td {
  background: rgba(255, 255, 255, 0.015);
}

.content-wrapper table tr:not(:first-child):hover td {
  background: rgba(200, 165, 52, 0.04);
}

.content-wrapper table td strong {
  color: var(--c-gold-light);
  font-weight: 700;
}

/* ----------------------------------------
   9. FAQ SECTION (accordion)
   ---------------------------------------- */
#faq {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.content-wrapper h3.faq-question {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 16px 52px 16px 20px;
  margin-top: 12px;
  font-size: 0.97rem;
  font-weight: 700;
  transition: background var(--tr-fast), border-color var(--tr-fast), color var(--tr-fast);
  position: relative;
}

.content-wrapper h3.faq-question::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--c-gold);
  transition: transform var(--tr-base), color var(--tr-fast);
  line-height: 1;
}

.content-wrapper h3.faq-question:hover,
.content-wrapper h3.faq-question.faq-open {
  background: rgba(200, 165, 52, 0.07);
  border-color: rgba(200, 165, 52, 0.25);
  color: var(--c-gold);
}

.content-wrapper h3.faq-question.faq-open::after {
  content: '−';
  transform: translateY(-50%) rotate(0deg);
}

.content-wrapper p.faq-answer {
  display: none;
  border: 1px solid rgba(200, 165, 52, 0.12);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 16px 20px 18px;
  margin-bottom: 0;
  background: rgba(200, 165, 52, 0.03);
  font-size: 0.92rem;
  color: var(--c-text-soft);
}

.content-wrapper p.faq-answer.faq-answer-open {
  display: block;
}

/* ----------------------------------------
   10. FOOTER
   ---------------------------------------- */
.site-footer {
  background: #060608;
  border-top: 1px solid var(--c-border);
  padding-block: 48px 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity var(--tr-fast);
}

.footer-logo:hover img {
  opacity: 1;
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: center;
}

.footer-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: color var(--tr-fast);
}

.footer-link:hover {
  color: var(--c-gold);
}

.footer-disclaimer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
}

.responsible-gaming {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(206, 43, 55, 0.06);
  border: 1px solid rgba(206, 43, 55, 0.15);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--c-text-soft);
  line-height: 1.6;
}

.rg-icon {
  font-size: 1.1rem;
  color: var(--c-red-light);
  flex-shrink: 0;
  margin-top: 1px;
}

.responsible-gaming strong {
  color: var(--c-red-light);
}

.rg-link {
  color: var(--c-red-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rg-link:hover {
  color: #ff4d5c;
}

.footer-legal {
  font-size: 0.76rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 0 !important;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  opacity: 0.6;
  margin-bottom: 0 !important;
}

/* ----------------------------------------
   11. ANIMATIONS & FADE-IN
   ---------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-inner,
.listing-title {
  animation: fadeInUp 0.6s ease both;
}

.casino-card {
  animation: fadeInUp 0.5s ease both;
}

.casino-card:nth-child(1) { animation-delay: 0.05s; }
.casino-card:nth-child(2) { animation-delay: 0.10s; }
.casino-card:nth-child(3) { animation-delay: 0.15s; }
.casino-card:nth-child(4) { animation-delay: 0.20s; }
.casino-card:nth-child(5) { animation-delay: 0.25s; }
.casino-card:nth-child(6) { animation-delay: 0.30s; }
.casino-card:nth-child(7) { animation-delay: 0.35s; }

/* ----------------------------------------
   12. RESPONSIVE — DESKTOP NAV
   ---------------------------------------- */
@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

/* ----------------------------------------
   13. RESPONSIVE — TABLET (≤900px)
   ---------------------------------------- */
@media (max-width: 900px) {
  .card-body-row {
    flex-direction: column;
    gap: 14px;
  }

  .card-bonus,
  .features-list {
    min-width: 0;
  }
}

/* ----------------------------------------
   14. RESPONSIVE — MOBILE (≤600px)
   ---------------------------------------- */
@media (max-width: 600px) {
  :root {
    --header-h: 60px;
  }

  .logo-img {
    height: 34px;
  }

  .btn-header {
    padding: 9px 12px;
    font-size: 0.78rem;
    gap: 5px;
  }

  /* Hero — compact on mobile */
  .hero {
    padding-block: 32px 28px;
  }

  .hero-intro {
    font-size: 0.95rem;
  }

  .author-block {
    padding: 12px 14px;
    gap: 10px;
  }

  .author-img {
    width: 42px;
    height: 42px;
  }

  .author-name {
    font-size: 0.85rem;
  }

  /* Listing */
  .listing-section {
    padding-block: 36px 44px;
  }

  .casino-card {
    padding: 18px 16px;
    gap: 14px;
    border-radius: var(--radius-md);
  }

  .card-header-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .card-rank {
    min-width: 46px;
    height: 46px;
  }

  .rank-num {
    font-size: 1rem;
  }

  .brand-logo {
    height: 38px;
    max-width: 110px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .card-brand {
    gap: 10px;
  }

  .card-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .btn-play {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  /* Content */
  .content-section {
    padding-block: 44px 52px;
  }

  .content-wrapper h2 {
    font-size: 1.35rem;
  }

  .content-wrapper h3:not(.faq-question) {
    font-size: 1rem;
  }

  .content-wrapper h3.faq-question {
    font-size: 0.9rem;
    padding: 14px 48px 14px 16px;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
  }

  .footer-nav-list {
    gap: 6px 14px;
  }
}

/* ----------------------------------------
   15. PRINT (basic)
   ---------------------------------------- */
@media print {
  .site-header,
  .hero-decorations,
  .btn-header,
  .btn-play,
  .site-footer {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}