  :root {
      --bg-main: #05060b;
      --bg-alt: #0b0f1a;
      --bg-elevated: #111729;
      --bg-elevated-soft: #151b2e;
      --accent: #31d17c;
      --accent-soft: rgba(49, 209, 124, 0.16);
      --accent-2: #22c1c3;
      --text-main: #f5f7ff;
      --text-muted: #a8b1d1;
      --border-subtle: #242b3f;
      --danger: #ff4f6a;
      --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.7);
      --radius-lg: 16px;
      --radius-xl: 22px;
      --radius-pill: 999px;
      --header-height: 72px;
  }

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

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #151b2e 0, #05060b 45%, #020309 100%);
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
  }

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

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

  ul {
      list-style: none;
  }

  button {
      font-family: inherit;
  }

  section {
      padding: 80px 0;
      scroll-margin-top: calc(var(--header-height) + 16px);
  }

  .container {
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 1.5rem;
  }

  .section-title {
      font-size: 1.9rem;
      margin-bottom: 0.75rem;
      letter-spacing: 0.03em;
  }

  .section-kicker {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--accent-2);
      margin-bottom: 0.4rem;
  }

  .section-intro {
      color: var(--text-muted);
      max-width: 640px;
      font-size: 0.95rem;
      margin-bottom: 2.5rem;
  }


  .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: linear-gradient(to bottom, rgba(5, 6, 11, 0.98), rgba(5, 6, 11, 0.92), rgba(5, 6, 11, 0.9));
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .header-inner {
      height: var(--header-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.25rem;
  }

  .logo {
      font-size: 1.4rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 0.45rem;
  }

  .logo span {
      color: var(--accent);
  }

  .badge-18 {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--danger);
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 79, 106, 0.5);
      padding: 0.15rem 0.55rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      background: rgba(255, 79, 106, 0.08);
      margin-left: 0.5rem;
      white-space: nowrap;
  }

  .main-nav {
      margin-left: auto;
      position: relative;
  }

  .nav-links {
      display: flex;
      align-items: center;
      gap: 1.75rem;
      font-size: 0.9rem;
  }

  .nav-links a {
      color: var(--text-muted);
      position: relative;
      padding-bottom: 0.15rem;
      white-space: nowrap;
  }

  .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
      transition: width 0.2s ease-out;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
      color: var(--text-main);
  }

  .nav-links a:hover::after,
  .nav-links a:focus-visible::after {
      width: 100%;
  }

  .hamburger {
      display: none;
      background: none;
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: var(--text-main);
      border-radius: 999px;
      width: 38px;
      height: 38px;
      align-items: center;
      justify-content: center;
      cursor: pointer;
  }

  .hamburger i {
      font-size: 1rem;
  }

  .hamburger:focus-visible {
      outline: 2px solid var(--accent-2);
      outline-offset: 2px;
  }


  .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      border-radius: var(--radius-pill);
      padding: 0.8rem 1.6rem;
      font-size: 0.95rem;
      font-weight: 600;
      border: 1px solid transparent;
      cursor: pointer;
      transition: background 0.18s ease-out, transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.18s;
      text-decoration: none;
      white-space: nowrap;
  }

  .btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #020309;
      box-shadow: 0 10px 30px rgba(49, 209, 124, 0.35);
  }

  .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 13px 36px rgba(49, 209, 124, 0.5);
  }

  .btn-secondary {
      background: rgba(26, 33, 54, 0.9);
      color: var(--text-main);
      border-color: rgba(151, 163, 205, 0.5);
  }

  .btn-secondary:hover {
      background: rgba(36, 45, 74, 1);
      border-color: var(--accent-2);
      transform: translateY(-1px);
  }

  .btn-ghost {
      background: transparent;
      border-color: rgba(151, 163, 205, 0.35);
      color: var(--text-muted);
  }

  .btn-ghost:hover {
      border-color: var(--accent);
      color: var(--text-main);
      background: rgba(49, 209, 124, 0.08);
  }

  .btn-full {
      width: 100%;
      justify-content: center;
  }

  .btn:focus-visible {
      outline: 2px solid var(--accent-2);
      outline-offset: 2px;
  }


  .hero {
      padding-top: calc(60px + var(--header-height));
      padding-bottom: 90px;
      background:
          radial-gradient(circle at 10% 0, rgba(49, 209, 124, 0.08) 0, transparent 50%),
          radial-gradient(circle at 90% 0, rgba(34, 193, 195, 0.09) 0, transparent 55%),
          linear-gradient(to bottom, rgba(5, 6, 11, 0.96), rgba(5, 6, 11, 0.98));
  }

  .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
      gap: 3.5rem;
      align-items: center;
  }

  .hero-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.17em;
      color: var(--accent-2);
      margin-bottom: 0.6rem;
  }

  .hero-title {
      font-size: clamp(2.1rem, 3.1vw, 2.9rem);
      line-height: 1.16;
      margin-bottom: 0.9rem;
  }

  .hero-highlight {
      background: radial-gradient(circle at 0 50%, rgba(49, 209, 124, 0.45), transparent 55%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
  }

  .hero-subtitle {
      color: var(--text-muted);
      font-size: 0.98rem;
      max-width: 560px;
      margin-bottom: 1.7rem;
  }

  .hero-benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 0.9rem 1.5rem;
      margin-bottom: 2rem;
  }

  .hero-benefit {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.9rem;
      color: var(--text-muted);
  }

  .hero-benefit-icon {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--accent-soft);
      color: var(--accent);
      flex-shrink: 0;
      margin-top: 0.05rem;
  }

  .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      align-items: center;
      margin-bottom: 1.6rem;
  }

  .hero-disclaimer {
      font-size: 0.8rem;
      color: var(--text-muted);
      max-width: 520px;
  }

  .hero-disclaimer i {
      color: var(--danger);
      margin-right: 0.3rem;
  }

  .hero-aside {
      border-radius: var(--radius-xl);
      background: radial-gradient(circle at 0 0, rgba(49, 209, 124, 0.18), transparent 60%), var(--bg-elevated);
      border: 1px solid rgba(151, 163, 205, 0.15);
      box-shadow: var(--shadow-soft);
      padding: 1.7rem 1.7rem 1.6rem;
      position: relative;
      overflow: hidden;
  }

  .hero-aside::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 120% -20%, rgba(34, 193, 195, 0.45), transparent 45%);
      opacity: 0.7;
      mix-blend-mode: screen;
      pointer-events: none;
  }

  .hero-pill {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.35rem 0.85rem;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(151, 163, 205, 0.4);
      background: rgba(5, 6, 11, 0.45);
      margin-bottom: 0.9rem;
      position: relative;
      z-index: 1;
  }

  .hero-pill i {
      color: var(--accent);
  }

  .hero-card-title {
      font-size: 1rem;
      margin-bottom: 0.4rem;
      position: relative;
      z-index: 1;
  }

  .hero-card-sub {
      font-size: 0.83rem;
      color: var(--text-muted);
      margin-bottom: 1rem;
      position: relative;
      z-index: 1;
  }

  .hero-mini-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
      position: relative;
      z-index: 1;
      margin-bottom: 1rem;
  }

  .hero-chip {
      padding: 0.6rem 0.65rem;
      border-radius: 12px;
      border: 1px solid rgba(151, 163, 205, 0.3);
      background: rgba(9, 13, 25, 0.9);
      font-size: 0.78rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 0.45rem;
  }

  .hero-chip i {
      color: var(--accent);
      font-size: 0.85rem;
  }

  .hero-note {
      font-size: 0.78rem;
      color: var(--text-muted);
      position: relative;
      z-index: 1;
      margin-top: 0.4rem;
  }

  .hero-note strong {
      color: var(--accent);
      font-weight: 600;
  }


  .card {
      background: var(--bg-elevated);
      border-radius: var(--radius-xl);
      padding: 1.75rem 1.75rem 1.6rem;
      border: 1px solid rgba(151, 163, 205, 0.15);
      box-shadow: var(--shadow-soft);
  }

  .card-soft {
      background: var(--bg-elevated-soft);
      border-radius: var(--radius-lg);
      padding: 1.4rem 1.5rem 1.35rem;
      border: 1px solid rgba(151, 163, 205, 0.12);
  }


  .codere-section {
      background: radial-gradient(circle at top left, rgba(49, 209, 124, 0.12), transparent 55%), var(--bg-alt);
  }

  .codere-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.2rem;
      align-items: center;
  }

  .codere-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.3rem 0.9rem;
      border-radius: var(--radius-pill);
      font-size: 0.78rem;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      background: rgba(49, 209, 124, 0.12);
      border: 1px solid rgba(49, 209, 124, 0.55);
      color: var(--accent);
      margin-bottom: 0.7rem;
  }

  .codere-logo-wrap {
      max-width: 260px;
      padding: 1.1rem 1.2rem;
      border-radius: var(--radius-lg);
      background: radial-gradient(circle at 10% 0, rgba(49, 209, 124, 0.16), transparent 60%), #05060b;
      border: 1px solid rgba(151, 163, 205, 0.2);
      margin-bottom: 1.4rem;
  }

  .codere-logo-wrap img {
      width: 100%;
      object-fit: contain;
  }

  .rating-row {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 0.6rem;
  }

  .rating-score {
      font-size: 1.4rem;
      font-weight: 700;
  }

  .rating-stars {
      display: flex;
      align-items: center;
      gap: 0.2rem;
      color: #ffdd63;
      font-size: 0.95rem;
  }

  .rating-tag {
      font-size: 0.75rem;
      padding: 0.2rem 0.7rem;
      border-radius: var(--radius-pill);
      background: rgba(255, 221, 99, 0.08);
      border: 1px solid rgba(255, 221, 99, 0.6);
      color: #ffdd63;
  }

  .codere-text-main {
      font-size: 0.92rem;
      color: var(--text-muted);
      margin-bottom: 1.4rem;
      max-width: 600px;
  }

  .codere-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 1.3rem;
  }

  .codere-block-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
      display: flex;
      align-items: center;
      gap: 0.45rem;
  }

  .codere-block-title i {
      color: var(--accent);
  }

  .codere-block-text {
      font-size: 0.9rem;
      color: var(--text-muted);
  }

  .codere-advantages {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 0.6rem 1.4rem;
      margin-top: 0.4rem;
  }

  .codere-adv-item {
      font-size: 0.88rem;
      color: var(--text-muted);
      display: flex;
      align-items: flex-start;
      gap: 0.45rem;
  }

  .codere-adv-item i {
      color: var(--accent);
      margin-top: 0.1rem;
      font-size: 0.86rem;
      flex-shrink: 0;
  }

  .codere-footer {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.9rem;
  }

  .codere-footer i {
      color: var(--danger);
      margin-right: 0.25rem;
  }


  .comparison-section {
      background: radial-gradient(circle at top right, rgba(34, 193, 195, 0.14), transparent 55%), var(--bg-main);
  }

  .table-wrapper {
      background: rgba(10, 13, 26, 0.92);
      border-radius: var(--radius-xl);
      border: 1px solid rgba(151, 163, 205, 0.18);
      padding: 1.3rem 1.3rem;
      box-shadow: var(--shadow-soft);
      overflow-x: auto;
  }

  .comparison-table {
      border-collapse: collapse;
      width: 100%;
      min-width: 720px;
      font-size: 0.86rem;
  }

  .comparison-table th,
  .comparison-table td {
      padding: 0.7rem 0.6rem;
      text-align: left;
      vertical-align: top;
      border-bottom: 1px solid rgba(40, 49, 78, 0.8);
  }

  .comparison-table th {
      font-weight: 600;
      color: #d4dbff;
      background: rgba(20, 26, 52, 0.85);
      position: sticky;
      top: 0;
      z-index: 1;
  }

  .comparison-table th i {
      margin-right: 0.35rem;
      color: var(--accent);
  }

  .comparison-table tbody tr:nth-child(even) {
      background: rgba(9, 13, 29, 0.75);
  }

  .comparison-table tbody tr:nth-child(odd) {
      background: rgba(7, 10, 22, 0.9);
  }

  .comparison-table tbody tr:hover {
      background: rgba(18, 25, 52, 0.95);
  }

  .casino-name {
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.35rem;
  }

  .casino-tag {
      font-size: 0.72rem;
      padding: 0.1rem 0.5rem;
      border-radius: var(--radius-pill);
      background: rgba(49, 209, 124, 0.1);
      border: 1px solid rgba(49, 209, 124, 0.6);
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.08em;
  }

  .comparison-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.3rem;
  }

  .comparison-tag {
      font-size: 0.72rem;
      padding: 0.16rem 0.55rem;
      border-radius: 999px;
      background: rgba(15, 20, 40, 0.9);
      border: 1px solid rgba(151, 163, 205, 0.35);
      color: var(--text-muted);
      white-space: nowrap;
  }

  .withdraw-fast {
      color: var(--accent);
      font-weight: 600;
  }

  .withdraw-medium {
      color: #ffdd63;
      font-weight: 600;
  }

  .withdraw-slow {
      color: #ff9b5d;
      font-weight: 600;
  }

  .comparison-footnote {
      margin-top: 1rem;
      font-size: 0.82rem;
      color: var(--text-muted);
      max-width: 780px;
  }

  .comparison-footnote i {
      color: var(--accent-2);
      margin-right: 0.3rem;
  }


  .ranking-section {
      background: var(--bg-alt);
  }

  .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.1rem 1.3rem;
  }

  .step-card {
      position: relative;
      padding: 1.25rem 1.1rem 1.1rem;
      border-radius: var(--radius-lg);
      background: radial-gradient(circle at top, rgba(34, 193, 195, 0.1), transparent 60%), #060815;
      border: 1px solid rgba(151, 163, 205, 0.18);
  }

  .step-number {
      position: absolute;
      top: 0.85rem;
      right: 0.9rem;
      font-size: 0.78rem;
      color: var(--text-muted);
      opacity: 0.7;
  }

  .step-icon {
      width: 36px;
      height: 36px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.6rem;
      background: rgba(49, 209, 124, 0.14);
      color: var(--accent);
  }

  .step-title {
      font-size: 0.96rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
  }

  .step-text {
      font-size: 0.86rem;
      color: var(--text-muted);
  }


  .guides-section {
      background: radial-gradient(circle at top left, rgba(34, 193, 195, 0.12), transparent 58%), var(--bg-main);
  }

  .guides-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.2rem 1.5rem;
  }

  .guide-card {
      background: rgba(10, 14, 28, 0.96);
      border-radius: var(--radius-lg);
      padding: 1.2rem 1.2rem 1.1rem;
      border: 1px solid rgba(151, 163, 205, 0.2);
      position: relative;
      overflow: hidden;
  }

  .guide-icon {
      width: 40px;
      height: 40px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.6rem;
      background: rgba(49, 209, 124, 0.12);
      color: var(--accent);
      font-size: 1.1rem;
  }

  .guide-title {
      font-size: 0.98rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
  }

  .guide-text {
      font-size: 0.86rem;
      color: var(--text-muted);
  }

  .guide-tag {
      position: absolute;
      top: 0.9rem;
      right: 1rem;
      font-size: 0.72rem;
      color: var(--text-muted);
      opacity: 0.65;
  }


  .faq-section {
      background: var(--bg-alt);
  }

  .faq-list {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 0.6rem;
      width: 100%;
  }

  details.faq-item {
      border-radius: var(--radius-lg);
      background: rgba(10, 14, 26, 0.98);
      border: 1px solid rgba(151, 163, 205, 0.2);
      padding: 0.7rem 0.9rem;
  }

  details.faq-item[open] {
      border-color: var(--accent-2);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6);
  }

  .faq-item summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.94rem;
      font-weight: 500;
  }

  .faq-item summary::-webkit-details-marker {
      display: none;
  }

  .faq-question {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
  }

  .faq-question i {
      color: var(--accent-2);
      font-size: 0.95rem;
  }

  .faq-toggle-icon {
      flex-shrink: 0;
      font-size: 0.8rem;
      color: var(--text-muted);
      transition: transform 0.2s ease-out;
  }

  details[open] .faq-toggle-icon {
      transform: rotate(90deg);
      color: var(--accent);
  }

  .faq-body {
      margin-top: 0.45rem;
      padding-top: 0.45rem;
      border-top: 1px dashed rgba(151, 163, 205, 0.4);
      font-size: 0.86rem;
      color: var(--text-muted);
  }

  .faq-body p+p {
      margin-top: 0.4rem;
  }

  .faq-body a {
      color: var(--accent-2);
      text-decoration: underline;
  }


  .responsabilidad-section {
      background: radial-gradient(circle at top right, rgba(255, 79, 106, 0.11), transparent 55%), var(--bg-main);
  }

  .responsabilidad-layout {
      display: grid;
      grid-template-columns: minmax(0, 6.5fr) minmax(0, 4.5fr);
      gap: 2rem;
      align-items: flex-start;
  }

  .responsabilidad-text {
      font-size: 0.9rem;
      color: var(--text-muted);
      max-width: 700px;
  }

  .responsabilidad-text p+p {
      margin-top: 0.5rem;
  }

  .responsabilidad-list {
      margin-top: 0.85rem;
      padding-left: 0.6rem;
  }

  .responsabilidad-list li {
      margin-bottom: 0.35rem;
      padding-left: 0.4rem;
      position: relative;
      font-size: 0.86rem;
  }

  .responsabilidad-list li::before {
      content: "•";
      position: absolute;
      left: -0.2rem;
      color: var(--accent);
  }

  .responsabilidad-callout {
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, rgba(255, 79, 106, 0.16), rgba(34, 193, 195, 0.12));
      border: 1px solid rgba(255, 255, 255, 0.18);
      padding: 1.4rem 1.5rem;
      box-shadow: var(--shadow-soft);
  }

  .responsabilidad-callout-header {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 0.55rem;
  }

  .responsabilidad-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(2, 3, 9, 0.9);
      color: var(--danger);
  }

  .responsabilidad-callout-title {
      font-size: 0.98rem;
      font-weight: 600;
  }

  .responsabilidad-callout-text {
      font-size: 0.85rem;
      color: var(--text-main);
      margin-bottom: 0.85rem;
  }

  .responsabilidad-callout-note {
      font-size: 0.8rem;
      color: var(--text-main);
      opacity: 0.9;
      margin-top: 0.6rem;
  }

  .responsabilidad-callout-note i {
      margin-right: 0.35rem;
      color: var(--accent-2);
  }


  .site-footer {
      background: #020309;
      border-top: 1px solid rgba(151, 163, 205, 0.24);
      padding: 40px 0 18px;
  }

  .footer-top {
      display: grid;
      grid-template-columns: minmax(0, 3.2fr) repeat(3, minmax(0, 2.1fr));
      gap: 1.8rem;
      font-size: 0.83rem;
      margin-bottom: 1.8rem;
  }

  .footer-title {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
  }

  .footer-text {
      color: var(--text-muted);
  }

  .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.28rem;
  }

  .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
  }

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

  .footer-legal-note {
      font-size: 0.78rem;
      color: var(--text-muted);
      border-top: 1px solid rgba(151, 163, 205, 0.24);
      padding-top: 0.9rem;
      margin-top: 0.5rem;
  }

  .footer-bottom {
      margin-top: 0.6rem;
      font-size: 0.76rem;
      color: rgba(168, 177, 209, 0.7);
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
  }

  .footer-bottom span i {
      color: var(--accent);
      margin-right: 0.25rem;
  }


  .text-accent {
      color: var(--accent);
  }

  .text-muted {
      color: var(--text-muted);
  }

  .mt-sm {
      margin-top: 0.4rem;
  }

  .mt-md {
      margin-top: 0.8rem;
  }


  @media (max-width: 960px) {
      .hero-inner {
          grid-template-columns: minmax(0, 1.05fr);
      }

      .hero-aside {
          order: -1;
      }

      .codere-layout {
          grid-template-columns: minmax(0, 1fr);
      }

      .responsabilidad-layout {
          grid-template-columns: minmax(0, 1fr);
      }

      .footer-top {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
  }

  @media (max-width: 768px) {
      .header-inner {
          gap: 0.6rem;
      }

      .badge-18 {
          margin-left: 0.2rem;
      }

      .main-nav {
          position: static;
      }

      .nav-links {
          position: absolute;
          top: calc(var(--header-height) - 8px);
          right: 1.5rem;
          left: 1.5rem;
          background: rgba(5, 6, 11, 0.985);
          border-radius: 18px;
          border: 1px solid rgba(151, 163, 205, 0.4);
          padding: 0.7rem 0.9rem;
          flex-direction: column;
          align-items: flex-start;
          gap: 0.1rem;
          box-shadow: 0 22px 50px rgba(0, 0, 0, 0.85);
          display: none;
      }

      .nav-links.nav-open {
          display: flex;
      }

      .nav-links a {
          width: 100%;
          padding: 0.5rem 0.3rem;
      }

      .hamburger {
          display: inline-flex;
      }

      .hero {
          padding-top: calc(40px + var(--header-height));
      }

      .hero-benefits {
          grid-template-columns: minmax(0, 1fr);
      }

      .hero-actions {
          flex-direction: column;
          align-items: stretch;
      }

      .hero-subtitle {
          max-width: 100%;
      }

      .hero-aside {
          padding: 1.4rem 1.3rem 1.3rem;
      }

      section {
          padding: 64px 0;
      }

      .footer-top {
          grid-template-columns: minmax(0, 1fr);
      }

      .table-wrapper {
          padding: 1rem 0.9rem;
      }
  }

  @media (max-width: 480px) {
      .container {
          padding: 0 1.1rem;
      }

      .hero-title {
          font-size: 1.9rem;
      }

      .hero-mini-grid {
          grid-template-columns: minmax(0, 1fr);
      }

      .codere-logo-wrap {
          margin-bottom: 1rem;
      }
  }

  .contact-section {
      background: radial-gradient(circle at top left, rgba(49, 209, 124, 0.09), transparent 55%), var(--bg-alt);
  }

  .contact-layout {
      display: grid;
      grid-template-columns: minmax(0, 4.8fr) minmax(0, 5.2fr);
      gap: 1.8rem;
      align-items: flex-start;
  }

  .contact-intro {
      font-size: 0.9rem;
      color: var(--text-muted);
      width: 100%;
      margin-bottom: 1.2rem;
  }

  .contact-bullets {
      margin-top: 0.3rem;
      padding-left: 0.6rem;
  }

  .contact-bullets li {
      font-size: 0.84rem;
      color: var(--text-muted);
      margin-bottom: 0.25rem;
      position: relative;
      padding-left: 0.4rem;
  }

  .contact-bullets li::before {
      content: "•";
      position: absolute;
      left: -0.2rem;
      color: var(--accent);
  }

  .contact-note {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.7rem;
  }

  .contact-note i {
      margin-right: 0.35rem;
      color: var(--accent-2);
  }


  .contact-form {
      background: var(--bg-elevated);
      border-radius: var(--radius-xl);
      border: 1px solid rgba(151, 163, 205, 0.2);
      box-shadow: var(--shadow-soft);
      padding: 1.6rem 1.6rem 1.4rem;
  }

  .contact-form-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.2rem;
  }

  .contact-form-sub {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 1.1rem;
  }


  .form-grid-two {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem;
      margin-bottom: 0.8rem;
  }

  .form-field {
      margin-bottom: 0.85rem;
  }

  .form-field label {
      display: block;
      font-size: 0.82rem;
      font-weight: 500;
      margin-bottom: 0.28rem;
      color: #d4dbff;
  }

  .form-optional {
      font-weight: 400;
      color: var(--text-muted);
      font-size: 0.76rem;
  }

  .input-control {
      width: 100%;
      background: #05060b;
      border-radius: 12px;
      border: 1px solid var(--border-subtle);
      padding: 0.7rem 0.8rem;
      font-size: 0.86rem;
      color: var(--text-main);
      transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out, background 0.16s ease-out;
  }

  .input-control::placeholder {
      color: rgba(168, 177, 209, 0.6);
  }

  .input-control:focus {
      outline: none;
      border-color: var(--accent-2);
      box-shadow: 0 0 0 1px rgba(34, 193, 195, 0.45);
      background: #060815;
  }


  .input-control.textarea {
      min-height: 120px;
      resize: vertical;
  }


  .checkbox-field {
      display: flex;
      align-items: flex-start;
      gap: 0.45rem;
      font-size: 0.78rem;
      color: var(--text-muted);
      margin: 0.3rem 0 0.8rem;
  }

  .checkbox-field input[type="checkbox"] {
      margin-top: 0.1rem;
      width: 16px;
      height: 16px;
      accent-color: var(--accent);
  }


  .contact-form-footnote {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-top: 0.6rem;
  }


  @media (max-width: 960px) {
      .contact-layout {
          grid-template-columns: minmax(0, 1fr);
      }

      .contact-form {
          padding: 1.4rem 1.35rem 1.25rem;
      }
  }

  @media (max-width: 600px) {
      .form-grid-two {
          grid-template-columns: minmax(0, 1fr);
      }
  }

  .logo-footer {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      width: 100%;
      max-width: 1120px;
      margin: 25px auto;
      justify-content: center;
  }

  .logo-footer a {
      height: 48px;

  }

  .logo-footer a img {
      height: 100%;
      object-fit: contain;
  }

  .privacy-section {
      background: radial-gradient(circle at top right, rgba(34, 193, 195, 0.12), transparent 55%), var(--bg-alt);
      border-top: 1px solid rgba(151, 163, 205, 0.18);
  }

  .privacy-wrapper {
      max-width: 960px;
      margin: 0 auto;
  }

  .privacy-intro {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 1.6rem;
  }

  .privacy-note {
      margin-bottom: 1.4rem;
      padding: 0.85rem 1rem;
      border-radius: 14px;
      background: rgba(10, 14, 28, 0.96);
      border: 1px dashed rgba(151, 163, 205, 0.45);
      font-size: 0.8rem;
      color: var(--text-muted);
  }

  .privacy-note i {
      margin-right: 0.4rem;
      color: var(--accent-2);
  }

  .privacy-block {
      margin-bottom: 1.4rem;
      padding-bottom: 1.1rem;
      border-bottom: 1px solid rgba(36, 43, 63, 0.8);
  }

  .privacy-block:last-of-type {
      border-bottom: none;
      padding-bottom: 0;
  }

  .privacy-subtitle {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
      color: #f5f7ff;
  }

  .privacy-text {
      font-size: 0.86rem;
      color: var(--text-muted);
  }

  .privacy-text p+p {
      margin-top: 0.4rem;
  }

  .privacy-list {
      margin-top: 0.4rem;
      padding-left: 0.9rem;
  }

  .privacy-list li {
      position: relative;
      margin-bottom: 0.25rem;
      padding-left: 0.35rem;
      font-size: 0.84rem;
      color: var(--text-muted);
  }

  .privacy-list li::before {
      content: "•";
      position: absolute;
      left: -0.3rem;
      color: var(--accent);
  }

  .privacy-inline-highlight {
      font-weight: 600;
      color: var(--accent);
  }

  .privacy-small {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-top: 0.6rem;
  }


  @media (max-width: 768px) {
      .privacy-wrapper {
          max-width: 100%;
      }
  }

  .terms-section {
      background: radial-gradient(circle at top left, rgba(49, 209, 124, 0.1), transparent 55%), var(--bg-main);
      border-top: 1px solid rgba(151, 163, 205, 0.18);
  }

  .terms-wrapper {
      max-width: 960px;
      margin: 0 auto;
  }

  .terms-intro {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 1.6rem;
  }

  .terms-note {
      margin-bottom: 1.4rem;
      padding: 0.85rem 1rem;
      border-radius: 14px;
      background: rgba(10, 14, 28, 0.96);
      border: 1px dashed rgba(151, 163, 205, 0.45);
      font-size: 0.8rem;
      color: var(--text-muted);
  }

  .terms-note i {
      margin-right: 0.4rem;
      color: var(--accent);
  }

  .terms-block {
      margin-bottom: 1.4rem;
      padding-bottom: 1.1rem;
      border-bottom: 1px solid rgba(36, 43, 63, 0.8);
  }

  .terms-block:last-of-type {
      border-bottom: none;
      padding-bottom: 0;
  }

  .terms-subtitle {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
      color: #f5f7ff;
  }

  .terms-text {
      font-size: 0.86rem;
      color: var(--text-muted);
  }

  .terms-text p+p {
      margin-top: 0.4rem;
  }

  .terms-list {
      margin-top: 0.45rem;
      padding-left: 0.9rem;
  }

  .terms-list li {
      position: relative;
      margin-bottom: 0.28rem;
      padding-left: 0.35rem;
      font-size: 0.84rem;
      color: var(--text-muted);
  }

  .terms-list li::before {
      content: "•";
      position: absolute;
      left: -0.3rem;
      color: var(--accent);
  }

  .terms-inline-highlight {
      font-weight: 600;
      color: var(--accent);
  }

  .terms-small {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-top: 0.55rem;
  }


  @media (max-width: 768px) {
      .terms-wrapper {
          max-width: 100%;
      }
  }

  .cookies-section {
      background: radial-gradient(circle at top right, rgba(34, 193, 195, 0.12), transparent 55%), var(--bg-main);
      border-top: 1px solid rgba(151, 163, 205, 0.18);
  }

  .cookies-wrapper {
      max-width: 960px;
      margin: 0 auto;
  }

  .cookies-intro {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 1.6rem;
  }

  .cookies-note {
      margin-bottom: 1.4rem;
      padding: 0.85rem 1rem;
      border-radius: 14px;
      background: rgba(10, 14, 28, 0.96);
      border: 1px dashed rgba(151, 163, 205, 0.45);
      font-size: 0.8rem;
      color: var(--text-muted);
  }

  .cookies-note i {
      margin-right: 0.4rem;
      color: var(--accent-2);
  }

  .cookies-block {
      margin-bottom: 1.4rem;
      padding-bottom: 1.1rem;
      border-bottom: 1px solid rgba(36, 43, 63, 0.8);
  }

  .cookies-block:last-of-type {
      border-bottom: none;
      padding-bottom: 0;
  }

  .cookies-subtitle {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
      color: #f5f7ff;
  }

  .cookies-text {
      font-size: 0.86rem;
      color: var(--text-muted);
  }

  .cookies-text p+p {
      margin-top: 0.4rem;
  }

  .cookies-list {
      margin-top: 0.45rem;
      padding-left: 0.9rem;
  }

  .cookies-list li {
      position: relative;
      margin-bottom: 0.28rem;
      padding-left: 0.35rem;
      font-size: 0.84rem;
      color: var(--text-muted);
  }

  .cookies-list li::before {
      content: "•";
      position: absolute;
      left: -0.3rem;
      color: var(--accent);
  }

  .cookies-inline-highlight {
      font-weight: 600;
      color: var(--accent);
  }

  .cookies-small {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-top: 0.55rem;
  }


  @media (max-width: 768px) {
      .cookies-wrapper {
          max-width: 100%;
      }
  }

  .jr-section {
      background: radial-gradient(circle at top left, rgba(255, 79, 106, 0.12), transparent 55%), var(--bg-main);
      border-top: 1px solid rgba(151, 163, 205, 0.18);
  }

  .jr-wrapper {
      max-width: 960px;
      margin: 0 auto;
  }

  .jr-intro {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 1.6rem;
  }

  .jr-note {
      margin-bottom: 1.4rem;
      padding: 0.9rem 1rem;
      border-radius: 14px;
      background: rgba(10, 14, 28, 0.98);
      border: 1px solid rgba(255, 79, 106, 0.55);
      font-size: 0.82rem;
      color: var(--text-main);
  }

  .jr-note i {
      margin-right: 0.4rem;
      color: var(--danger);
  }

  .jr-block {
      margin-bottom: 1.4rem;
      padding-bottom: 1.1rem;
      border-bottom: 1px solid rgba(36, 43, 63, 0.8);
  }

  .jr-block:last-of-type {
      border-bottom: none;
      padding-bottom: 0;
  }

  .jr-subtitle {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
      color: #f5f7ff;
  }

  .jr-text {
      font-size: 0.86rem;
      color: var(--text-muted);
  }

  .jr-text p+p {
      margin-top: 0.4rem;
  }

  .jr-list {
      margin-top: 0.45rem;
      padding-left: 0.9rem;
  }

  .jr-list li {
      position: relative;
      margin-bottom: 0.26rem;
      padding-left: 0.35rem;
      font-size: 0.84rem;
      color: var(--text-muted);
  }

  .jr-list li::before {
      content: "•";
      position: absolute;
      left: -0.3rem;
      color: var(--accent);
  }

  .jr-inline-highlight {
      font-weight: 600;
      color: var(--accent);
  }

  .jr-small {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-top: 0.55rem;
  }

  .jr-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.32rem 0.9rem;
      border-radius: 999px;
      border: 1px solid rgba(151, 163, 205, 0.4);
      background: rgba(10, 14, 28, 0.95);
      font-size: 0.78rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      margin-bottom: 0.7rem;
  }

  .jr-tag i {
      color: var(--accent);
  }

  .jr-columns {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
      gap: 1.5rem;
  }

  .jr-callout {
      margin-top: 0.6rem;
      padding: 0.85rem 1rem;
      border-radius: 12px;
      background: rgba(26, 33, 54, 0.95);
      border: 1px solid rgba(151, 163, 205, 0.3);
      font-size: 0.82rem;
      color: var(--text-main);
  }

  .jr-callout i {
      margin-right: 0.4rem;
      color: var(--accent-2);
  }


  @media (max-width: 768px) {
      .jr-wrapper {
          max-width: 100%;
      }

      .jr-columns {
          grid-template-columns: minmax(0, 1fr);
      }
  }


  .cookie-banner {
      position: fixed;
      inset-inline: 0;
      bottom: 0;
      z-index: 2200;
      display: none;
      background: linear-gradient(135deg, rgba(5, 6, 11, 0.97), rgba(10, 14, 28, 0.98));
      border-top: 1px solid rgba(151, 163, 205, 0.3);
      box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.85);
  }

  .cookie-banner-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0.9rem 1.5rem 0.95rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      font-size: 0.82rem;
  }

  .cookie-banner-icon {
      flex-shrink: 0;
      margin-top: 0.12rem;
      width: 28px;
      height: 28px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(49, 209, 124, 0.12);
      color: var(--accent-2);
  }

  .cookie-banner-content {
      flex: 1 1 auto;
  }

  .cookie-banner-title {
      font-weight: 600;
      margin-bottom: 0.25rem;
      font-size: 0.87rem;
  }

  .cookie-banner-text {
      color: var(--text-muted);
      line-height: 1.5;
  }

  .cookie-banner-text a {
      color: var(--accent-2);
      text-decoration: underline;
  }

  .cookie-banner-actions {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      margin-left: 0.75rem;
      flex-shrink: 0;
  }

  .cookie-btn {
      font-size: 0.8rem;
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      font-weight: 600;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      background: transparent;
      color: var(--text-main);
  }

  .cookie-btn-accept {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #020309;
      border-color: transparent;
  }

  .cookie-btn-accept:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(49, 209, 124, 0.4);
  }

  .cookie-btn-essential {
      border-color: rgba(151, 163, 205, 0.7);
      background: rgba(10, 14, 28, 0.95);
  }

  .cookie-btn-essential:hover {
      border-color: var(--accent);
  }

  .cookie-btn-settings {
      border-color: transparent;
      color: var(--text-muted);
  }

  .cookie-btn-settings:hover {
      color: var(--accent-2);
  }


  .cookie-banner.is-visible {
      display: block;
  }



  .cookie-modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 2300;
      display: none;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at top, rgba(34, 193, 195, 0.25), rgba(2, 3, 9, 0.98));
      backdrop-filter: blur(10px);
  }

  .cookie-modal-overlay.is-visible {
      display: flex;
  }

  .cookie-modal {
      width: 100%;
      max-width: 520px;
      background: #05060b;
      border-radius: 18px;
      border: 1px solid rgba(151, 163, 205, 0.4);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
      padding: 1.3rem 1.4rem 1.2rem;
      font-size: 0.84rem;
  }

  .cookie-modal-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 0.6rem;
      margin-bottom: 0.6rem;
  }

  .cookie-modal-title {
      font-size: 0.98rem;
      font-weight: 600;
  }

  .cookie-modal-close {
      background: none;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      padding: 0.1rem;
  }

  .cookie-modal-close:hover {
      color: var(--accent-2);
  }

  .cookie-modal-text {
      color: var(--text-muted);
      margin-bottom: 0.8rem;
  }

  .cookie-options {
      border-radius: 12px;
      background: var(--bg-elevated);
      border: 1px solid rgba(151, 163, 205, 0.25);
      padding: 0.8rem 0.9rem;
      margin-bottom: 0.9rem;
  }

  .cookie-option {
      display: flex;
      gap: 0.55rem;
      align-items: flex-start;
      padding: 0.45rem 0;
  }

  .cookie-option+.cookie-option {
      border-top: 1px solid rgba(36, 43, 63, 0.8);
      margin-top: 0.25rem;
      padding-top: 0.7rem;
  }

  .cookie-option-toggle {
      margin-top: 0.2rem;
  }

  .cookie-option-toggle input[type="checkbox"] {
      width: 16px;
      height: 16px;
      accent-color: var(--accent);
  }

  .cookie-option-content {
      flex: 1;
  }

  .cookie-option-title {
      font-weight: 600;
      font-size: 0.83rem;
  }

  .cookie-option-pill {
      display: inline-block;
      font-size: 0.72rem;
      margin-left: 0.4rem;
      padding: 0.05rem 0.5rem;
      border-radius: 999px;
      border: 1px solid rgba(151, 163, 205, 0.6);
      color: var(--text-muted);
  }

  .cookie-option-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.2rem;
  }

  .cookie-modal-footer {
      display: flex;
      justify-content: flex-end;
      gap: 0.6rem;
      margin-top: 0.4rem;
  }

  .cookie-modal-btn {
      font-size: 0.8rem;
      padding: 0.45rem 1rem;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      font-weight: 600;
  }

  .cookie-modal-btn-save {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #020309;
  }

  .cookie-modal-btn-cancel {
      background: transparent;
      border-color: rgba(151, 163, 205, 0.7);
      color: var(--text-main);
  }

  .cookie-modal-btn-cancel:hover {
      border-color: var(--accent-2);
  }



  .age-gate {
      position: fixed;
      inset: 0;
      z-index: 2400;
      display: none;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at top, rgba(255, 79, 106, 0.25), rgba(2, 3, 9, 0.98));
      backdrop-filter: blur(12px);
  }

  .age-gate.is-visible {
      display: flex;
  }

  .age-gate-card {
      width: 100%;
      max-width: 460px;
      background: #05060b;
      border-radius: 22px;
      border: 1px solid rgba(255, 79, 106, 0.6);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9);
      padding: 1.4rem 1.5rem 1.25rem;
      text-align: left;
      font-size: 0.86rem;
  }

  .age-gate-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.32rem 0.9rem;
      border-radius: 999px;
      background: rgba(255, 79, 106, 0.12);
      border: 1px solid rgba(255, 79, 106, 0.7);
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--danger);
      margin-bottom: 0.7rem;
  }

  .age-gate-badge i {
      font-size: 0.9rem;
  }

  .age-gate-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
  }

  .age-gate-text {
      color: var(--text-muted);
      margin-bottom: 0.9rem;
  }

  .age-gate-text strong {
      color: var(--text-main);
  }

  .age-gate-warning {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0.9rem;
  }

  .age-gate-warning i {
      margin-right: 0.3rem;
      color: var(--accent-2);
  }

  .age-gate-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin-bottom: 0.7rem;
  }

  .age-gate-btn {
      flex: 1 1 auto;
      min-width: 130px;
      font-size: 0.85rem;
      padding: 0.55rem 1rem;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      font-weight: 600;
  }

  .age-gate-btn-yes {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #020309;
  }

  .age-gate-btn-no {
      background: transparent;
      border-color: rgba(151, 163, 205, 0.7);
      color: var(--text-main);
  }

  .age-gate-btn-no:hover {
      border-color: var(--danger);
      color: var(--danger);
  }

  .age-gate-note {
      font-size: 0.78rem;
      color: var(--text-muted);
  }


  @media (max-width: 768px) {
      .cookie-banner-inner {
          flex-direction: column;
          align-items: flex-start;
          padding: 0.9rem 1.1rem 1rem;
      }

      .cookie-banner-actions {
          flex-direction: row;
          flex-wrap: wrap;
          margin-left: 0;
      }

      .age-gate-card {
          margin: 0 1.2rem;
          padding: 1.2rem 1.1rem 1.1rem;
      }

      .age-gate-actions {
          flex-direction: column;
      }

      .age-gate-btn {
          width: 100%;
      }
  }