  :root {
      --color-primary: #1e88e5;
      --color-primary-dark: #1565c0;
      --color-secondary: #00b894;
      --color-bg-header: #0b1020;
      --color-bg-light: #f7f8fc;
      --color-bg-card: #ffffff;
      --color-text: #222222;
      --color-text-muted: #666666;
      --color-border: #e0e0e0;
      --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.08);
      --radius-lg: 16px;
      --radius-md: 10px;
      --radius-pill: 999px;
  }

  * {
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      margin: 0;
      font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--color-text);
      background-color: #ffffff;
      line-height: 1.6;
  }

  img {
      max-width: 100%;
      height: auto;
  }

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

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



  .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(11, 16, 32, 0.96);
      backdrop-filter: blur(10px);
      color: #ffffff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  }

  .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 0;
  }

  .logo {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
  }

  .logo-main {
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: 0.04em;
  }

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

  .logo-tagline {
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.8);
  }

  .main-nav {
      position: relative;
  }

  .nav-menu {
      list-style: none;
      margin: 0;
      padding: 0;
      position: absolute;
      top: 100%;
      right: 0;
      left: 0;
      background: #111528;
      display: none;
      flex-direction: column;
      gap: 0;
  }

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

  .nav-menu li {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-menu a {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 1.25rem;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.9);
      transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-menu a i {
      font-size: 0.95rem;
  }

  .nav-menu a:hover {
      background: rgba(30, 136, 229, 0.15);
      color: #ffffff;
  }

  .nav-toggle {
      border: none;
      background: transparent;
      cursor: pointer;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .hamburger,
  .hamburger::before,
  .hamburger::after {
      width: 22px;
      height: 2px;
      background-color: #ffffff;
      display: block;
      border-radius: 999px;
      transition: transform 0.2s ease, opacity 0.2s ease;
      position: relative;
  }

  .hamburger::before,
  .hamburger::after {
      content: "";
      position: absolute;
      left: 0;
  }

  .hamburger::before {
      top: -7px;
  }

  .hamburger::after {
      top: 7px;
  }

  .nav-toggle.is-active .hamburger {
      transform: rotate(45deg);
  }

  .nav-toggle.is-active .hamburger::before {
      transform: rotate(-90deg) translateX(-7px);
  }

  .nav-toggle.is-active .hamburger::after {
      opacity: 0;
  }



  main {
      padding-top: 70px;
  }

  section {
      scroll-margin-top: 90px;
  }

  .section {
      padding: 3.5rem 0;
  }

  .section-bg-light {
      background-color: var(--color-bg-light);
  }

  .section-title {
      font-size: 1.6rem;
      margin-bottom: 0.5rem;
  }

  .section-subtitle {
      font-size: 0.95rem;
      color: var(--color-text-muted);
      margin-bottom: 1.75rem;
  }



  .hero {
      background: radial-gradient(circle at top left, #1e88e5 0, #0b1020 45%, #050816 100%);
      color: #ffffff;
      padding: 4.5rem 0 4rem;
  }

  .hero-inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(0, 0, 0, 0.35);
      border-radius: var(--radius-pill);
      padding: 0.2rem 0.7rem;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 0.75rem;
  }

  .hero-badge i {
      color: var(--color-secondary);
  }

  .hero-title {
      font-size: 1.9rem;
      line-height: 1.2;
      margin-bottom: 0.75rem;
  }

  .hero-title span {
      color: var(--color-secondary);
  }

  .hero-text {
      font-size: 0.98rem;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 1.75rem;
  }

  .hero-cta-group {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.6rem;
  }

  .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.65rem 1.4rem;
      border-radius: var(--radius-pill);
      border: none;
      cursor: pointer;
      font-size: 0.95rem;
      font-weight: 500;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
      text-decoration: none;
      white-space: nowrap;
  }

  .btn-primary {
      background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
      color: #ffffff;
      box-shadow: 0 12px 25px rgba(21, 101, 192, 0.4);
  }

  .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 28px rgba(21, 101, 192, 0.5);
  }

  .btn-outline-light {
      background: transparent;
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.4);
  }

  .btn-outline-light:hover {
      background: rgba(255, 255, 255, 0.06);
  }

  .hero-note {
      display: flex;
      align-items: flex-start;
      gap: 0.55rem;
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.85);
  }

  .hero-note i {
      color: #ffca28;
      font-size: 0.85rem;
      margin-top: 0.07rem;
  }

  .hero-card {
      background: rgba(5, 8, 22, 0.85);
      border-radius: var(--radius-lg);
      padding: 1.3rem 1.2rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .hero-card-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
  }

  .hero-card-list {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.85);
  }

  .hero-card-list li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.35rem;
  }

  .hero-card-list li i {
      color: var(--color-secondary);
      font-size: 0.9rem;
  }



  .codere-section {
      background: #ffffff;
  }

  .codere-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.75rem;
  }

  .codere-card {
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      padding: 1.6rem 1.4rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(0, 0, 0, 0.03);
  }

  .codere-header {
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
      margin-bottom: 1rem;
  }

  .codere-logo-wrap {
      display: flex;
      align-items: center;
      gap: 0.9rem;
  }

  .codere-logo {
      width: 160px;
      flex-shrink: 0;
  }

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

  .codere-rating {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
  }

  .codere-rating-score {
      font-weight: 600;
      color: var(--color-primary-dark);
  }

  .codere-rating-stars i {
      color: #ffb300;
      font-size: 0.9rem;
  }

  .codere-body {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.4rem;
      margin-top: 0.6rem;
  }

  .codere-block-title {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
  }

  .codere-list {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 0.85rem;
  }

  .codere-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      margin-bottom: 0.3rem;
  }

  .codere-list li i {
      margin-top: 0.15rem;
      font-size: 0.8rem;
  }

  .codere-list.bonos li i {
      color: #ff7043;
  }

  .codere-list.pros li i {
      color: var(--color-secondary);
  }

  .codere-cta {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-top: 1.1rem;
  }

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

  .codere-note i {
      color: #ffa726;
      margin-right: 0.3rem;
  }



  .comparacion-section .section-title {
      margin-bottom: 0.5rem;
  }

  .comparacion-section .section-subtitle {
      max-width: 680px;
  }

  .table-responsive {
      width: 100%;
      overflow-x: auto;
      margin-top: 1.5rem;
  }

  table {
      width: 100%;
      border-collapse: collapse;
      min-width: 780px;
      font-size: 0.85rem;
      background: #ffffff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
  }

  thead {
      background: #f0f4ff;
  }

  th,
  td {
      padding: 0.75rem 0.85rem;
      text-align: left;
      border-bottom: 1px solid #edf0f7;
  }

  th {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--color-text-muted);
      font-weight: 600;
  }

  tbody tr:nth-child(even) {
      background-color: #fafbff;
  }

  tbody tr:hover {
      background-color: #e8f1ff;
  }

  .table-rating-stars i {
      color: #ffb300;
      margin-right: 1px;
  }

  .table-rating-score {
      font-weight: 600;
      margin-right: 0.3rem;
  }

  .table-methods,
  .table-games,
  .table-license {
      color: var(--color-text-muted);
  }

  .btn-table {
      font-size: 0.8rem;
      padding: 0.4rem 0.9rem;
      border-radius: var(--radius-pill);
      background: var(--color-primary);
      color: #ffffff;
      box-shadow: 0 4px 10px rgba(30, 136, 229, 0.3);
  }

  .btn-table i {
      font-size: 0.8rem;
  }

  .badge-highlight {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-pill);
      background: rgba(0, 184, 148, 0.1);
      color: var(--color-secondary);
      font-size: 0.75rem;
  }

  .badge-highlight i {
      font-size: 0.75rem;
  }



  .about-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.7rem;
  }

  .about-text p {
      margin-bottom: 0.9rem;
      font-size: 0.9rem;
  }

  .about-text p:last-child {
      margin-bottom: 0;
  }

  .about-highlight {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 1.2rem 1.1rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(0, 0, 0, 0.03);
  }

  .about-highlight-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
  }

  .about-icons {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 0.85rem;
  }

  .about-icons li {
      display: flex;
      gap: 0.6rem;
      align-items: flex-start;
      margin-bottom: 0.5rem;
  }

  .about-icons li i {
      margin-top: 0.2rem;
      color: var(--color-primary);
  }



  .guide-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .guide-list,
  .guide-tips-list {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 0.9rem;
  }

  .guide-list li,
  .guide-tips-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      margin-bottom: 0.5rem;
  }

  .guide-list li i {
      color: var(--color-secondary);
      margin-top: 0.15rem;
  }

  .guide-tips {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 1.1rem;
      box-shadow: var(--shadow-soft);
      border-left: 4px solid var(--color-primary);
  }

  .guide-tips-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
  }

  .guide-tips-title i {
      color: #ffca28;
  }

  .guide-tips-list li i {
      color: var(--color-primary);
      margin-top: 0.18rem;
  }



  .bonos-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.3rem;
  }

  .bonos-text {
      font-size: 0.9rem;
  }

  .bonos-list {
      list-style: none;
      padding: 0;
      margin: 0.5rem 0 0;
      font-size: 0.9rem;
  }

  .bonos-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      margin-bottom: 0.45rem;
  }

  .bonos-list li i {
      color: #ff7043;
      margin-top: 0.15rem;
  }

  .bonos-warning {
      font-size: 0.8rem;
      color: var(--color-text-muted);
      margin-top: 0.6rem;
  }

  .bonos-warning i {
      color: #fbc02d;
      margin-right: 0.3rem;
  }



  .faq-list {
      max-width: 800px;
      margin: 0 auto;
  }

  .faq-item {
      border-radius: var(--radius-md);
      border: 1px solid var(--color-border);
      background: #ffffff;
      margin-bottom: 0.7rem;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  }

  .faq-question {
      width: 100%;
      border: none;
      background: transparent;
      padding: 0.8rem 1rem;
      text-align: left;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.7rem;
      cursor: pointer;
  }

  .faq-question span {
      flex: 1;
  }

  .faq-question i {
      color: var(--color-primary);
      font-size: 0.85rem;
      flex-shrink: 0;
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0 1rem;
      font-size: 0.86rem;
      color: var(--color-text-muted);
  }

  .faq-answer-inner {
      padding-bottom: 0.85rem;
  }

  .faq-item.active {
      border-color: var(--color-primary);
      box-shadow: 0 6px 18px rgba(30, 136, 229, 0.15);
  }



  .responsible-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .responsible-text p {
      font-size: 0.9rem;
      margin-bottom: 0.85rem;
  }

  .responsible-text b {
      font-weight: 700;
  }

  .responsible-list {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 0.9rem;
  }

  .responsible-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      margin-bottom: 0.5rem;
  }

  .responsible-list li i {
      margin-top: 0.15rem;
  }

  .responsible-list li .fa-heart,
  .responsible-list li .fa-hand-holding-heart {
      color: #e91e63;
  }

  .responsible-list li .fa-ban {
      color: #f44336;
  }

  .responsible-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: #ffe0b2;
      color: #e65100;
      padding: 0.3rem 0.9rem;
      border-radius: var(--radius-pill);
      font-size: 0.8rem;
      font-weight: 600;
      margin-top: 0.4rem;
  }

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



  .blog-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
  }

  .blog-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 1.2rem 1.1rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(0, 0, 0, 0.03);
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
  }

  .blog-meta {
      font-size: 0.75rem;
      color: var(--color-text-muted);
      display: flex;
      align-items: center;
      gap: 0.4rem;
  }

  .blog-meta i {
      color: var(--color-primary);
  }

  .blog-title {
      font-size: 1rem;
      font-weight: 600;
  }

  .blog-excerpt {
      font-size: 0.85rem;
      color: var(--color-text-muted);
      flex: 1;
  }

  .blog-actions {
      margin-top: 0.4rem;
  }

  .btn-blog {
      font-size: 0.82rem;
      padding: 0.4rem 0.9rem;
      border-radius: var(--radius-pill);
      border: 1px solid var(--color-primary);
      color: var(--color-primary);
      background: transparent;
  }

  .btn-blog:hover {
      background: var(--color-primary);
      color: #ffffff;
  }



  .contact-section .section-subtitle {
      max-width: 580px;
  }

  .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .contact-info {
      font-size: 0.9rem;
  }

  .contact-info p {
      margin-bottom: 0.8rem;
  }

  .contact-info-icon {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.85rem;
      color: var(--color-text-muted);
  }

  .contact-info-icon i {
      color: var(--color-primary);
  }

  .contact-form {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 1.4rem 1.3rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(0, 0, 0, 0.03);
  }

  .form-group {
      margin-bottom: 0.9rem;
  }

  label {
      display: block;
      font-size: 0.82rem;
      font-weight: 500;
      margin-bottom: 0.25rem;
  }

  input[type="text"],
  input[type="email"],
  textarea {
      width: 100%;
      padding: 0.55rem 0.7rem;
      border-radius: 10px;
      border: 1px solid #d0d4e0;
      font-size: 0.88rem;
      font-family: inherit;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }

  textarea {
      resize: vertical;
      min-height: 110px;
  }

  input:focus,
  textarea:focus {
      outline: none;
      border-color: var(--color-primary);
      box-shadow: 0 0 0 2px rgba(30, 136, 229, 0.2);
  }

  .form-message {
      font-size: 0.8rem;
      margin-top: 0.4rem;
      color: var(--color-secondary);
  }

  .btn-submit {
      padding: 0.6rem 1.4rem;
      font-size: 0.9rem;
  }



  .site-footer {
      background: #050816;
      color: rgba(255, 255, 255, 0.85);
      padding: 2.5rem 0 1.2rem;
      margin-top: 2rem;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .footer-logo {
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.06em;
      margin-bottom: 0.35rem;
  }

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

  .footer-text {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.75);
  }

  .footer-heading {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
  }

  .footer-nav,
  .footer-legal,
  .footer-contact-list {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 0.82rem;
  }

  .footer-nav li,
  .footer-legal li,
  .footer-contact-list li {
      margin-bottom: 0.35rem;
  }

  .footer-nav a {
      color: rgba(255, 255, 255, 0.8);
  }

  .footer-nav a:hover {
      color: #ffffff;
  }

  .footer-legal li {
      color: rgba(255, 255, 255, 0.75);
  }

  .footer-contact-list li i {
      margin-right: 0.4rem;
  }

  .footer-social {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-top: 0.4rem;
  }

  .footer-social a {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      color: #ffffff;
      transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  }

  .footer-social a:hover {
      background: var(--color-primary);
      border-color: var(--color-primary);
      transform: translateY(-1px);
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      margin-top: 1.7rem;
      padding-top: 0.8rem;
      text-align: center;
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.6);
  }



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

      .hero-inner {
          grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      }

      .hero-card {
          padding: 1.4rem 1.4rem;
      }

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

      .guide-grid {
          grid-template-columns: 1.2fr 0.9fr;
      }

      .comparacion-section .section-title {
          font-size: 1.7rem;
      }
  }

  @media (min-width: 768px) {
      .header-inner {
          padding: 0.45rem 0;
      }

      .nav-toggle {
          display: none;
      }

      .main-nav {
          flex: 1;
          display: flex;
          justify-content: flex-end;
      }

      .nav-menu {
          position: static;
          display: flex;
          flex-direction: row;
          gap: 0.1rem;
          background: transparent;
      }

      .nav-menu li {
          border: none;
      }

      .nav-menu a {
          padding: 0.4rem 0.75rem;
          border-radius: var(--radius-pill);
          font-size: 0.82rem;
      }

      .nav-menu a:hover {
          background: rgba(255, 255, 255, 0.08);
      }

      main {
          padding-top: 72px;
      }

      .section {
          padding: 4rem 0;
      }

      .codere-grid {
          grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
          align-items: flex-start;
      }

      .about-layout {
          grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
      }

      .bonos-grid {
          grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
          align-items: flex-start;
      }

      .responsible-grid {
          grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
      }

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

      .contact-grid {
          grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
          align-items: flex-start;
      }

      .footer-grid {
          grid-template-columns: 1.4fr 1fr 1.2fr;
      }
  }

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

      .section-title {
          font-size: 1.8rem;
      }
  }

  .page .about-layout {
      grid-template-columns: 1fr;
  }

  .page .responsible-grid {
      grid-template-columns: 1fr;
  }

  .age-gate-overlay {
      position: fixed;
      inset: 0;
      background: rgba(5, 8, 22, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9998;
      padding: 1rem;
  }

  .age-gate-modal {
      max-width: 420px;
      width: 100%;
      background: #ffffff;
      border-radius: 16px;
      padding: 1.6rem 1.4rem;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
      text-align: left;
  }

  .age-gate-title {
      margin: 0 0 0.75rem;
      font-size: 1.3rem;
  }

  .age-gate-text {
      font-size: 0.9rem;
      color: #444;
      margin: 0 0 1.2rem;
  }

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

  .age-gate-btn {
      flex: 1 1 140px;
      font-size: 0.9rem;
      padding: 0.55rem 1rem;
      border-radius: 999px;
      cursor: pointer;
      border: none;
  }

  .age-gate-note {
      font-size: 0.8rem;
      color: #777;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 0.4rem;
  }

  .age-gate-note i {
      color: #f39c12;
  }

  .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 0.75rem;
      background: transparent;
      display: none;
  }

  .cookie-banner-inner {
      max-width: 960px;
      margin: 0 auto;
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      padding: 1rem 1rem 0.9rem;
      font-size: 0.9rem;
  }

  .cookie-banner-main {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
  }

  .cookie-banner-title {
      margin: 0;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
  }

  .cookie-banner-title i {
      color: #f39c12;
  }

  .cookie-banner-text {
      margin: 0;
      color: #555;
  }

  .cookie-settings-toggle {
      margin-top: 0.4rem;
      padding: 0.35rem 0.75rem;
      border-radius: 999px;
      border: 1px solid #ddd;
      background: #f9fafc;
      font-size: 0.8rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
  }

  .cookie-settings-toggle i {
      font-size: 0.85rem;
  }

  .cookie-settings-panel {
      margin-top: 0.8rem;
      border-top: 1px solid #eee;
      padding-top: 0.7rem;
      display: none;
  }

  .cookie-settings-title {
      margin: 0 0 0.5rem;
      font-size: 0.9rem;
  }

  .cookie-setting-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      margin-bottom: 0.5rem;
  }

  .cookie-setting-item p {
      margin: 0.1rem 0 0;
      font-size: 0.8rem;
      color: #666;
  }

  .cookie-setting-badge {
      font-size: 0.75rem;
      padding: 0.2rem 0.7rem;
      border-radius: 999px;
      background: #e3f2fd;
      color: #1565c0;
      white-space: nowrap;
  }

  .cookie-switch {
      position: relative;
      display: inline-block;
      width: 40px;
      height: 22px;
  }

  .cookie-switch input {
      opacity: 0;
      width: 0;
      height: 0;
  }

  .cookie-slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ccc;
      transition: .2s;
      border-radius: 22px;
  }

  .cookie-slider:before {
      position: absolute;
      content: "";
      height: 16px;
      width: 16px;
      left: 3px;
      bottom: 3px;
      background-color: white;
      transition: .2s;
      border-radius: 50%;
  }

  .cookie-switch input:checked+.cookie-slider {
      background-color: #1e88e5;
  }

  .cookie-switch input:checked+.cookie-slider:before {
      transform: translateX(18px);
  }

  .cookie-banner-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.8rem;
      justify-content: flex-end;
  }

  .cookie-btn {
      font-size: 0.85rem;
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      cursor: pointer;
      border: none;
  }

  .btn-primary {
      background: #1e88e5;
      color: #ffffff;
      border: none;
  }

  .btn-primary:hover {
      background: #1565c0;
  }

  .btn-outline {
      border: 1px solid #ccc;
      background: #ffffff;
      color: #444;
  }

  .btn-outline:hover {
      background: #f3f4f8;
  }

  .cookie-banner-link {
      margin: 0.6rem 0 0;
      font-size: 0.78rem;
      color: #666;
      text-align: right;
  }

  .cookie-banner-link a {
      color: #1e88e5;
      text-decoration: underline;
  }

  @media (min-width: 768px) {
      .cookie-banner-main {
          flex-direction: row;
          align-items: flex-start;
          justify-content: space-between;
      }

      .cookie-banner-main p {
          max-width: 65%;
      }

      .cookie-banner-actions {
          justify-content: flex-end;
      }
  }

  .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;
  }