  :root {
      --bg-body: #0a0b10;
      --bg-section: #0f1219;
      --bg-card: rgba(30, 35, 45, 0.6);
      --bg-glass: rgba(255, 255, 255, 0.03);

      --primary: #ffcc00;
      --primary-gradient: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
      --secondary: #7209b7;

      --text-main: #ffffff;
      --text-muted: #b0b3b8;

      --border-color: rgba(255, 255, 255, 0.08);
      --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
      --glow: 0 0 20px rgba(255, 204, 0, 0.15);

      --nav-height: 80px;
      --font-head: 'Poppins', sans-serif;
      --font-body: 'Inter', sans-serif;
  }


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

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: var(--font-body);
      background-color: var(--bg-body);
      color: var(--text-main);
      line-height: 1.7;
      overflow-x: hidden;
  }


  ::-webkit-scrollbar {
      width: 10px;
  }

  ::-webkit-scrollbar-track {
      background: var(--bg-body);
  }

  ::-webkit-scrollbar-thumb {
      background: #333;
      border-radius: 5px;
  }

  ::-webkit-scrollbar-thumb:hover {
      background: var(--primary);
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: var(--font-head);
      color: #fff;
      line-height: 1.2;
  }

  a {
      text-decoration: none;
      color: inherit;
      transition: 0.3s ease;
  }

  ul {
      list-style: none;
  }

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


  .container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .section {
      padding: 100px 0;
      position: relative;
      z-index: 1;
  }

  .section:nth-child(even) {
      background-color: var(--bg-section);
  }


  .section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      pointer-events: none;
      z-index: -1;
  }

  .text-primary {
      color: var(--primary);
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }


  .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 35px;
      background: var(--primary-gradient);
      color: #000;
      font-weight: 700;
      font-family: var(--font-head);
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      font-size: 0.95rem;
      position: relative;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
      transition: transform 0.3s, box-shadow 0.3s;
  }

  .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(255, 204, 0, 0.5);
      color: #000;
  }

  .btn-outline {
      background: transparent;
      color: #fff;
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  }

  .btn-outline:hover {
      background: #fff;
      color: #000;
      box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
  }


  .section-header {
      text-align: center;
      margin-bottom: 70px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
  }

  .section-header h2 {
      font-size: 2.8rem;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
  }

  .section-header p {
      font-size: 1.15rem;
      color: var(--text-muted);
  }


  .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--nav-height);
      z-index: 1000;
      transition: 0.4s;
      background: rgba(10, 11, 16, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 100%;
  }

  .logo {
      font-family: var(--font-head);
      font-size: 1.6rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.5px;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .logo i {
      color: var(--primary);
      filter: drop-shadow(0 0 5px var(--primary));
  }

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

  .nav-menu {
      display: flex;
      gap: 30px;
  }

  .nav-link {
      font-size: 0.95rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.7);
      position: relative;
      padding: 5px 0;
  }

  .nav-link:hover,
  .nav-link.active {
      color: #fff;
  }

  .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: 0.3s;
      box-shadow: 0 0 10px var(--primary);
  }

  .nav-link.active::after {
      width: 100%;
  }

  .hamburger {
      display: none;
      color: #fff;
      font-size: 1.5rem;
      cursor: pointer;
  }


  .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: linear-gradient(to bottom, rgba(10, 11, 16, 0.5), var(--bg-body)),
          url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?q=80&w=2070&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      padding-top: var(--nav-height);
      position: relative;
  }

  .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
  }

  .hero-content h1 {
      font-size: 4rem;
      font-weight: 800;
      margin-bottom: 25px;
      text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      letter-spacing: -1px;
  }

  .hero-content p {
      font-size: 1.3rem;
      color: #e0e0e0;
      margin-bottom: 45px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
  }

  .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 60px;
  }

  .hero-features {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
  }

  .hero-feat {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, 0.05);
      padding: 10px 20px;
      border-radius: 30px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(5px);
      font-size: 0.9rem;
      font-weight: 600;
  }

  .hero-feat i {
      color: var(--primary);
  }


  .card-glass {
      background: var(--bg-card);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 35px;
      transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .card-glass:hover {
      transform: translateY(-10px);
      border-color: rgba(255, 204, 0, 0.3);
      box-shadow: var(--shadow-card), var(--glow);
      background: rgba(35, 40, 55, 0.8);
  }


  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
  }

  .service-icon {
      width: 60px;
      height: 60px;
      background: rgba(255, 204, 0, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--primary);
      margin-bottom: 25px;
      transition: 0.3s;
  }

  .card-glass:hover .service-icon {
      background: var(--primary);
      color: #000;
  }


  .steps-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
  }

  .step-item {
      position: relative;
      padding: 30px;
      border-left: 1px solid rgba(255, 255, 255, 0.1);
      background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
  }

  .step-number {
      font-family: var(--font-head);
      font-size: 4rem;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.03);
      position: absolute;
      top: 0;
      right: 20px;
      line-height: 1;
  }

  .step-item h3 {
      margin-bottom: 15px;
      color: var(--primary);
  }


  .top-casinos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 35px;
  }

  .casino-card {
      background: #151922;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      transition: 0.4s;
      position: relative;
      display: flex;
      flex-direction: column;
  }

  .casino-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--glow);
      border-color: var(--primary);
  }

  .casino-header {
      background: #ffffff;
      padding: 25px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .casino-header img {
      height: 100%;
      max-height: 80px;
      margin-bottom: 20px;
  }

  .rating-badge {
      background: rgba(255, 204, 0, 0.15);
      color: var(--primary);
      padding: 6px 14px;
      border-radius: 20px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 5px;
  }

  .casino-body {
      padding: 30px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
  }

  .bonus-list {
      margin-bottom: 30px;
      flex-grow: 1;
  }

  .bonus-list li {
      margin-bottom: 12px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.95rem;
      color: #d1d5db;
  }

  .bonus-list li i {
      color: #2ecc71;
      margin-top: 4px;
  }

  .terms-text {
      font-size: 0.75rem;
      color: #666;
      text-align: center;
      margin-top: 15px;
  }


  .games-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
  }

  .game-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 30px 10px;
      text-align: center;
      cursor: pointer;
      transition: 0.3s;
  }

  .game-card:hover {
      background: rgba(255, 204, 0, 0.1);
      border-color: var(--primary);
  }

  .game-card i {
      font-size: 2.2rem;
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 15px;
      display: inline-block;
      transition: 0.3s;
  }

  .game-card:hover i {
      transform: scale(1.1);
  }

  .game-card h4 {
      font-size: 1rem;
      font-weight: 600;
  }


  .safety-badge {
      font-size: 3.5rem;
      color: #ff4d4d;
      border: 3px solid #ff4d4d;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      margin: 0 auto 40px;
      box-shadow: 0 0 30px rgba(255, 77, 77, 0.2);
  }

  .safety-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
      max-width: 600px;
      margin: 0 auto;
  }


  .accordion-item {
      background: #151922;
      border: 1px solid var(--border-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
  }

  .accordion-header {
      width: 100%;
      padding: 25px;
      background: transparent;
      border: none;
      color: #fff;
      text-align: left;
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 1.05rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: 0.3s;
  }

  .accordion-header:hover {
      background: rgba(255, 255, 255, 0.02);
  }

  .accordion-header i {
      transition: transform 0.3s;
      color: var(--primary);
  }

  .accordion-header.active i {
      transform: rotate(180deg);
  }

  .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
      background: rgba(0, 0, 0, 0.2);
  }

  .accordion-content {
      padding: 25px;
      color: var(--text-muted);
      border-top: 1px solid rgba(255, 255, 255, 0.05);
  }


  .form-control {
      width: 100%;
      padding: 15px;
      background: rgba(0, 0, 0, 0.3);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      color: #fff;
      font-family: var(--font-body);
      transition: 0.3s;
  }

  .form-control:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 10px rgba(255, 204, 0, 0.1);
  }

  .sr-footer {
      background: #0b1017;
      color: #f4f4f4;
      font-size: 14px;
      line-height: 1.6;
      padding: 40px 20px 24px;
  }

  .sr-footer a {
      color: #f3cf55;
      text-decoration: none;
  }

  .sr-footer a:hover {
      text-decoration: underline;
  }

  .sr-footer-inner {
      max-width: 1200px;
      margin: 0 auto;
  }

  .sr-footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 32px;
  }

  .sr-footer-brand {
      max-width: 520px;
  }

  .sr-footer-logo {
      display: inline-block;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 8px;
  }

  .sr-footer-brand-text {
      margin: 0;
      opacity: 0.9;
  }

  .sr-footer-badges {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
  }

  .sr-badge {
      min-height: 52px;
      border-radius: 999px;
      border: 1px solid rgba(243, 207, 85, 0.4);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(5, 8, 15, 0.7);
  }

  .sr-badge img {
      height: 60px;
      display: block;
  }

  .sr-badge-18 {
      background: #c0392b;
      border-color: #c0392b;
      color: #ffffff;
      font-weight: 700;
      font-size: 18px;
  }



  .sr-footer-columns {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
      padding-top: 12px;
      padding-bottom: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .sr-footer-col h4 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 8px;
  }

  .sr-footer-col p {
      margin: 0 0 8px;
      opacity: 0.9;
  }

  .sr-footer-nav {
      list-style: none;
      margin: 0;
      padding: 0;
  }

  .sr-footer-nav li {
      margin-bottom: 6px;
  }

  .sr-footer-nav a {
      font-size: 14px;
  }



  .sr-footer-bottom {
      margin-top: 18px;
  }

  .sr-footer-disclaimer {
      margin: 0 0 10px;
      font-size: 13px;
      opacity: 0.9;
  }

  .sr-footer-copy {
      margin: 0 0 6px;
      font-size: 13px;
      opacity: 0.85;
  }

  .sr-footer-en {
      margin: 0;
      font-size: 12px;
      opacity: 0.75;
  }



  @media (max-width: 992px) {
      .sr-footer-columns {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
  }

  @media (max-width: 640px) {
      .sr-footer-top {
          flex-direction: column;
      }

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

      .sr-footer {
          padding: 28px 16px 20px;
      }
  }



  @media (max-width: 992px) {
      .hero-content h1 {
          font-size: 3rem;
      }

      .games-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .nav-menu {
          display: none;
      }

      .hamburger {
          display: block;
      }


      .nav-menu.active {
          display: flex;
          flex-direction: column;
          position: absolute;
          top: var(--nav-height);
          left: 0;
          width: 100%;
          background: #151922;
          padding: 30px;
          border-bottom: 2px solid var(--primary);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      }

      .contact-container {
          grid-template-columns: 1fr;
      }
  }

  @media (max-width: 576px) {
      .hero-content h1 {
          font-size: 2.4rem;
      }

      .section-header h2 {
          font-size: 2rem;
      }

      .hero-buttons {
          flex-direction: column;
          width: 100%;
      }

      .btn {
          width: 100%;
      }
  }

  .page {
      padding: 80px 0;
  }

  .page h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
  }

  .page h2 {
      font-size: 1.5rem;
      color: var(--primary);
      margin-top: 40px;
      border-bottom: 1px solid var(--border-color);
      padding-bottom: 10px;
  }

  .page h3 {
      font-size: 1.2rem;
      margin-top: 25px;
  }

  .page p,
  .page li {
      color: var(--text-muted);
      margin-bottom: 15px;
      font-size: 1rem;
  }

  .page ul {
      list-style: disc;
      padding-left: 20px;
      margin-bottom: 20px;
  }

  .page a {
      color: var(--primary);
      text-decoration: none;
      transition: 0.3s;
  }

  .page a:hover {
      text-decoration: underline;
  }


  .policy-content {
      background: var(--bg-card);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 50px;
      margin: 50px 0;
  }


  @media (max-width: 768px) {
      .page .policy-content {
          padding: 25px;
          margin: 20px 0;
      }

      .page h1 {
          font-size: 2rem;
      }
  }

  .page .terms-content {
      background: var(--bg-card);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 60px;
      margin: 60px 0;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  }

  .page .alert-box {
      background: rgba(255, 77, 77, 0.1);
      border: 1px solid #ff4d4d;
      padding: 20px;
      border-radius: 8px;
      margin-bottom: 30px;
  }

  .page .alert-box p {
      color: #ffcccc;
      margin-bottom: 0;
      text-align: left;
  }

  @media (max-width: 768px) {
      .page .terms-content {
          padding: 30px;
          margin: 30px 0;
      }

  }

  .page .cookie-table-wrapper {
      overflow-x: auto;
      margin: 30px 0;
      border-radius: 8px;
      border: 1px solid var(--border-color);
  }

  .page table {
      width: 100%;
      border-collapse: collapse;
      background: rgba(0, 0, 0, 0.2);
      min-width: 600px;
  }

  .page th {
      background: rgba(255, 204, 0, 0.1);
      color: var(--primary);
      text-align: left;
      padding: 15px;
      font-family: var(--font-head);
      border-bottom: 1px solid var(--border-color);
  }

  .page td {
      padding: 15px;
      border-bottom: 1px solid var(--border-color);
      color: var(--text-muted);
      vertical-align: top;
  }

  .page tr:last-child td {
      border-bottom: none;
  }

  .page .content-card {
      background: var(--bg-card);
      backdrop-filter: blur(10px);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 60px;
      margin: 60px 0;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  }

  @media (max-width: 768px) {
      .page .content-card {
          padding: 30px;
          margin: 30px 0;
      }
  }

  .page .help-box {
      background: linear-gradient(to right, rgba(255, 77, 77, 0.1), rgba(255, 77, 77, 0.05));
      border: 1px solid var(--danger);
      border-radius: 12px;
      padding: 30px;
      margin: 40px 0;
      text-align: center;
  }

  .page .help-box h3 {
      border: none;
      padding: 0;
      margin-top: 0;
      color: var(--danger);
      font-size: 1.5rem;
  }

  .page .help-box p {
      color: #ffcccc;
      text-align: center;
  }

  .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(15px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: 0.4s;
  }

  .modal-overlay.show {
      opacity: 1;
      visibility: visible;
  }

  .modal-content {
      background: #151922;
      border: 1px solid rgba(255, 204, 0, 0.3);
      border-radius: 16px;
      padding: 40px;
      max-width: 500px;
      width: 90%;
      text-align: center;
      box-shadow: 0 0 50px rgba(255, 204, 0, 0.1);
      transform: scale(0.9);
      transition: 0.4s;
  }

  .modal-overlay.show .modal-content {
      transform: scale(1);
  }

  .modal-icon {
      font-size: 3rem;
      color: #ffcc00;
      margin-bottom: 20px;
      animation: pulse 2s infinite;
  }

  .age-buttons {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 30px;
  }

  @keyframes pulse {
      0% {
          transform: scale(1);
          opacity: 1;
      }

      50% {
          transform: scale(1.1);
          opacity: 0.8;
      }

      100% {
          transform: scale(1);
          opacity: 1;
      }
  }

  .cookie-banner {
      position: fixed;
      bottom: -200px;
      left: 0;
      width: 100%;
      background: rgba(15, 18, 25, 0.95);
      backdrop-filter: blur(10px);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 20px;
      z-index: 9000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: bottom 0.5s ease-out;
      box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  }

  .cookie-banner.show {
      bottom: 0;
  }

  .cookie-text {
      display: flex;
      align-items: center;
      max-width: 60%;
  }

  .cookie-actions {
      display: flex;
      gap: 15px;
  }

  .settings-box {
      text-align: left;
      padding: 0;
      overflow: hidden;
  }

  .modal-header {
      padding: 20px 25px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255, 255, 255, 0.02);
  }

  .modal-body {
      padding: 25px;
  }

  .modal-footer {
      padding: 20px 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .close-icon {
      background: none;
      border: none;
      color: #fff;
      font-size: 1.2rem;
      cursor: pointer;
  }

  .close-icon:hover {
      color: var(--primary);
  }

  .cookie-option {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .cookie-option:last-child {
      border-bottom: none;
      margin-bottom: 0;
  }

  .option-info strong {
      display: block;
      color: #fff;
      margin-bottom: 4px;
  }

  .option-info small {
      color: #888;
      font-size: 0.8rem;
  }

  .toggle-switch {
      position: relative;
      width: 50px;
      height: 26px;
  }

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

  .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #333;
      transition: .4s;
      border-radius: 34px;
  }

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

  input:checked+.slider {
      background-color: var(--primary);
  }

  input:checked+.slider:before {
      transform: translateX(24px);
  }

  .toggle-switch.disabled .slider {
      opacity: 0.5;
      cursor: not-allowed;
  }

  @media (max-width: 768px) {
      .cookie-banner {
          flex-direction: column;
          text-align: center;
          gap: 20px;
      }

      .cookie-text {
          max-width: 100%;
          flex-direction: column;
      }

      .cookie-text i {
          margin-bottom: 10px;
          margin-right: 0;
      }

      .cookie-actions {
          width: 100%;
          justify-content: center;
      }
  }