/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colores principales */
  --primary: hsl(140, 82%, 32%);
  --primary-foreground: hsl(140, 60%, 98%);
  --accent: hsl(42, 96%, 54%);
  --accent-foreground: hsl(42, 96%, 10%);
  --background: hsl(52, 100%, 94%);
  --foreground: hsl(210, 14%, 12%);
  --card: hsl(0, 0%, 99%);
  --card-foreground: hsl(210, 14%, 12%);
  --border: hsl(210, 12%, 85%);
  --muted: hsl(210, 10%, 94%);
  --muted-foreground: hsl(210, 14%, 42%);
  
  /* Tipografía */
  --font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Contenedor */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .header-content {
    height: 5rem;
    padding: 0 1.5rem;
  }
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f1ca30;
  text-decoration: none;
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.5rem;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
}

@media (min-width: 1024px) {
  .nav-link {
    font-size: 1rem;
  }
}

.nav-link:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: #fff4d2;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background-color: var(--background);
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
  margin-bottom: 0.5rem;
}

.mobile-nav-link:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

/* Hero Banner */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsla(140, 82%, 32%, 0.1) 0%, var(--background) 50%, hsla(42, 96%, 54%, 0.05) 100%);
}

@media (min-width: 768px) {
  .hero {
    min-height: 40vh;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, hsl(140, 82%, 32%) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.05;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  text-align: center;
  padding: 0 1rem;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding-top: 1rem;
}

.hero-feature-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  border: 2px solid hsla(140, 82%, 32%, 0.3);
  background-color: hsla(140, 82%, 32%, 0.1);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.hero-feature-badge.accent {
  border-color: hsla(42, 96%, 54%, 0.3);
  background-color: hsla(42, 96%, 54%, 0.1);
  color: var(--accent-foreground);
}

/* Secciones */
.section {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 5rem 0;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-description {
  color: var(--muted-foreground);
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

/* Casino Showcase */
.casino-showcase {
  background: linear-gradient(135deg, hsla(140, 82%, 32%, 0.05) 0%, var(--background) 50%, hsla(42, 96%, 54%, 0.05) 100%);
}

.casino-card {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.5rem;
  border: 2px solid hsla(140, 82%, 32%, 0.2);
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, var(--card) 0%, var(--card) 80%, hsla(140, 82%, 32%, 0.05) 100%);
}

@media (min-width: 768px) {
  .casino-card {
    padding: 2rem;
  }
}

.casino-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .casino-content {
    flex-direction: row;
    gap: 2rem;
  }
}

.casino-logo-container {
  flex-shrink: 0;
}

.casino-logo-link {
  display: block;
  border-radius: 0.75rem;
  transition: all 0.2s;
}

.casino-logo-link:hover {
  transform: translateY(-2px);
}

.casino-logo {
  width: 8rem;
  height: 8rem;
  border-radius: 0.75rem;
  border: 2px solid hsla(140, 82%, 32%, 0.3);
  object-fit: cover;
}

@media (min-width: 768px) {
  .casino-logo {
    width: 12rem;
    height: 12rem;
  }
}

.casino-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 0.75rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--accent);
  color: var(--accent);
}

.casino-info {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .casino-info {
    text-align: left;
  }
}

.casino-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .casino-name {
    font-size: 1.875rem;
  }
}

.bonus-badge {
  display: inline-block;
  background: linear-gradient(135deg, hsla(42, 96%, 54%, 0.2) 0%, hsla(42, 96%, 54%, 0.1) 100%);
  border: 2px solid hsla(42, 96%, 54%, 0.4);
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.bonus-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-foreground);
}

.bonus-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-foreground);
}

@media (min-width: 768px) {
  .bonus-amount {
    font-size: 1.875rem;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .feature-item {
    font-size: 1rem;
  }
}

.feature-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.casino-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .casino-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .casino-buttons {
    justify-content: flex-start;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  width: 100%;
}

@media (min-width: 640px) {
  .btn {
    width: auto;
  }
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: 2px solid var(--primary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  font-size: 1.125rem;
  padding: 1.5rem 2rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid hsla(140, 82%, 32%, 0.4);
  padding: 1rem 2rem;
}

.btn-outline:hover {
  background-color: hsla(140, 82%, 32%, 0.1);
}

/* Grids */
.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Cards */
.card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

@media (min-width: 768px) {
  .card {
    padding: 2rem;
  }
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-icon {
  width: 4rem;
  height: 4rem;
  background-color: hsla(140, 82%, 32%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .card-title {
    font-size: 1.5rem;
  }
}

.card-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .card-description {
    font-size: 1rem;
  }
}

/* Tips Cards */
.tip-card {
  padding: 1.5rem;
  border-radius: 0.375rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  transition: all 0.2s;
}

.tip-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tip-content {
  display: flex;
  gap: 1rem;
}

.tip-number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: hsla(42, 96%, 54%, 0.2);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-foreground);
}

.tip-text h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .tip-text h3 {
    font-size: 1.25rem;
  }
}

.tip-text p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .tip-text p {
    font-size: 1rem;
  }
}

/* Disclaimer */
.disclaimer {
  background: linear-gradient(135deg, hsla(42, 96%, 54%, 0.2) 0%, hsla(140, 82%, 32%, 0.1) 100%);
}

.disclaimer-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-icon {
  width: 4rem;
  height: 4rem;
  background-color: hsla(42, 96%, 54%, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.disclaimer-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--accent-foreground);
}

.disclaimer-text {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: hsla(210, 14%, 12%, 0.9);
}

@media (min-width: 768px) {
  .disclaimer-text {
    font-size: 1.125rem;
  }
}

.disclaimer-highlight {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 2px solid hsla(42, 96%, 54%, 0.3);
  margin-top: 2rem;
}

.disclaimer-highlight p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .disclaimer-highlight p {
    font-size: 1rem;
  }
}

.disclaimer-highlight p:last-child {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0;
}

/* Footer */
.footer {
  background-color: var(--card);
  border-top: 2px solid hsla(140, 82%, 32%, 0.2);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p {
  font-size: 0.875rem;
  color: #e6e6e6;
}

.age-badge-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.age-badge {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
}

.org-link-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.org-link-container h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.org-link {
  display: inline-block;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.org-link:hover {
  transform: translateY(-2px);
}

.org-logo {
  height: 5rem;
  width: 5rem;
  object-fit: contain;
}

.org-link-container span {
  font-size: 0.75rem;
  color: #cccccc;
  margin-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-links {
    justify-content: flex-start;
    gap: 1.5rem;
  }
}

.footer-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--foreground);
  text-decoration: underline;
}

.copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Legal Pages */
.legal-page {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .legal-page {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .legal-page {
    padding: 5rem 0;
  }
}

.legal-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .legal-content {
    padding: 3rem;
  }
}

.legal-content h1 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .legal-content h1 {
    font-size: 2.25rem;
  }
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.legal-content p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.legal-content ul {
  list-style: disc;
  list-style-position: inside;
  color: var(--muted-foreground);
  margin-left: 1rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content .update-date {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--muted-foreground);
  margin-top: 2rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.gap-2 {
  gap: 0.5rem;
}

/* Icons (SVG) */
svg {
  display: inline-block;
  vertical-align: middle;
}

.footer {
  background: #0f1320; /* тёмный фон */
  color: #e8ebf2;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 40px 0 24px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.footer .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}


.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}


.footer-section h3 {
  font-size: 18px;
  margin: 0 0 12px;
  color: #ffffff;
}

.age-badge-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.age-badge {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #1b2033;
  padding: 6px;
  object-fit: contain;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset;
}

.org-link-container {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.org-link-container h3 {
  font-size: 14px;
  font-weight: 600;
  color: #cfd6e6;
  margin: 0 0 12px;
  min-height: 2.6em;
  display: grid;
  place-items: center;
  text-wrap: balance;
}

.org-link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 76px;
  margin-bottom: 8px;
  background: #fbfbfb;
  border-radius: 12px;
  border: 1px dashed rgba(255,255,255,.08);
}

.org-logo {
  max-width: 140px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(30%) opacity(.9);
  transition: filter .2s ease, transform .2s ease;
}

.org-name {
  display: inline-block;
  font-size: 13px;
  color: #aab3c9;
}

.org-link-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.14);
}
.org-link-container:hover .org-logo {
  filter: none;
  transform: scale(1.02);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  gap: 12px;
  align-items: center;
}

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

.footer-link {
  color: #c5cce0;
  text-decoration: none;
  font-size: 14px;
}
.footer-link:hover { color: #fff; text-decoration: underline; }

copyright,
.copyright {
  font-size: 13px;
  color: #d3d3d3;
}

@media (max-width: 520px) {
  .age-badge { width: 48px; height: 48px; }
  .org-link { height: 68px; }
  .org-logo { max-width: 120px; max-height: 40px; }
}


.footer-grid{
  display:grid;
  gap:24px;

  grid-template-columns: minmax(280px,1fr) repeat(4,1fr);
  align-items: stretch;
}


@media (max-width: 960px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-section, .org-link-container{ text-align:center; }
  .age-badge-container{ justify-content:center; }
}


.org-link-container{
  display:grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  justify-items: center;
  padding:16px;
  border-radius:16px;
  background: rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.08);
}


.org-link-container h3{
  min-height: 42px;
  display:grid;
  place-items:center;
  margin:0 0 12px;
  text-align:center;
}


.org-link{
  width:100%;
  max-width: 360px;
  height: 96px;
  border-radius:12px;
  border:1px dashed rgba(255,255,255,.10);
  background: #fffceb;
  display:grid;
  place-items:center;
  margin-bottom:8px;
}

.org-logo{
  max-height: 54px;
  max-width: 180px;
  width:auto;
  height:auto;
  object-fit:contain;
}

.org-name{ font-size:13px; color:#aab3c9; text-align:center; }

.footer-section h3{ margin:0 0 12px; }
.age-badge-container{ display:flex; align-items:center; gap:12px; }
@media (max-width: 960px){
  .footer-section p{ margin-left:auto; margin-right:auto; }
}

.footer-bottom{
  margin-top:28px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.08);
  display:grid;
  gap:12px;
  justify-items:center;
  text-align:center;
}

.footer-links{
  display:flex;
  gap:14px 24px;
  flex-wrap:wrap;
  justify-content:center;
}


@media (max-width:520px){
  .footer-links{ gap:10px 16px; }
}


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

.footer-links{
  display: flex !important;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: center !important;
  align-items: center;
  margin: 0 auto;
}

.copyright{
  text-align: center !important;
  width: 100%;
}

@media (max-width: 520px){
  .footer-links{ gap: 10px 16px; }
}


@media (max-width: 520px){
  .footer-grid{ gap: 14px; }

  .org-link-container{
    padding: 12px;
    border-radius: 12px;
  }
  .org-link-container h3{
    font-size: 13px;
    min-height: 36px;
    margin-bottom: 8px;
  }


  .org-link{
    height: 45px;
    border-radius: 10px;
    margin-bottom: 6px;
  }


  .org-logo{
    max-height: 30px;
    max-width: 120px;
  }

  .org-name{ font-size: 12px; }


  .age-badge{ width: 44px; height: 44px; }
}


.casino-logo-container{
  display: grid;
  gap: 10px;
  justify-items: center;
}


.casino-logo-link{
  display: grid;
  place-items: center;
  width: clamp(140px, 18vw, 220px);
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 1px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}


.casino-logo{
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto;
  padding-right: 5px;
  padding-left: 5px;
}

/* лёгкий hover для «живости» */
.casino-logo-link:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  border-color: rgba(0,0,0,.12);
}

/* Звёзды рейтинга */
.casino-stars{
  display: flex;
  gap: 8px;
  align-items: center;
}

.casino-stars .star{
  fill: #ffb400;                    /* золотые звёзды */
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.1));
}

/* Мобилка: поменьше плитка и звёзды */
@media (max-width: 520px){
  .casino-logo-link{
    width: 128px;
    padding: 10px;
    border-radius: 12px;
  }
  .casino-stars{ gap: 6px; }
  .casino-stars .star{ width: 18px; height: 18px; }
}

