  :root {
      --primary: #ffcc00;
      --primary-hover: #e6b800;
      --bg-dark: #0f172a;
      --bg-card: #1e293b;
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      --accent: #38bdf8;
      --danger: #ef4444;
      --success: #22c55e;
      --border: #334155;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  }

  body {
      background-color: var(--bg-dark);
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
  }


  .skip-link {
      position: absolute;
      top: -40px;
      left: 0;
      background: var(--primary);
      color: #000;
      padding: 8px;
      z-index: 1001;
      transition: top 0.3s;
  }

  .skip-link:focus {
      top: 0;
  }


  h1,
  h2,
  h3 {
      font-weight: 700;
      line-height: 1.2;
  }

  h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
  }

  h2 {
      font-size: 2.2rem;
      text-align: center;
      margin-bottom: 0.5rem;
  }

  .section-subtitle {
      text-align: center;
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto 3rem auto;
      font-size: 1.1rem;
  }


  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  section {
      padding: 100px 0;
  }


  header {
      background: rgba(15, 23, 42, 0.9);
      backdrop-filter: blur(10px);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid var(--border);
  }

  nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
  }

  .logo {
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--primary);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .nav-links {
      display: flex;
      gap: 20px;
  }

  .nav-links a {
      color: var(--text-main);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: var(--transition);
  }

  .nav-links a:hover {
      color: var(--primary);
  }

  .menu-toggle {
      display: none;
      cursor: pointer;
      font-size: 1.5rem;
  }


  .hero {
      padding-top: 180px;
      padding-bottom: 120px;
      background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)),
          url('../img/hero.png') center center / cover no-repeat;
      text-align: center;
      position: relative;
  }

  .cta-group {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin: 40px 0;
  }

  .btn {
      padding: 14px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      cursor: pointer;
      border: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .btn-primary {
      background: var(--primary);
      color: #000;
      text-align: center;
  }

  .btn-primary:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
  }

  .btn-outline {
      border: 2px solid var(--border);
      color: var(--text-main);
  }

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

  .trust-badges {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 60px;
  }

  .badge-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: var(--text-muted);
      font-size: 0.9rem;
  }

  .badge-item i {
      color: var(--primary);
  }


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

  .card {
      background: var(--bg-card);
      padding: 40px;
      border-radius: 16px;
      border: 1px solid var(--border);
      transition: var(--transition);
  }

  .card:hover {
      border-color: var(--primary);
      transform: translateY(-5px);
  }

  .card i {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 20px;
      display: block;
  }


  .about-content {
      max-width: 900px;
      margin: 0 auto;
  }

  .vision-mission {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 50px;
  }

  .vision-box {
      background: rgba(56, 189, 248, 0.05);
      padding: 30px;
      border-left: 4px solid var(--accent);
      border-radius: 0 12px 12px 0;
  }


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

  .service-card {
      background: var(--bg-card);
      padding: 25px;
      border-radius: 12px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
  }

  .service-card i {
      font-size: 1.5rem;
      color: var(--primary);
      margin-bottom: 0;
  }


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

  .step-card {
      position: relative;
      padding-top: 20px;
  }

  .step-number {
      position: absolute;
      top: -20px;
      left: 0;
      font-size: 4rem;
      font-weight: 900;
      color: rgba(255, 204, 0, 0.1);
      line-height: 1;
  }


  .operator-card {
      background: var(--bg-card);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border);
  }

  .op-header {
      padding: 30px;
      background: #161e2e;
      text-align: center;
  }

  .op-logo-placeholder {
      height: 100px;
      display: flex;
      background: #fff;
      padding: 5px;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      margin-bottom: 15px;
  }

  .op-logo-placeholder img {
      height: 100%;
  }

  .op-body {
      padding: 30px;
      flex-grow: 1;
  }

  .op-rating {
      color: var(--primary);
      margin-bottom: 15px;
      font-weight: bold;
  }

  .op-details {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-top: 20px;
  }

  .demo-label {
      font-size: 0.7rem;
      opacity: 0.5;
      font-style: italic;
  }


  .table-wrapper {
      overflow-x: auto;
      margin-top: 30px;
  }

  table {
      width: 100%;
      border-collapse: collapse;
      background: var(--bg-card);
      border-radius: 12px;
      min-width: 800px;
  }

  th,
  td {
      padding: 18px;
      text-align: left;
      border-bottom: 1px solid var(--border);
  }

  th {
      background: #161e2e;
      color: var(--primary);
      font-size: 0.85rem;
      text-transform: uppercase;
  }


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

  .faq-item {
      background: var(--bg-card);
      margin-bottom: 10px;
      border-radius: 8px;
      border: 1px solid var(--border);
  }

  .faq-question {
      padding: 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
  }

  .faq-answer {
      padding: 0 20px 20px 20px;
      color: var(--text-muted);
      display: none;
  }


  .news-card {
      background: var(--bg-card);
      border-radius: 12px;
      overflow: hidden;
  }

  .news-img {
      height: 200px;
      background: #334155;
  }

  .news-content {
      padding: 25px;
  }

  .news-date {
      font-size: 0.8rem;
      color: var(--accent);
      margin-bottom: 10px;
      display: block;
  }


  .contact-flex {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 50px;
      align-items: start;
  }

  .contact-info i {
      width: 40px;
      color: var(--primary);
  }

  form {
      display: grid;
      gap: 20px;
  }

  input,
  textarea {
      background: #161e2e;
      border: 1px solid var(--border);
      padding: 15px;
      border-radius: 8px;
      color: white;
      width: 100%;
  }

  input:focus,
  textarea:focus {
      border-color: var(--primary);
      outline: none;
  }

  .checkbox-group {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
  }

  .checkbox-group input {
      width: auto;
  }


  .disclaimer {
      font-size: 0.8rem;
      color: var(--text-muted);
      border-top: 1px solid var(--border);
      padding-top: 30px;
      text-align: center;
  }

  .age-badge {
      display: inline-block;
      border: 2px solid var(--danger);
      color: var(--danger);
      padding: 5px 10px;
      border-radius: 50%;
      font-weight: 900;
      margin-bottom: 15px;
  }


  .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }

  .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
  }


  @media (max-width: 992px) {
      h1 {
          font-size: 2.2rem;
      }

      .vision-mission {
          grid-template-columns: 1fr;
      }

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

  @media (max-width: 768px) {
      .nav-links {
          position: fixed;
          top: 80px;
          left: -100%;
          width: 100%;
          background: var(--bg-dark);
          flex-direction: column;
          padding: 40px;
          height: calc(100vh - 80px);
          transition: 0.4s;
          text-align: center;
      }

      .nav-links.active {
          left: 0;
      }

      .menu-toggle {
          display: block;
      }

      .trust-badges {
          grid-template-columns: 1fr;
      }

      .cta-group {
          flex-direction: column;
      }
  }


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

  .page {
      max-width: 800px;
      margin: 0 auto;
      padding: 120px 20px 60px;
  }

  .page h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--primary);
  }

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

  .page p {
      margin-bottom: 15px;
      color: var(--text-main);
  }

  .page ul {
      margin-bottom: 20px;
      padding-left: 20px;
      color: var(--text-muted);
  }

  .page li {
      margin-bottom: 10px;
  }

  .page .last-updated {
      font-style: italic;
      color: var(--text-muted);
      margin-bottom: 40px;
  }

  .page .back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      text-decoration: none;
      margin-bottom: 30px;
      transition: 0.3s;
  }

  .warning-box {
      background: rgba(239, 68, 68, 0.1);
      border: 1px solid #ef4444;
      padding: 20px;
      border-radius: 8px;
      margin: 30px 0;
  }

  .cookie-table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
      background: var(--bg-card);
      border-radius: 8px;
      overflow: hidden;
  }

  .cookie-table th,
  .cookie-table td {
      padding: 15px;
      text-align: left;
      border-bottom: 1px solid var(--border);
      font-size: 0.9rem;
  }

  .cookie-table th {
      background: #161e2e;
      color: var(--primary);
  }


  .alert-box {
      background: rgba(239, 68, 68, 0.1);
      border: 1px solid var(--danger);
      padding: 25px;
      border-radius: 12px;
      margin-bottom: 30px;
      display: flex;
      gap: 20px;
      align-items: center;
  }

  .alert-box i {
      font-size: 2.5rem;
      color: var(--danger);
  }

  .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 30px 0;
  }

  .step-item {
      background: var(--bg-card);
      padding: 20px;
      border-radius: 10px;
      border: 1px solid var(--border);
  }

  .step-item h3 {
      color: var(--primary);
      margin-bottom: 10px;
      font-size: 1.1rem;
  }

  .help-contacts {
      background: #161e2e;
      padding: 30px;
      border-radius: 12px;
      border-left: 5px solid var(--success);
      margin-top: 40px;
  }

  .contact-entry {
      margin-bottom: 20px;
  }

  .contact-entry:last-child {
      margin-bottom: 0;
  }

  .contact-entry strong {
      display: block;
      color: var(--success);
      font-size: 1.2rem;
  }



  .check-list {
      list-style: none;
  }

  .check-list li {
      margin-bottom: 10px;
      display: flex;
      gap: 10px;
  }

  .check-list i {
      color: var(--danger);
      margin-top: 5px;
  }

  #age-gate {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--bg-dark);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
  }

  .age-gate-content {
      background: var(--bg-card);
      padding: 40px;
      border-radius: 20px;
      border: 1px solid var(--border);
      text-align: center;
      max-width: 500px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  }

  .age-gate-logo {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 20px;
      font-weight: 900;
  }

  #cookie-banner {
      position: fixed;
      bottom: 20px;
      left: 20px;
      right: 20px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px;
      z-index: 9000;
      display: none;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }

  .cookie-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
  }

  .cookie-settings {
      display: none;
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid var(--border);
  }

  .cookie-option {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      font-size: 0.9rem;
  }