  :root {
      --primary: #4f46f5;
      --bg: #ffffff;
      --text: #111827;
      --border: #e5e7eb;
  }

  body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #f3f4f6;
      min-height: 100vh;
  }



  .cookie-banner {
      position: fixed;
      left: 1rem;
      right: 1rem;
      bottom: 1rem;
      z-index: 50;
      background: var(--bg);
      color: var(--text);
      border-radius: 1rem;
      border: 1px solid var(--border);
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
      max-width: 900px;
      margin: 0 auto;
      display: none;
  }

  .cookie-banner__content {
      padding: 1.25rem 1.5rem 1rem;
  }

  .cookie-banner__title {
      margin: 0 0 0.35rem;
      font-size: 1rem;
      font-weight: 700;
      color: var(--primary);
  }

  .cookie-banner__text {
      margin: 0 0 0.75rem;
      font-size: 0.9rem;
      line-height: 1.4;
  }

  .cookie-banner__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      align-items: center;
      margin-bottom: 0.5rem;
  }

  .cookie-banner__link {
      font-size: 0.8rem;
      text-decoration: underline;
      color: var(--primary);
  }



  .age-gate {
      position: fixed;
      inset: 0;
      z-index: 60;
      background: rgba(15, 23, 42, 0.75);
      display: none;
      align-items: center;
      justify-content: center;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .age-gate__dialog {
      background: var(--bg);
      color: var(--text);
      border-radius: 1.25rem;
      padding: 2rem 2.25rem;
      max-width: 420px;
      width: 90%;
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.4);
      text-align: center;
      border-top: 4px solid var(--primary);
  }

  .age-gate__title {
      margin: 0 0 0.75rem;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--primary);
  }

  .age-gate__text {
      margin: 0 0 1.25rem;
      font-size: 0.95rem;
      line-height: 1.5;
  }

  .age-gate__actions {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-bottom: 0.75rem;
  }

  .age-gate__note {
      margin: 0;
      font-size: 0.8rem;
      opacity: 0.8;
  }



  .cookie-settings-modal {
      position: fixed;
      inset: 0;
      z-index: 70;
      display: none;
      align-items: center;
      justify-content: center;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .cookie-settings-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(15, 23, 42, 0.55);
  }

  .cookie-settings-modal__dialog {
      position: relative;
      background: #ffffff;
      color: #111827;
      border-radius: 1.25rem;
      padding: 1.75rem 1.75rem 1.25rem;
      max-width: 480px;
      width: 90%;
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
      border-top: 4px solid #4f46f5;
  }

  .cookie-settings-modal__title {
      margin: 0 0 0.75rem;
      font-size: 1.2rem;
      font-weight: 700;
      color: #4f46f5;
  }

  .cookie-settings-modal__text {
      margin: 0 0 1rem;
      font-size: 0.9rem;
      line-height: 1.5;
  }

  .cookie-settings-modal__group {
      border-radius: 0.9rem;
      border: 1px solid #e5e7eb;
      padding: 0.75rem 0.9rem;
      margin-bottom: 0.6rem;
      background: #f9fafb;
  }

  .cookie-settings-modal__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
  }

  .cookie-settings-modal__label {
      font-size: 0.9rem;
      font-weight: 600;
  }

  .cookie-settings-modal__description {
      font-size: 0.8rem;
      opacity: 0.8;
  }

  .cookie-settings-modal__badge {
      font-size: 0.75rem;
      border-radius: 999px;
      padding: 0.15rem 0.6rem;
      background: #eef2ff;
      color: #4f46f5;
      font-weight: 600;
  }

  .cookie-settings-modal__checkbox {
      width: 1.1rem;
      height: 1.1rem;
  }

  .cookie-settings-modal__actions {
      margin-top: 0.9rem;
      display: flex;
      justify-content: flex-end;
      gap: 0.5rem;
  }



  .btn {
      border-radius: 999px;
      padding: 0.55rem 1.3rem;
      font-size: 0.9rem;
      font-weight: 600;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.1s ease, color 0.1s ease;
      white-space: nowrap;
  }

  .btn-primary {
      background: var(--primary);
      color: #ffffff;
      box-shadow: 0 8px 16px rgba(79, 70, 245, 0.4);
  }

  .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(79, 70, 245, 0.5);
  }

  .btn-secondary {
      background: #f9fafb;
      color: var(--primary);
      border-color: #e5e7eb;
  }

  .btn-secondary:hover {
      background: #eef2ff;
  }

  .btn-outline {
      background: transparent;
      color: var(--primary);
      border-color: var(--primary);
  }

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

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