  /* ====== GLOBAL VARIABLES & RESET ====== */
  :root {
      --color-yellow-neon: #FFD24A;
      --color-pink-neon: #FF4DE1;
      --color-blue-neon: #61C7FF;
      --color-red-neon: #FF5E5E;
      --color-green-neon: #39FF14;
      --color-purple-neon: #D42FF5;
      --color-text-light: #F2F4F7;
      --color-text-dark: #CCCCCC;
      --color-text-ultra-dark: #999;
      --color-background: #0D0D0D;
      --color-surface: #1A1A1A;
      --color-surface-light: #252525;
      --color-border: #333333;
      --font-family-main: 'Montserrat', system-ui, sans-serif;
      --section-padding: clamp(90px, 14vh, 140px);
      --container-width: 1180px;
  }

  *,
  *::before,
  *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
  }

  body {
      background-color: #0d0d0d;
      color: var(--color-text-light);
      font-family: var(--font-family-main);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      word-wrap: break-word;
  }

  .container {
      max-width: var(--container-width);
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
  }

  section {
      padding-top: var(--section-padding);
      padding-bottom: var(--section-padding);
      overflow: hidden;
      position: relative;
      border-bottom: 1px solid var(--color-border);
  }

  section:last-of-type {
      border-bottom: none;
  }

  p {
      color: var(--color-text-dark);
      max-width: 880px;
      font-size: 1.05rem;
      margin-bottom: 1rem;
  }

  /* ====== HEADER & NAVIGATION ====== */
  :root {
      --neon-yellow: #FFDD00;
      --neon-pink: #FF4DE1;
      --dark-bg-color: #0D0D0D;
  }

  .font-weight-700 {
      font-weight: 700;
  }

  .font-weight-900 {
      font-weight: 900;
  }

  .app-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 2000;
      padding: 1.2rem 0;
      background-color: rgba(13, 13, 13, 0.88);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      border-bottom: 3px solid var(--neon-yellow);
      box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
  }

  .app-header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  .app-logo .logo-text {
      font-size: 2.2rem;
      color: var(--neon-yellow);
      -webkit-text-stroke: 0.5px var(--dark-bg-color);
      text-shadow: 0 0 5px var(--neon-yellow), 0 0 15px rgba(255, 255, 0, 0.4);
      text-decoration: none;
  }

  .nav-links-desktop {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0;
      gap: 1.5rem;
  }

  .nav-link {
      color: #F0F0F0;
      text-decoration: none;
      font-size: 0.95rem;
      padding: 0.5rem 0;
      transition: color 0.3s, text-shadow 0.3s;
  }

  .nav-link:hover {
      color: var(--neon-pink);
      text-shadow: 0 0 12px var(--neon-pink);
  }

  .cta-button-style {
      border: 3px solid var(--neon-yellow);
      padding: 0.6rem 1.2rem;
      border-radius: 0;
      background-color: transparent;
      transition: background-color 0.3s, box-shadow 0.3s;
      font-size: 0.95rem;
  }

  .cta-button-style:hover {
      background-color: rgba(255, 255, 0, 0.15);
      box-shadow: 0 0 20px var(--neon-yellow);
  }

  .mobile-menu-overlay,
  .menu-trigger-btn {
      display: none;
  }

  /* ====== HERO SECTION ====== */
  .hero {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      text-align: center;
      position: relative;
      background-color: #000;
      padding-bottom: 0;
  }

  #hero-svg-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.8;
  }

  .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle, rgba(13, 13, 13, 0.39) 0%, var(--color-background) 75%);
      z-index: 1;
  }

  .hero-content {
      z-index: 2;
      position: relative;
      padding-bottom: 5vh;
  }

  .hero-logo1 {
      display: block;
      margin: 0 auto;
      width: 500px;
      max-width: 90%;
      height: auto;
      transition: transform 0.3s ease, width 0.3s ease;
  }

  .hero-logo1.enlarge,
  .hero-logo1:hover {
      transform: scale(1.5);
  }

  .hero h1 {
      font-size: clamp(4rem, 7.5vw, 5.5rem);
      color: transparent;
      -webkit-text-stroke: 1.5px var(--color-text-light);
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  }

  .hero h1 .highlight-yellow {
      color: var(--color-yellow-neon);
      text-shadow: 0 0 4px var(--color-yellow-neon), 1px 1px 12px var(--color-yellow-neon), 0 0 15px var(--color-purple-neon);
      animation: neon-ficker-slow 3s infinite alternate;
  }

  @keyframes neon-ficker-slow {

      0%,
      100% {
          opacity: 1;
          text-shadow: 0 0 4px var(--color-yellow-neon), 1px 1px 12px var(--color-yellow-neon), 0 0 15px var(--color-purple-neon);
      }

      50% {
          opacity: 0.98;
          text-shadow: 0 0 3px var(--color-yellow-neon), 0 0 10px var(--color-yellow-neon), 0 0 13px var(--color-purple-neon);
      }
  }

  .hero p {
      font-size: clamp(1.1rem, 2.5vw, 1.3rem);
      max-width: 650px;
      margin: 2rem auto 3rem;
      color: var(--color-text-light);
      text-shadow: 1px 1px 5px #000;
      padding: 25px;
  }

  /* ====== VIDEO SECTION ====== */
  .video-container {
      max-width: 950px;
      margin: 0 auto;
      position: relative;
      height: 0;
      padding-bottom: 56.25%;
      background-color: #000;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 0 30px rgba(255, 77, 225, 0.5);
      border: 3px solid var(--color-pink-neon);
      transform: scale(1);
      transition: transform 0.4s ease;
  }

  .video-container:hover {
      transform: scale(1.03);
  }

  .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
  }

  /* ====== WHY FANTOMANIA SECTION ====== */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      line-height: 1.2;
      font-weight: 900;
      letter-spacing: -0.5px;
  }

  .crystal-neon-pink {
      color: var(--color-pink-neon);
      -webkit-text-stroke: 1.5px rgba(255, 77, 225, 0.5);
      text-shadow: 0 0 10px var(--color-pink-neon), 0 0 20px var(--color-pink-neon), 0 0 30px #000;
  }

  h2 {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      text-align: center;
      margin-bottom: 4.5rem;
      color: var(--color-text-light);
      -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
      text-shadow: 0 0 2px transparent, 0 0 15px var(--color-pink-neon), 0 0 25px var(--color-pink-neon), 0 0 45px rgba(13, 13, 13, 0.8);
      font-size: clamp(4rem, 7.5vw, 4.5rem);
      color: transparent;
      -webkit-text-stroke: 1.5px var(--color-text-light);
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  }

  h2 .highlight-pink,
  h3 .highlight-pink {
      color: var(--color-pink-neon) !important;
      text-shadow: none !important;
  }

  h3 {
      font-size: clamp(1.6rem, 3.2vw, 2rem);
      color: var(--color-yellow-neon);
      -webkit-text-stroke: 0.5px rgba(255, 210, 74, 0.2);
      text-shadow: none;
      margin-bottom: 1.5rem;
  }

  /* ====== WHAT'S INSIDE SECTION ====== */
  .box-content-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem 4.5rem;
  }

  @media(min-width: 768px) {
      .box-content-grid {
          grid-template-columns: 1fr 1fr;
      }
  }

  .box-content-grid ul {
      list-style: none;
      padding-left: 0;
  }

  .box-content-grid li {
      padding: 1.2rem;
      margin-bottom: 0.8rem;
      background: rgba(255, 255, 255, 0.04);
      border-left: 4px solid var(--color-yellow-neon);
      border-radius: 0 10px 10px 0;
      transition: background-color 0.3s, transform 0.3s;
  }

  .box-content-grid li:hover {
      background-color: rgba(255, 210, 74, 0.1);
      transform: translateX(10px);
  }

  /* ====== LEVELS & TYPES SECTION ====== */
  .text-center {
      text-align: center;
  }

  .container h2 {
      margin-bottom: 3rem;
      font-size: clamp(2rem, 5vw, 3.5rem);
  }

  .levels-grid {
      display: grid;
      justify-content: center;
      grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
      gap: 40px;
      margin: 0 auto;
  }

  .level-card {
      border-radius: 16px;
      padding: 30px;
      border: 3px solid;
      transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
      background: var(--color-surface);
      position: relative;
      overflow: hidden;
      text-align: center;
  }

  .level-card:hover {
      transform: translateY(-5px) scale(1.02);
  }

  .level-card h3 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
  }

  .level-card p {
      margin-top: 15px;
      font-size: 1rem;
  }

  .level-card__tag {
      display: inline-block;
      padding: 5px 12px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 0.8rem;
      text-transform: uppercase;
      text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  }

  .level-card--green {
      border-color: var(--color-green-neon);
      box-shadow: 0 0 10px #39FF1444;
  }

  .level-card--green:hover {
      box-shadow: 0 0 25px var(--color-green-neon);
  }

  .level-card--green h3 {
      color: var(--color-green-neon);
      text-shadow: 0 0 3px #39FF14;
  }

  .level-card--green .level-card__tag {
      background: var(--color-green-neon);
  }

  .level-card--yellow {
      border-color: var(--color-yellow-neon);
      box-shadow: 0 0 10px var(--color-yellow-neon);
  }

  .level-card--yellow:hover {
      box-shadow: 0 0 25px var(--color-yellow-neon);
  }

  .level-card--yellow h3 {
      color: var(--color-yellow-neon);
      text-shadow: 0 0 3px var(--color-yellow-neon);
  }

  .level-card--yellow .level-card__tag {
      background: var(--color-yellow-neon);
  }

  .level-card--red {
      border-color: var(--color-red-neon);
      box-shadow: 0 0 10px var(--color-red-neon);
  }

  .level-card--red:hover {
      box-shadow: 0 0 25px var(--color-red-neon);
  }

  .level-card--red h3 {
      color: var(--color-red-neon);
      text-shadow: 0 0 3px #fff, 0 0 8px var(--color-red-neon);
  }

  .level-card--red .level-card__tag {
      background: var(--color-red-neon);
      color: var(--color-text-light);
  }

  @media (max-width: 768px) {
      #levels-and-types {
          padding: 60px 0;
      }

      .levels-grid {
          gap: 25px;
      }

      .level-card {
          padding: 25px;
      }
  }

  /* ====== HOW TO PLAY SECTION ====== */
  .card-grid {
      display: grid;
      gap: 35px;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .card {
      background: var(--color-surface);
      padding: 2.2rem;
      border-radius: 18px;
      text-align: center;
      border: 1px solid var(--color-border);
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.8);
      border-color: var(--color-pink-neon);
  }

  .card h3 {
      margin-bottom: 1rem;
      font-size: 1.4rem;
      color: var(--color-blue-neon);
      text-shadow: none;
  }

  /* ====== BOARD DETAILS SECTION ====== */
  .sectors-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
  }

  @media(min-width: 992px) {
      .sectors-grid {
          grid-template-columns: 1fr 1fr;
      }
  }

  .sectors-column h3 {
      text-align: center;
      margin-bottom: 2.5rem;
      font-size: 2rem;
      color: var(--color-purple-neon);
      text-shadow: 0 0 15px var(--color-purple-neon);
  }

  .sector-card {
      background-color: var(--color-surface);
      border-radius: 15px;
      padding: 1.8rem;
      display: flex;
      align-items: center;
      gap: 1.8rem;
      margin-bottom: 1.8rem;
      border: 1px solid var(--color-border);
      transition: all 0.3s ease;
  }

  .sector-card:hover {
      border-left: 5px solid var(--color-pink-neon);
      transform: translateX(5px);
      background-color: var(--color-surface-light);
  }

  .sector-card__icon {
      flex-shrink: 0;
      width: 55px;
      height: 55px;
      color: var(--color-pink-neon);
      filter: drop-shadow(0 0 10px var(--color-pink-neon));
  }

  .sector-card h4 {
      font-size: 1.3rem;
      color: var(--color-text-light);
      margin-bottom: 0.3rem;
      text-shadow: none;
  }

  .sector-card p {
      font-size: 0.95rem;
      color: var(--color-text-dark);
      max-width: none;
      line-height: 1.5;
  }

  /* ====== TESTIMONIALS SECTION ====== */
  .testimonial-card {
      background: linear-gradient(145deg, var(--color-surface), #222);
      padding: 2rem;
      border-radius: 15px;
      border-left: 5px solid var(--color-blue-neon);
      box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
  }

  .testimonial-card__author {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: 1.5rem;
  }

  .testimonial-card__author img {
      width: 50px;
      height: 70px;
      border-radius: 50%;
      border: 2px solid var(--color-blue-neon);
  }

  .testimonial-card__author h4 {
      margin: 0;
      color: var(--color-text-light);
  }

  /* ====== FAQ SECTION ====== */
  .faq-item {
      background: var(--color-surface);
      margin-bottom: 1.2rem;
      border-radius: 10px;
      border: 1px solid var(--color-border);
      transition: background-color 0.4s ease;
  }

  .faq-item.active {
      background-color: var(--color-surface-light);
  }

  .faq-question {
      padding: 1.2rem 1.8rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 700;
      font-size: 1.1rem;
  }

  .faq-question::after {
      content: '+';
      font-size: 2rem;
      color: var(--color-yellow-neon);
      transition: transform 0.4s ease;
  }

  .faq-item.active .faq-question::after {
      transform: rotate(45deg);
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.6s ease;
  }

  .faq-answer p {
      padding: 0 1.8rem 1.8rem;
      border-top: 1px solid #333;
      margin-top: 0;
      padding-top: 1.5rem;
      max-width: none;
  }

  .faq-item.active .faq-answer {
      max-height: 400px;
  }

  /* ====== BOOKING FORM SECTION ====== */
  .layout-wrapper {
      display: flex;
      gap: 3rem;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: wrap;
  }

  .left-share-block {
      flex: 1;
      min-width: 300px;
  }

  .right-form-block {
      flex: 1;
      min-width: 350px;
  }

  .share-title {
      font-size: 1.8rem;
      margin-bottom: 1rem;
  }

  .share-text {
      font-size: 1rem;
      margin-bottom: 2rem;
      color: var(--color-text-ultra-dark);
  }

  :root {
      --neon-white: #fff;
      --neon-yellow: #FFFF00;
      --highlight-pink: #FF4DE1;
  }

  .share-actions-section {
      padding: 60px 0;
  }

  .share-actions {
      text-align: center;
      margin: 0 auto;
      padding: 2rem 1rem;
      max-width: 900px;
  }

  .share-title {
      display: block;
      font-weight: 900;
      margin-bottom: 2rem;
      color: var(--neon-white);
      letter-spacing: 2px;
      font-size: clamp(1.2rem, 4vw, 1.8rem);
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.5);
  }

  .share-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
  }

  .share-btn {
      width: 60px;
      height: 60px;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      background: transparent;
      border-radius: 50%;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border: 2px solid var(--neon-white);
      color: var(--neon-white);
  }

  .share-icon-svg {
      width: 50%;
      height: 50%;
      stroke: currentColor;
      fill: none;
      filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
  }

  .share-btn--fb:hover {
      background: #3b5998;
      color: #fff;
      border-color: #3b5998;
      box-shadow: 0 0 15px #3b5998, 0 0 30px rgba(59, 89, 152, 0.7);
      transform: scale(1.1);
  }

  .share-btn--tg:hover {
      background: #0088cc;
      color: #fff;
      border-color: #0088cc;
      box-shadow: 0 0 15px #0088cc, 0 0 30px rgba(0, 136, 204, 0.7);
      transform: scale(1.1);
  }

  .share-btn--ig:hover {
      background: linear-gradient(45deg, #f09433, #e1306c, #833ab4);
      color: #fff;
      border-color: #e1306c;
      box-shadow: 0 0 15px #e1306c, 0 0 30px rgba(255, 77, 225, 0.7);
      transform: scale(1.1);
  }

  .share-btn--x:hover {
      background: #1DA1F2;
      color: #fff;
      border-color: #1DA1F2;
      box-shadow: 0 0 15px #1DA1F2, 0 0 30px rgba(29, 161, 242, 0.7);
      transform: scale(1.1);
  }

  @media (max-width: 640px) {
      .share-buttons {
          gap: 10px;
      }

      .share-btn {
          width: 48px;
          height: 48px;
      }

      .share-btn:hover {
          box-shadow: 0 0 8px currentColor;
          transform: scale(1.08);
      }
  }

  .form-container {
      max-width: 650px;
      margin: 0 auto;
      background: var(--color-surface);
      padding: clamp(2rem, 6vw, 3rem);
      border-radius: 20px;
      border: 1px solid var(--color-border);
      box-shadow: 0 0 30px rgba(97, 199, 255, 0.35);
  }

  .form-group {
      margin-bottom: 1.8rem;
  }

  .form-group label {
      display: block;
      margin-bottom: 10px;
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--color-text-dark);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
      width: 100%;
      padding: 15px;
      border-radius: 10px;
      border: 1px solid #444;
      background: #111;
      color: var(--color-text-light);
      font-size: 1.1rem;
      transition: border-color 0.3s, box-shadow 0.3s;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
      outline: none;
      border-color: var(--color-yellow-neon);
      box-shadow: 0 0 10px var(--color-yellow-neon);
  }

  #success-message {
      text-align: center;
      padding: 45px;
      border: 2px dashed var(--color-yellow-neon);
      border-radius: 15px;
      display: none;
      color: var(--color-yellow-neon);
  }



  /* ====== FOOTER ====== */
  .site-footer {
      padding: 3rem 0;
      background-color: #080808;
      border-top: 1px solid var(--color-border);
  }

  .site-footer .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .site-footer p {
      margin: 0 auto;
      color: #c7c4c4;
      font-size: 0.9rem;
  }

  .site-footer .logo {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      display: inline-block;
  }

  .soc-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
  }

  .soc-btn {
      width: 60px;
      height: 60px;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      background: transparent;
      border-radius: 70%;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border: 2px solid var(--neon-white);
      color: var(--neon-white);
  }

  .soc-icon-svg {
      width: 50%;
      height: 50%;
      stroke: currentColor;
      fill: none;
      filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
  }

  .soc-btn--ig:hover {
      background: linear-gradient(45deg, #f09433, #e1306c, #833ab4);
      color: #fff;
      border-color: #e1306c;
      box-shadow: 0 0 15px #e1306c, 0 0 30px rgba(255, 77, 225, 0.7);
      transform: scale(1.1);
  }

  .soc-btn--tt:hover {
      background: #000;
      color: #fff;
      border-color: #EE1D52;
      box-shadow: 0 0 15px #EE1D52, 0 0 30px #25F4EE;
      transform: scale(1.1);
  }

  @media (max-width: 640px) {
      .soc-buttons {
          gap: 10px;
      }

      .soc-btn {
          width: 48px;
          height: 48px;
      }

      .soc-btn:hover {
          box-shadow: 0 0 8px currentColor;
          transform: scale(1.08);
      }
  }

  footer p {
      margin: 0;
      font-size: 0.85rem;
      color: var(--neon-white, #fff);
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 255, 255, 0.2);
  }

  .highlight-pink-text {
      color: var(--highlight-pink, #FF4DE1);
      text-shadow: 0 0 8px rgba(255, 77, 225, 0.8), 0 0 15px rgba(255, 77, 225, 0.5);
  }

  @media (max-width: 600px) {
      footer p {
          font-size: 0.75rem;
          padding: 0 15px;
      }
  }

  .footer-policy-nav a {
      color: var(--color-text-accent);
      margin-left: 20px;
      margin-top: 45px;
  }

  /* ====== BUTTONS COMPONENTS ====== */
  .btn {
      display: inline-block;
      padding: 16px 38px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.05rem;
      transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
      cursor: pointer;
      border: none;
      letter-spacing: 0.5px;
      text-transform: uppercase;
  }

  .btn--primary {
      background-color: var(--color-yellow-neon);
      color: var(--color-background);
      animation: pulse-primary 2.5s infinite alternate;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .btn--primary:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 0 20px var(--color-yellow-neon), 0 0 40px var(--color-yellow-neon);
      animation-play-state: paused;
  }

  .btn--secondary {
      background: transparent;
      color: var(--color-blue-neon);
      border: 2px solid var(--color-blue-neon);
      box-shadow: 0 0 12px rgba(97, 199, 255, 0.6) inset, 0 0 12px rgba(97, 199, 255, 0.4);
  }

  .btn--secondary:hover {
      background-color: var(--color-blue-neon);
      color: var(--color-background);
      box-shadow: 0 0 18px var(--color-blue-neon), 0 0 35px var(--color-blue-neon);
  }

  @keyframes pulse-primary {
      0% {
          box-shadow: 0 0 12px var(--color-yellow-neon), 0 4px 15px rgba(0, 0, 0, 0.2);
      }

      100% {
          box-shadow: 0 0 28px var(--color-yellow-neon), 0 4px 15px rgba(0, 0, 0, 0.2);
      }
  }

  /* ====== ANIMATIONS ====== */
  .reveal {
      opacity: 0;
      transform: translateY(60px);
      transition: opacity 0.9s ease-out, transform 0.9s ease-out;
      will-change: opacity, transform;
  }

  .reveal.visible {
      opacity: 1;
      transform: translateY(0);
  }

  /* ====== MOBILE NAVIGATION ====== */
  @media (max-width: 992px) {
      #desktop-nav {
          display: none;
      }

      .menu-trigger-btn {
          display: block;
          background: none;
          border: none;
          cursor: pointer;
          padding: 10px 0;
          z-index: 2001;
      }

      .trigger-line {
          width: 28px;
          height: 3px;
          margin: 5px 0;
          background: var(--neon-yellow);
          box-shadow: 0 0 6px var(--neon-yellow);
          transition: all 0.3s ease-in-out;
          display: block;
      }

      .menu-trigger-btn.is-active .trigger-line:nth-child(1) {
          transform: translateY(8px) rotate(45deg);
      }

      .menu-trigger-btn.is-active .trigger-line:nth-child(2) {
          opacity: 0;
      }

      .menu-trigger-btn.is-active .trigger-line:nth-child(3) {
          transform: translateY(-8px) rotate(-45deg);
      }

      .menu-trigger-btn.is-active .trigger-line {
          background: var(--neon-pink) !important;
          box-shadow: 0 0 10px var(--neon-pink);
      }

      .mobile-menu-overlay {
          display: flex;
          position: fixed;
          top: 100px;
          left: 0;
          width: 100%;
          height: 70vh;
          background-color: #000000;
          justify-content: center;
          align-items: center;
          z-index: 1999;
          transform: translateX(100%);
          transition: transform 0.4s ease-in-out;
      }

      .mobile-menu-overlay.is-open {
          transform: translateX(0);
      }

      .nav-links-mobile {
          display: flex;
          flex-direction: column;
          list-style: none;
          padding: 0;
          margin: 0;
          text-align: center;
          gap: 2rem;
          padding-top: 5rem;
      }

      .nav-links-mobile .nav-link {
          font-size: 1.8rem;
          font-weight: 700;
          color: #FFF;
          text-shadow: 0 0 10px var(--neon-yellow);
          text-decoration: none;
      }

      .nav-links-mobile .cta-wrapper .nav-link {
          color: var(--neon-yellow);
          text-shadow: 0 0 15px var(--neon-yellow);
          font-size: 2rem;
      }

      body.menu-is-open {
          overflow: hidden;
          position: fixed;
          width: 100%;
      }
  }

  /* ====== SOCIAL ICONS ====== */
  .social-icons {
      display: flex;
      justify-content: center;
      gap: 25px;
      margin: 1.5rem 0;
  }

  .social-icons a {
      color: var(--color-pink-neon) !important;
      display: inline-block;
      transition: transform 0.3s ease, color 0.3s ease;
  }

  .social-icons svg {
      width: 30px !important;
      height: 30px !important;
      fill: currentColor !important;
      filter: drop-shadow(0 0 3px var(--color-pink-neon)) drop-shadow(0 0 8px rgba(255, 77, 225, 0.5));
      transition: all 0.3s ease;
  }

  .social-icons a:hover {
      color: var(--color-blue-neon) !important;
      transform: scale(1.15) translateY(-3px);
  }

  .social-icons a:hover svg {
      filter: drop-shadow(0 0 4px var(--color-blue-neon)) drop-shadow(0 0 10px rgba(97, 199, 255, 0.7));
  }

  /* ====== DESKTOP MENU ====== */
  .main-menu {
      list-style: none;
      display: flex;
      gap: 2rem;
  }

  /* ====== RESPONSIVE ADJUSTMENTS ====== */
  @media(max-width: 768px) {
      h2 {
          font-size: 2.2rem;
          margin-bottom: 3rem;
      }

      .btn {
          padding: 14px 30px;
          font-size: 1rem;
      }
  }

  @media (max-width: 992px) {
      .footer-policy-nav {
          margin-top: 45px;
      }

      .footer-policy-nav a {
          margin: 0 10px;
      }
  }










  /* ДОДАТКОВІ СТИЛІ ДЛЯ СТОРІНКИ КОНТАКТІВ */
  .contact-hero {

      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: linear-gradient(135deg, rgba(13, 13, 13, 0.9) 0%, rgba(26, 26, 26, 0.8) 100%);
      padding: 120px 20px 20px;
      position: relative;
      overflow: hidden;
  }

  .contact-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background:
          radial-gradient(circle at 20% 30%, rgba(255, 77, 225, 0.15) 0%, transparent 50%),
          radial-gradient(circle at 80% 70%, rgba(97, 199, 255, 0.15) 0%, transparent 50%);
      z-index: 0;
  }

  .contact-hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
  }

  .contact-hero h1 {
      font-size: clamp(3rem, 6vw, 4.5rem);
      color: transparent;
      -webkit-text-stroke: 1.5px var(--color-text-light);
      text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
      margin-bottom: 1.5rem;
  }

  .contact-hero h1 .highlight-pink {
      color: var(--color-pink-neon);
      -webkit-text-stroke: 0;
      text-shadow: 0 0 5px var(--color-pink-neon),
          0 0 10px var(--color-pink-neon),
          0 0 10px rgba(255, 77, 225, 0.2);
  }

  .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      padding: 4rem 0;
  }

  @media (min-width: 992px) {
      .contact-grid {
          grid-template-columns: 1fr 1fr;
      }
  }

  .contact-info-card {
      background: var(--color-surface);
      padding: 2.5rem;
      border-radius: 20px;
      border: 1px solid var(--color-border);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .contact-info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
      border-color: var(--color-pink-neon);
  }

  .contact-info-card h3 {
      color: var(--color-blue-neon);
      margin-bottom: 2rem;
      font-size: 1.8rem;
      text-shadow: 0 0 5px rgba(97, 199, 255, 0.3);
  }

  .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .contact-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
  }

  .contact-icon {
      width: 50px;
      height: 50px;
      background: rgba(255, 77, 225, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 1px solid var(--color-pink-neon);
      box-shadow: 0 0 10px rgba(255, 77, 225, 0.3);
  }

  .contact-icon svg {
      width: 24px;
      height: 24px;
      color: var(--color-pink-neon);
      filter: drop-shadow(0 0 5px var(--color-pink-neon));
  }

  .contact-details h4 {
      color: var(--color-text-light);
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
  }

  .contact-link {
      color: var(--color-yellow-neon);
      text-decoration: none;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      display: inline-block;
      text-shadow: 0 0 5px rgba(255, 210, 74, 0.3);
  }

  .contact-link:hover {
      color: var(--color-pink-neon);
      text-shadow: 0 0 10px var(--color-pink-neon);
      transform: translateX(5px);
  }

  .contact-text {
      color: var(--color-text-dark);
      line-height: 1.6;
      font-size: 1.05rem;
  }

  .map-container {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
      border: 2px solid var(--color-border);
      margin-top: 1rem;
  }

  .map-container iframe {
      width: 100%;
      height: 300px;
      border: none;
      filter: grayscale(20%) contrast(110%);
  }

  .working-hours {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hours-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 0.8rem;
      color: var(--color-text-dark);
  }

  .hours-item span:first-child {
      color: var(--color-text-light);
  }

  .contact-form-container {
      background: var(--color-surface);
      padding: 2.5rem;
      border-radius: 20px;
      border: 1px solid var(--color-border);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .contact-form-container h3 {
      color: var(--color-green-neon);
      margin-bottom: 2rem;
      font-size: 1.8rem;
      text-shadow: 0 0 5px rgba(57, 255, 20, 0.3);
  }

  .form-group {
      margin-bottom: 1.5rem;
  }



  .form-group textarea {
      min-height: 150px;
      resize: vertical;
  }

  .contact-btn {
      background: linear-gradient(135deg, var(--color-yellow-neon), var(--color-pink-neon));
      color: var(--color-background);
      border: none;
      padding: 16px 40px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.05rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-block;
      text-transform: uppercase;
      letter-spacing: 1px;
      width: 100%;
      margin-top: 1rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .contact-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      background: linear-gradient(135deg, var(--color-pink-neon), var(--color-yellow-neon));
  }

  .social-contact {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
      justify-content: center;
  }

  .social-contact a {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--color-surface-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-text-light);
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid var(--color-border);
  }

  .social-contact a:hover {
      background: var(--color-pink-neon);
      color: var(--color-background);
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(255, 77, 225, 0.3);
      border-color: var(--color-pink-neon);
  }

  .social-contact svg {
      width: 24px;
      height: 24px;
  }

  .success-message {
      background: rgba(57, 255, 20, 0.1);
      border: 1px solid var(--color-green-neon);
      border-radius: 10px;
      padding: 2rem;
      text-align: center;
      margin-top: 2rem;
      display: none;
  }

  .success-message h4 {
      color: var(--color-green-neon);
      margin-bottom: 1rem;
  }

  @media (max-width: 768px) {
      .contact-hero {

          min-height: 30vh;
      }

      .contact-grid {
          padding: 2rem 0;
      }

      .contact-info-card,
      .contact-form-container {
          padding: 1.5rem;
      }

      .contact-item {
          flex-direction: column;
          gap: 1rem;
      }

      .contact-icon {
          width: 40px;
          height: 40px;
      }

      .contact-icon svg {
          width: 20px;
          height: 20px;
      }
  }

  .section-title {
      text-align: center;
      margin-bottom: 3rem;
  }

  .section-title h2 {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      margin-bottom: 1rem;
  }

  .section-title p {
      color: var(--color-text-dark);
      max-width: 600px;
      margin: 0 auto;
      font-size: 1.1rem;
  }

  li {
      list-style-type: none;
  }




  /* ====== TERMS PAGE ADDITIONAL STYLES ====== */

  .terms-section .policy-content {
      max-width: 1000px;
  }

  .policy-links {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      justify-content: center;
      margin-top: 50px;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .policy-links .btn {
      padding: 12px 25px;
      font-size: 0.9rem;
  }

  /* Warning boxes */
  .warning-box {
      background: rgba(255, 94, 94, 0.1);
      border: 1px solid var(--color-red-neon);
      border-left: 4px solid var(--color-red-neon);
      padding: 20px;
      border-radius: 8px;
      margin: 20px 0;
  }

  .warning-box h4 {
      color: var(--color-red-neon);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.2rem;
  }

  .warning-box h4::before {
      content: "⚠️";
      font-size: 1.2rem;
  }

  .warning-box p {
      color: var(--color-text-light);
      margin-bottom: 10px;
  }

  /* Info boxes */
  .info-box {
      background: rgba(97, 199, 255, 0.1);
      border: 1px solid var(--color-blue-neon);
      border-left: 4px solid var(--color-blue-neon);
      padding: 20px;
      border-radius: 8px;
      margin: 20px 0;
  }

  .info-box h4 {
      color: var(--color-blue-neon);
      margin-bottom: 10px;
      font-size: 1.2rem;
  }

  /* Print styles */
  @media print {

      .policy-section::before,
      .policy-links,
      .warning-box::before,
      .info-box::before {
          display: none !important;
      }

      .policy-section {
          padding: 0 !important;
          background: white !important;
      }

      .policy-content {
          box-shadow: none !important;
          border: none !important;
          padding: 0 !important;
          background: white !important;
      }

      body {
          background: white !important;
          color: black !important;
      }

      .policy-block h2 {
          color: black !important;
          -webkit-text-stroke: 0 !important;
          text-shadow: none !important;
      }

      .policy-block h3 {
          color: #333 !important;
      }

      .policy-block p,
      .policy-list li {
          color: #333 !important;
      }

      .highlight-pink-text {
          color: #d42ff5 !important;
      }

      .contact-details a {
          color: #0066cc !important;
          text-decoration: underline !important;
      }

      .policy-update-info {
          background: #f5f5f5 !important;
          border-left-color: #ccc !important;
      }

      .warning-box,
      .info-box {
          background: #f5f5f5 !important;
          border-color: #ccc !important;
      }

      .warning-box h4,
      .info-box h4 {
          color: #333 !important;
      }
  }



  .policy-content {
      counter-reset: section;
  }

  /* Nested numbering for h3 */
  .policy-block h3 {
      counter-increment: subsection;
  }



  .policy-block {
      counter-reset: subsection;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
      .policy-links {
          flex-direction: column;
          align-items: center;
      }

      .policy-links .btn {
          width: 100%;
          max-width: 300px;
      }
  }

  /* Table of contents */
  .table-of-contents {
      background: rgba(255, 210, 74, 0.05);
      border: 1px solid rgba(255, 210, 74, 0.2);
      border-radius: 12px;
      padding: 25px;
      margin-bottom: 40px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .table-of-contents h3 {
      color: var(--color-yellow-neon);
      margin-bottom: 15px;
      font-size: 1.4rem;
      text-shadow: 0 0 5px rgba(255, 210, 74, 0.3);
  }

  .table-of-contents ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
      columns: 2;
      column-gap: 30px;
  }

  @media (max-width: 768px) {
      .table-of-contents ul {
          columns: 1;
      }
  }

  .table-of-contents li {
      margin-bottom: 10px;
      break-inside: avoid;
  }

  .table-of-contents a {
      color: var(--color-text-dark);
      text-decoration: none;
      transition: all 0.3s ease;
      display: block;
      padding: 8px 12px;
      border-radius: 6px;
      border-left: 3px solid transparent;
  }

  .table-of-contents a:hover {
      color: var(--color-pink-neon);
      background: rgba(255, 77, 225, 0.05);
      border-left-color: var(--color-pink-neon);
      padding-left: 15px;
  }

  /* ====== COOKIE POLICY SPECIFIC STYLES ====== */

  .cookie-section .policy-content {
      max-width: 1200px;
  }

  /* Cookie categories */
  .cookie-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 25px 0;
  }

  .cookie-category {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      padding: 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .cookie-category h4 {
      margin-bottom: 15px;
      color: var(--color-text-light);
  }

  /* Cookie badges */
  .cookie-badge {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-right: 10px;
  }

  .cookie-badge.essential {
      background: rgba(255, 94, 94, 0.2);
      color: var(--color-red-neon);
      border: 1px solid var(--color-red-neon);
  }

  .cookie-badge.functional {
      background: rgba(255, 210, 74, 0.2);
      color: var(--color-yellow-neon);
      border: 1px solid var(--color-yellow-neon);
  }

  .cookie-badge.analytics {
      background: rgba(97, 199, 255, 0.2);
      color: var(--color-blue-neon);
      border: 1px solid var(--color-blue-neon);
  }

  .cookie-badge.marketing {
      background: rgba(255, 77, 225, 0.2);
      color: var(--color-pink-neon);
      border: 1px solid var(--color-pink-neon);
  }

  /* Status badges */
  .badge-yes,
  .badge-no {
      display: inline-block;
      padding: 3px 8px;
      border-radius: 12px;
      font-size: 0.75rem;
      font-weight: 700;
      margin-left: 10px;
  }

  .badge-yes {
      background: rgba(57, 255, 20, 0.2);
      color: var(--color-green-neon);
      border: 1px solid var(--color-green-neon);
  }

  .badge-no {
      background: rgba(255, 94, 94, 0.2);
      color: var(--color-red-neon);
      border: 1px solid var(--color-red-neon);
  }

  /* Cookie table */
  .cookie-table-container {
      overflow-x: auto;
      margin: 25px 0;
      border-radius: 10px;
      border: 1px solid var(--color-border);
  }

  .cookie-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--color-surface);
  }

  .cookie-table th {
      background: rgba(255, 210, 74, 0.1);
      color: var(--color-yellow-neon);
      padding: 15px;
      text-align: left;
      font-weight: 700;
      border-bottom: 2px solid var(--color-yellow-neon);
  }

  .cookie-table td {
      padding: 12px 15px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--color-text-dark);
  }

  .cookie-table tr:hover {
      background: rgba(255, 255, 255, 0.05);
  }

  .cookie-table tr:last-child td {
      border-bottom: none;
  }

  /* Browser settings */
  .browser-settings {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
      margin: 20px 0;
  }

  .browser {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 15px;
      border-left: 3px solid var(--color-blue-neon);
  }

  .browser h4 {
      color: var(--color-blue-neon);
      margin-bottom: 8px;
      font-size: 1.1rem;
  }

  .browser p {
      font-size: 0.9rem;
      color: var(--color-text-dark);
      margin: 0;
  }

  /* Cookie settings widget */
  .cookie-settings-widget {
      background: rgba(255, 210, 74, 0.05);
      border: 1px solid rgba(255, 210, 74, 0.2);
      border-radius: 10px;
      padding: 25px;
      margin-top: 30px;
  }

  .cookie-settings-widget h4 {
      color: var(--color-yellow-neon);
      margin-bottom: 15px;
  }

  /* Consent types */
  .consent-types {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 25px 0;
  }

  .consent-type {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      padding: 20px;
  }

  .consent-type h4 {
      color: var(--color-text-light);
      margin-bottom: 10px;
      font-size: 1.1rem;
  }

  .consent-type p {
      font-size: 0.95rem;
      color: var(--color-text-dark);
      margin: 0;
  }

  /* Cookie banner styles */
  #cookie-consent-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(13, 13, 13, 0.95);
      backdrop-filter: blur(10px);
      border-top: 2px solid var(--color-yellow-neon);
      padding: 20px;
      z-index: 9999;
      box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
  }

  .cookie-banner-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
  }

  .cookie-banner-content p {
      color: var(--color-text-light);
      margin: 0;
      flex: 1;
  }

  .cookie-link {
      color: var(--color-yellow-neon);
      text-decoration: none;
      font-weight: 600;
  }

  .cookie-link:hover {
      text-decoration: underline;
  }

  .cookie-banner-buttons {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
  }

  .cookie-btn {
      padding: 10px 20px;
      border-radius: 5px;
      border: none;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: var(--font-family-main);
  }

  .cookie-btn.necessary {
      background: transparent;
      color: var(--color-text-light);
      border: 2px solid var(--color-border);
  }

  .cookie-btn.necessary:hover {
      background: rgba(255, 255, 255, 0.1);
  }

  .cookie-btn.accept-all {
      background: var(--color-yellow-neon);
      color: var(--color-background);
  }

  .cookie-btn.accept-all:hover {
      background: #ffd000;
      box-shadow: 0 0 15px var(--color-yellow-neon);
  }

  .cookie-btn.settings {
      background: var(--color-surface);
      color: var(--color-text-light);
      border: 2px solid var(--color-blue-neon);
  }

  .cookie-btn.settings:hover {
      background: rgba(97, 199, 255, 0.1);
  }

  /* Cookie settings modal */
  #cookie-settings-modal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(5px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 10000;
  }

  .cookie-modal-content {
      background: var(--color-surface);
      border-radius: 15px;
      padding: 30px;
      max-width: 600px;
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      border: 2px solid var(--color-yellow-neon);
      box-shadow: 0 0 30px rgba(255, 210, 74, 0.3);
  }

  .cookie-modal-content h3 {
      color: var(--color-yellow-neon);
      margin-bottom: 25px;
      text-align: center;
  }

  .cookie-settings-options {
      margin: 25px 0;
  }

  .cookie-option {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 15px;
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .cookie-option:last-child {
      margin-bottom: 0;
  }

  .cookie-option label {
      display: flex;
      align-items: center;
      color: var(--color-text-light);
      font-size: 1.1rem;
      margin-bottom: 10px;
      cursor: pointer;
  }

  .cookie-option input[type="checkbox"] {
      width: 20px;
      height: 20px;
      margin-right: 15px;
      accent-color: var(--color-yellow-neon);
  }

  .cookie-option input[type="checkbox"]:disabled {
      opacity: 0.5;
      cursor: not-allowed;
  }

  .cookie-status {
      margin-left: auto;
      font-size: 0.8rem;
      padding: 3px 8px;
      border-radius: 12px;
      background: rgba(255, 94, 94, 0.1);
      color: var(--color-red-neon);
      border: 1px solid var(--color-red-neon);
  }

  .cookie-desc {
      color: var(--color-text-dark);
      font-size: 0.95rem;
      margin: 0 0 0 35px;
      line-height: 1.5;
  }

  .cookie-modal-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      margin-top: 30px;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
      .cookie-categories {
          grid-template-columns: 1fr;
      }

      .cookie-banner-content {
          flex-direction: column;
          text-align: center;
      }

      .cookie-banner-buttons {
          width: 100%;
          flex-direction: column;
      }

      .cookie-btn {
          width: 100%;
      }

      .browser-settings {
          grid-template-columns: 1fr;
      }

      .consent-types {
          grid-template-columns: 1fr;
      }

      .cookie-modal-buttons {
          flex-direction: column;
      }

      .cookie-modal-buttons .cookie-btn {
          width: 100%;
      }

      .cookie-table {
          font-size: 0.9rem;
      }

      .cookie-table th,
      .cookie-table td {
          padding: 10px;
      }
  }

  /* Print styles */
  @media print {

      #cookie-consent-banner,
      #cookie-settings-modal,
      .cookie-settings-widget,
      .cookie-banner-buttons,
      .cookie-modal-buttons {
          display: none !important;
      }

      .cookie-table-container {
          overflow: visible;
          border: 1px solid #ccc;
      }

      .cookie-badge,
      .badge-yes,
      .badge-no {
          border: 1px solid #999;
          background: #f5f5f5;
          color: #333;
      }
  }

  /* Age restriction highlight */
  .age-restriction {
      background: rgba(255, 77, 225, 0.1);
      padding: 15px;
      border-radius: 8px;
      margin: 15px 0;
      border-left: 3px solid var(--color-pink-neon);
  }

  /* Contact links in text */
  .policy-block a.contact-link {
      color: var(--color-yellow-neon);
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .policy-block a.contact-link:hover {
      color: var(--color-pink-neon);
      text-decoration: underline;
  }

  /* Highlight important terms */
  .policy-list li strong {
      color: var(--color-text-light);
      background: rgba(255, 210, 74, 0.1);
      padding: 2px 6px;
      border-radius: 4px;
      font-weight: 700;
  }

  /* Signature style */
  .signature {
      text-align: center;
      font-style: italic;
      margin-top: 30px !important;
      font-size: 1.2rem;
      color: var(--color-text-light);
      padding-top: 20px;
      border-top: 1px dashed rgba(255, 255, 255, 0.2);
  }

  .highlight-pink-text {
      color: var(--color-pink-neon);
      font-weight: 700;
  }

  /* Back to top button (if added dynamically) */
  #back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(26, 26, 26, 0.9);
      border: 2px solid var(--color-yellow-neon);
      color: var(--color-yellow-neon);
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  #back-to-top:hover {
      background: var(--color-yellow-neon);
      color: var(--color-background);
      transform: translateY(-5px);
      box-shadow: 0 0 20px var(--color-yellow-neon);
  }

  #back-to-top svg {
      width: 24px;
      height: 24px;
  }

  .legal-disclaimer {
      max-width: 1340px;
      margin: 2rem auto 1.5rem;
      padding: 1.5rem;
      background-color: rgba(255, 255, 255, 0.05);
      border-left: 4px solid var(--color-pink-neon);
      border-radius: 0 8px 8px 0;
      font-size: 0.85rem;
      line-height: 1.5;
      color: var(--color-text-dark);
  }

  .legal-disclaimer strong {
      color: var(--color-pink-neon);
  }

  .legal-disclaimer p {
      margin: 0;
  }

  /* Для кращої адаптивності */
  @media (max-width: 768px) {
      .legal-disclaimer {
          padding: 1rem;
          font-size: 0.8rem;
          margin: 1.5rem auto 1rem;
      }
  }