@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #09090b;
  --bg-card: #131316;
  --bg-hover: #1a1a1f;
  --bg-elevated: #1e1e24;
  --text: #fafafa;
  --text-secondary: #a1a1aa;
  --text-dim: #52525b;
  --border: #27272a;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --green: #22c55e;
  --gold: #eab308;
  --red: #ef4444;
  --radius: 8px;
  --radius-lg: 12px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.logo {
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
}

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--text);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.lang-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.active {
  background: var(--gold, #d4a853);
  color: #0a0a0a;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 120px 0 64px;
}

body[data-traffic-status='on'] .hero {
  padding: 140px 0 96px;
  background: url('/images/coverImage.webp') center / cover no-repeat;
}

body[data-traffic-status='on'] .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 9, 11, 0.82) 0%, rgba(9, 9, 11, 0.5) 45%, rgba(9, 9, 11, 0.15) 100%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.45) 0%, rgba(9, 9, 11, 0) 35%, var(--bg) 100%);
}

.hero-inner {
  position: relative;
  max-width: 600px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.7;
}

/* ========== SECTIONS ========== */
.main-content {
  padding-bottom: 80px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.section-header h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.filter-buttons {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  padding: 3px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.filter-btn {
  padding: 6px 16px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}

.filter-btn.active {
  background: var(--bg-elevated);
  color: var(--text);
}

.filter-btn:hover:not(.active) {
  color: var(--text);
}

/* ========== CASINO CARDS ========== */
.casinos-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 10px;
}

.casino-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0;
  min-height: 205px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  cursor: pointer;
}

.casino-card:hover {
  border-color: #3f3f46;
}

.casino-card.featured {
  border-color: rgba(234, 179, 8, 0.3);
}

body[data-traffic-status='on'] .casino-card {
  background: linear-gradient(100deg, #11374b 0%, #1d6288 38%, #2e94c4 72%, #55c0e6 100%);
  border-color: rgba(103, 217, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.14), 0 12px 44px rgba(24, 130, 190, 0.32),
    0 0 60px rgba(56, 189, 248, 0.16);
}

body[data-traffic-status='on'] .casino-card::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 244px;
  width: 54px;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  transform: skewX(-14deg);
  pointer-events: none;
}

body[data-traffic-status='on'] .casino-card:hover {
  border-color: rgba(165, 226, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.22), 0 16px 52px rgba(30, 140, 205, 0.42),
    0 0 70px rgba(56, 189, 248, 0.24);
  transform: translateY(-1px);
}

body[data-traffic-status='on'] .casino-card.featured {
  border-color: rgba(125, 211, 252, 0.55);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 26px;
  z-index: 2;
  background: linear-gradient(100deg, #f9e79b 0%, #f3d76d 55%, #8ec9ec 100%);
  color: #14232e;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.01em;
}

.casino-logo-section {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 22px;
  background: var(--bg-elevated);
  border-radius: 19px 0 0 19px;
}

body[data-traffic-status='on'] .casino-logo-section {
  padding: 20px 46px 20px 22px;
  background: linear-gradient(150deg, rgba(226, 240, 130, 0.85), rgba(190, 214, 80, 0.4) 45%, rgba(132, 204, 160, 0.35));
  clip-path: polygon(0 0, 100% 0, calc(100% - 30px) 100%, 0 100%);
  filter: drop-shadow(0 0 8px rgba(212, 235, 110, 0.3));
}

body[data-traffic-status='on'] .casino-logo-section::before {
  content: '';
  position: absolute;
  inset: 1.5px;
  background: linear-gradient(120deg, #0d222e 0%, #123141 100%);
  border-radius: 18px 0 0 18px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 29px) 100%, 0 100%);
}

.casino-license-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: rgba(190, 220, 235, 0.7);
  background: rgba(255, 255, 255, 0.06);
  padding: 3px 8px;
  border-radius: 4px;
  max-width: 200px;
  text-align: center;
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.casino-license-badge-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.casino-logo {
  position: relative;
  width: 160px;
  height: 104px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.casino-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  padding: 24px 0;
}

.casino-bonus-box {
  background: rgba(9, 30, 43, 0.92);
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 14px;
  padding: 12px 20px;
  max-width: 100%;
}

.bonus-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7fd0ef;
}

.bonus-amount {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
}

.bonus-wagering {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

.casino-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(240, 250, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #f4fcff;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: normal;
  line-height: 1.4;
}

.casino-rating-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border-left: 1px solid rgba(230, 247, 255, 0.3);
  padding-left: 26px;
  align-self: center;
}

.rating-score {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.rating-stars {
  display: flex;
  gap: 3px;
  color: #f6c453;
}

.rating-stars .star {
  display: inline-flex;
}

.rating-stars .star-dim {
  color: rgba(246, 196, 83, 0.3);
}

.casino-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  border-left: 1px solid rgba(230, 247, 255, 0.3);
  padding: 0 26px;
}

.btn-access {
  background: linear-gradient(135deg, #ffe08a 0%, #f5b93d 100%);
  color: #14232e;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 240, 190, 0.7);
  box-shadow: 0 0 26px rgba(245, 185, 61, 0.45), 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn-access:hover {
  background: linear-gradient(135deg, #ffe9a8 0%, #f8c65c 100%);
  box-shadow: 0 0 34px rgba(248, 198, 92, 0.6), 0 4px 14px rgba(0, 0, 0, 0.25);
}

.card-details-link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 11px;
  color: var(--text-secondary);
  text-decoration: underline dotted;
  cursor: pointer;
  transition: color 0.15s;
}

.card-details-link:hover {
  color: var(--text);
}

body[data-traffic-status='on'] .card-details-link {
  color: rgba(9, 36, 52, 0.68);
}

body[data-traffic-status='on'] .card-details-link:hover {
  color: #06263a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  color: var(--text);
  border-color: #3f3f46;
}

.btn-large {
  padding: 12px 24px;
  font-size: 14px;
  width: 100%;
  margin-top: 16px;
}

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 500px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
  font-size: 16px;
}

.modal-close:hover {
  color: var(--text);
  border-color: #3f3f46;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-right: 40px;
}

.modal-logo {
  width: 240px;
  height: 160px;
  object-fit: contain;
  border-radius: 8px;
}

.modal-header h2 {
  font-size: 18px;
  font-weight: 600;
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-size: 13px;
  color: var(--text-secondary);
}

.modal-license {
  font-size: 11px;
  background: var(--bg-elevated);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--text-dim);
}

.modal-license-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.modal-license-link:hover {
  color: var(--text);
  background: var(--border);
}

.modal-description {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.modal-bonus {
  background: var(--bg-elevated);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
}

.modal-bonus h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.bonus-highlight {
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
}

.modal-code {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-secondary);
}

.modal-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.modal-detail {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 12px;
}

.modal-detail h4 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.modal-detail p {
  font-weight: 600;
  font-size: 13px;
}

.modal-section {
  margin-bottom: 16px;
}

.modal-section h4 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.tag {
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ========== INFO SECTIONS ========== */
.info-sections {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.15s;
}

.info-card:hover {
  border-color: #3f3f46;
}

.info-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 14px;
  color: var(--accent);
}

.info-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-card p {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.7;
}

/* ========== FAQ ========== */
.faq-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  gap: 16px;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--text-dim);
  font-size: 14px;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 20px 16px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-brand {
  max-width: 480px;
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer-licenses {
  min-width: 260px;
}

.footer-licenses-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin: 0 0 10px;
}

.footer-licenses-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-licenses-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-dim);
}

.footer-licenses-casino {
  color: var(--text-secondary);
  font-weight: 500;
}

.footer-licenses-list a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-licenses-list a:hover {
  color: var(--text);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-dim);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--text);
}

/* ========== AGE & COOKIE CONSENT (combined banner) ========== */
.consent-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2000;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.consent-content {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.consent-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--red);
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.consent-text {
  flex: 1;
  min-width: 0;
}

.consent-text h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.consent-text p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.consent-text a {
  color: var(--accent);
  text-decoration: underline;
}

.consent-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  min-height: 100vh;
  padding: 48px 0 80px;
}

.legal-back {
  margin-bottom: 32px;
}

.legal-page h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.legal-updated {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-section p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-section li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 4px;
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
}

/* ========== AFFILIATE DISCLOSURE ========== */
.affiliate-disclosure {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 24px;
}

.affiliate-disclosure p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.affiliate-disclosure strong {
  color: var(--text);
}

.affiliate-disclosure a {
  color: var(--accent);
  text-decoration: underline;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .casino-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 0 20px;
  }

  body[data-traffic-status='on'] .casino-card::before {
    display: none;
  }

  .casino-logo-section {
    align-self: auto;
    width: 100%;
    border-radius: 19px 19px 0 0;
    padding: 20px;
  }

  body[data-traffic-status='on'] .casino-logo-section {
    clip-path: none;
    padding: 20px;
  }

  body[data-traffic-status='on'] .casino-logo-section::before {
    clip-path: none;
    border-radius: 18px 18px 0 0;
  }

  .casino-center {
    padding: 0 20px;
  }

  .casino-features {
    max-width: 100%;
  }

  .casino-logo {
    width: 100%;
    max-width: 240px;
    height: 120px;
  }

  .casino-rating-block,
  .casino-actions {
    border-left: none;
    padding: 0 20px;
  }

  .casino-actions {
    width: 100%;
  }

  .casino-actions .btn-access {
    width: 100%;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: 20px;
    margin: 10px;
  }

  .modal-details-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-licenses {
    width: 100%;
  }

  .footer-licenses-list li {
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 28px;
  }

  .nav-links {
    gap: 20px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .modal-header {
    flex-direction: column;
    text-align: center;
  }

  .consent-content {
    flex-direction: column;
    text-align: center;
  }

  .consent-actions {
    width: 100%;
    flex-direction: column;
  }

  .consent-actions .btn {
    width: 100%;
  }

  .legal-page h1 {
    font-size: 24px;
  }
}
