@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

    :root {
      --bg-main: #0F1C3F;
      --bg-card: #162654;
      --bg-card-hover: #1e326b;
      --primary: #0057B8;
      --primary-hover: #004bb0;
      --accent: #18B4F7;
      --accent-hover: #0da3e3;
      --text-main: #FFFFFF;
      --text-muted: #a5b4fc;
      --border-color: rgba(24, 180, 247, 0.2);
      --border-focus: rgba(24, 180, 247, 0.6);
      --success: #10b981;
      --transition-speed: 0.3s;
      --font-family: 'Inter', sans-serif;
    }

/* Reset & Base Styles */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

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

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--transition-speed) ease;
    }

    ul, ol {
      list-style: none;
    }

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

    /* Layout Containers */
    .site-x1Z3GR-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .site-x1Z3GR-section {
      padding: 80px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Typography */
    h1, h2, h3, h4 {
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    h2 {
      font-size: 2.2rem;
      text-align: center;
      position: relative;
      padding-bottom: 15px;
      margin-bottom: 50px;
    }

    h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 2px;
    }

    h3 {
      font-size: 1.5rem;
      color: var(--accent);
      margin-top: 30px;
    }

    p {
      margin-bottom: 15px;
      color: var(--text-muted);
      font-size: 1.05rem;
    }

    /* Buttons */
    .site-x1Z3GR-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: all var(--transition-speed) ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      gap: 10px;
    }

    .site-x1Z3GR-btn--primary {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: var(--text-main);
      box-shadow: 0 4px 15px rgba(24, 180, 247, 0.4);
    }

    .site-x1Z3GR-btn--primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(24, 180, 247, 0.6);
    }

    .site-x1Z3GR-btn--secondary {
      background: transparent;
      color: var(--text-main);
      border: 2px solid var(--accent);
    }

    .site-x1Z3GR-btn--secondary:hover {
      background: rgba(24, 180, 247, 0.1);
      transform: translateY(-2px);
    }

    .site-x1Z3GR-btn--accent {
      background: #FFFFFF;
      color: var(--bg-main);
      box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }

    .site-x1Z3GR-btn--accent:hover {
      background: #f0f0f0;
      transform: translateY(-2px);
    }

    /* Header */
    .site-x1Z3GR-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background-color: rgba(15, 28, 63, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-color);
      transition: all var(--transition-speed) ease;
    }

    .site-x1Z3GR-header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }

    .site-x1Z3GR-logo img {
      height: 50px;
      width: auto;
    }

    .site-x1Z3GR-nav-actions {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .site-x1Z3GR-burger {
      display: none;
      background: none;
      border: none;
      color: var(--text-main);
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Hero Section */
    .site-x1Z3GR-hero {
      padding-top: 160px;
      padding-bottom: 100px;
      background: radial-gradient(circle at top right, rgba(24, 180, 247, 0.15), transparent 60%);
    }

    .site-x1Z3GR-hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 50px;
      align-items: center;
    }

    .site-x1Z3GR-hero-content h1 {
      font-size: 3rem;
      line-height: 1.1;
      margin-bottom: 25px;
      background: linear-gradient(135deg, #FFFFFF 60%, var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .site-x1Z3GR-hero-subtitle {
      font-size: 1.25rem;
      margin-bottom: 35px;
      color: var(--text-muted);
    }

    .site-x1Z3GR-hero-advantages {
      margin-bottom: 40px;
    }

    .site-x1Z3GR-hero-adv-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.1rem;
      margin-bottom: 15px;
      color: var(--text-main);
    }

    .site-x1Z3GR-hero-adv-item i {
      color: var(--accent);
      font-size: 1.2rem;
    }

    .site-x1Z3GR-hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .site-x1Z3GR-image-placeholder {
      background: linear-gradient(135deg, var(--bg-card), rgba(24, 180, 247, 0.1));
      border: 2px dashed var(--border-color);
      border-radius: 16px;
      height: 450px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 30px;
      color: var(--accent);
      font-weight: 600;
      font-size: 1.2rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      position: relative;
      overflow: hidden;
    }

    .site-x1Z3GR-image-placeholder::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(24, 180, 247, 0.1) 0%, transparent 70%);
      animation: rotateBg 20s linear infinite;
    }

    @keyframes rotateBg {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Section: Devices */
    .site-x1Z3GR-devices-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .site-x1Z3GR-os-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 30px;
    }

    .site-x1Z3GR-os-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 15px;
      transition: all var(--transition-speed) ease;
    }

    .site-x1Z3GR-os-card:hover {
      transform: translateY(-5px);
      border-color: var(--accent);
      background: var(--bg-card-hover);
    }

    .site-x1Z3GR-os-card i {
      font-size: 2rem;
      color: var(--accent);
    }

    .site-x1Z3GR-os-card span {
      font-weight: 600;
      font-size: 1.1rem;
    }

    /* Section: Advantages Cards */
    .site-x1Z3GR-adv-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .site-x1Z3GR-adv-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 35px;
      transition: all var(--transition-speed) ease;
      position: relative;
      overflow: hidden;
    }

    .site-x1Z3GR-adv-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(to bottom, var(--primary), var(--accent));
      opacity: 0;
      transition: opacity var(--transition-speed) ease;
    }

    .site-x1Z3GR-adv-card:hover {
      transform: translateY(-8px);
      border-color: rgba(24, 180, 247, 0.4);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .site-x1Z3GR-adv-card:hover::before {
      opacity: 1;
    }

    .site-x1Z3GR-adv-icon {
      font-size: 2.5rem;
      color: var(--accent);
      margin-bottom: 20px;
    }

    .site-x1Z3GR-adv-card h3 {
      margin-top: 0;
      margin-bottom: 15px;
      font-size: 1.3rem;
      color: var(--text-main);
    }

    /* Section: Registration Cards */
    .site-x1Z3GR-reg-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .site-x1Z3GR-reg-card {
      background: linear-gradient(145deg, var(--bg-card), rgba(22, 38, 84, 0.8));
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      transition: all var(--transition-speed) ease;
    }

    .site-x1Z3GR-reg-card:hover {
      transform: translateY(-5px);
      border-color: var(--accent);
      box-shadow: 0 15px 30px rgba(24, 180, 247, 0.15);
    }

    .site-x1Z3GR-reg-badge {
      background: rgba(24, 180, 247, 0.1);
      color: var(--accent);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 20px;
      border: 1px solid rgba(24, 180, 247, 0.2);
    }

    .site-x1Z3GR-reg-card h3 {
      margin-top: 0;
      color: var(--text-main);
      font-size: 1.5rem;
      margin-bottom: 15px;
    }

    /* Section: Steps */
    .site-x1Z3GR-steps-container {
      max-width: 800px;
      margin: 0 auto 50px auto;
    }

    .site-x1Z3GR-step-item {
      display: flex;
      gap: 25px;
      margin-bottom: 30px;
      position: relative;
    }

    .site-x1Z3GR-step-item:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 50px;
      left: 25px;
      width: 2px;
      height: calc(100% - 30px);
      background: var(--border-color);
    }

    .site-x1Z3GR-step-num {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.2rem;
      flex-shrink: 0;
      box-shadow: 0 4px 10px rgba(24, 180, 247, 0.3);
    }

    .site-x1Z3GR-step-content {
      padding-top: 10px;
    }

    .site-x1Z3GR-step-content h3 {
      margin-top: 0;
      margin-bottom: 8px;
      font-size: 1.2rem;
      color: var(--text-main);
    }

    /* Section: Providers */
    .site-x1Z3GR-providers-intro {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px auto;
      font-size: 1.15rem;
    }

    .site-x1Z3GR-providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 20px;
      margin-bottom: 50px;
    }

    .site-x1Z3GR-provider-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all var(--transition-speed) ease;
      cursor: pointer;
    }

    .site-x1Z3GR-provider-card:hover {
      background: var(--accent);
      color: var(--bg-main);
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(24, 180, 247, 0.3);
    }

    .site-x1Z3GR-subsections-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-bottom: 50px;
    }

    .site-x1Z3GR-sub-card {
      background: rgba(22, 38, 84, 0.5);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 30px;
    }

    .site-x1Z3GR-sub-card h3 {
      margin-top: 0;
      margin-bottom: 15px;
    }

    /* Section: Platform Features */
    .site-x1Z3GR-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-bottom: 50px;
    }

    .site-x1Z3GR-feature-item {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 25px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .site-x1Z3GR-feature-item i {
      font-size: 1.5rem;
      color: var(--accent);
      margin-top: 3px;
    }

    .site-x1Z3GR-feature-item h3 {
      margin-top: 0;
      margin-bottom: 8px;
      font-size: 1.15rem;
      color: var(--text-main);
    }

    .site-x1Z3GR-response-box {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(24, 180, 247, 0.1));
      border: 1px solid var(--success);
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      max-width: 600px;
      margin: 0 auto;
    }

    .site-x1Z3GR-response-box h3 {
      margin-top: 0;
      color: var(--success);
    }

    /* Section: Bonuses */
    .site-x1Z3GR-bonuses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
    }

    .site-x1Z3GR-bonus-card {
      background: linear-gradient(135deg, var(--bg-card), rgba(0, 87, 184, 0.3));
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 30px;
      position: relative;
      overflow: hidden;
    }

    .site-x1Z3GR-bonus-card::after {
      content: '\f06b';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      bottom: -20px;
      right: -10px;
      font-size: 7rem;
      color: rgba(24, 180, 247, 0.05);
      pointer-events: none;
    }

    .site-x1Z3GR-bonus-card h3 {
      margin-top: 0;
      color: var(--accent);
      font-size: 1.3rem;
    }

    /* Table Styles */
    .site-x1Z3GR-table-container {
      overflow-x: auto;
      margin: 40px 0;
      border-radius: 12px;
      border: 1px solid var(--border-color);
      background: var(--bg-card);
    }

    .site-x1Z3GR-table {
      width: 100%;
      min-width: 700px;
      border-collapse: collapse;
      text-align: left;
    }

    .site-x1Z3GR-table th, .site-x1Z3GR-table td {
      padding: 18px 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .site-x1Z3GR-table th {
      background-color: rgba(0, 87, 184, 0.3);
      color: var(--text-main);
      font-weight: 600;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .site-x1Z3GR-table tr:last-child td {
      border-bottom: none;
    }

    .site-x1Z3GR-table tr:hover {
      background-color: rgba(24, 180, 247, 0.05);
    }

    .site-x1Z3GR-badge-active {
      background: rgba(16, 185, 129, 0.15);
      color: var(--success);
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 600;
    }

    /* Section: Payment Methods */
    .site-x1Z3GR-payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }

    .site-x1Z3GR-payment-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 20px 10px;
      text-align: center;
      font-weight: 600;
      transition: all var(--transition-speed) ease;
    }

    .site-x1Z3GR-payment-card:hover {
      border-color: var(--accent);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(24, 180, 247, 0.1);
    }

    .site-x1Z3GR-payment-card i {
      font-size: 1.8rem;
      color: var(--accent);
      margin-bottom: 10px;
      display: block;
    }

    /* Section: Account & Security */
    .site-x1Z3GR-split-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .site-x1Z3GR-list-styled {
      margin-top: 20px;
    }

    .site-x1Z3GR-list-styled li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 15px;
      color: var(--text-muted);
    }

    .site-x1Z3GR-list-styled li i {
      color: var(--accent);
      margin-top: 5px;
    }

    /* Section: Contacts & Support */
    .site-x1Z3GR-contacts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .site-x1Z3GR-contact-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 30px 20px;
      text-align: center;
      transition: all var(--transition-speed) ease;
    }

    .site-x1Z3GR-contact-card:hover {
      transform: translateY(-5px);
      border-color: var(--accent);
    }

    .site-x1Z3GR-contact-card i {
      font-size: 2.5rem;
      color: var(--accent);
      margin-bottom: 15px;
    }

    .site-x1Z3GR-contact-card h3 {
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 1.2rem;
      color: var(--text-main);
    }

    .site-x1Z3GR-contact-card p {
      margin-bottom: 0;
      font-size: 0.95rem;
    }

    /* FAQ Accordion */
    .site-x1Z3GR-faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .site-x1Z3GR-faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: all var(--transition-speed) ease;
    }

    .site-x1Z3GR-faq-header {
      padding: 22px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      font-size: 1.1rem;
      user-select: none;
    }

    .site-x1Z3GR-faq-icon {
      transition: transform var(--transition-speed) ease;
      color: var(--accent);
    }

    .site-x1Z3GR-faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--transition-speed) ease, padding var(--transition-speed) ease;
      padding: 0 30px;
      color: var(--text-muted);
      border-top: 1px solid transparent;
    }

    .site-x1Z3GR-faq-item.--active {
      border-color: var(--accent);
    }

    .site-x1Z3GR-faq-item.--active .site-x1Z3GR-faq-icon {
      transform: rotate(180deg);
    }

    .site-x1Z3GR-faq-item.--active .site-x1Z3GR-faq-content {
      padding: 20px 30px;
      border-top-color: rgba(255, 255, 255, 0.05);
    }

    /* Footer */
    .site-x1Z3GR-footer {
      background-color: #080F26;
      padding: 80px 0 40px 0;
      border-top: 2px solid var(--primary);
    }

    .site-x1Z3GR-footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    .site-x1Z3GR-footer-left, .site-x1Z3GR-footer-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .site-x1Z3GR-footer-left {
      grid-template-columns: 1.2fr 0.8fr;
    }

    .site-x1Z3GR-footer-col h4 {
      color: var(--text-main);
      font-size: 1.1rem;
      margin-bottom: 25px;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      padding-bottom: 10px;
    }

    .site-x1Z3GR-footer-col h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background-color: var(--accent);
    }

    .site-x1Z3GR-footer-links li {
      margin-bottom: 12px;
    }

    .site-x1Z3GR-footer-links a {
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .site-x1Z3GR-footer-links a:hover {
      color: var(--accent);
      padding-left: 5px;
    }

    .site-x1Z3GR-footer-icons {
      display: flex;
      gap: 12px;
      margin-top: 15px;
    }

    .site-x1Z3GR-icon-btn {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-main);
      transition: all var(--transition-speed) ease;
    }

    .site-x1Z3GR-icon-btn:hover {
      background: var(--accent);
      color: var(--bg-main);
      transform: translateY(-3px);
    }

    .site-x1Z3GR-footer-payment-icons {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 15px;
    }

    .site-x1Z3GR-pay-icon {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-muted);
    }

    .site-x1Z3GR-footer-info-block {
      margin-bottom: 25px;
    }

    .site-x1Z3GR-footer-info-block p {
      font-size: 0.9rem;
      margin-bottom: 5px;
    }

    .site-x1Z3GR-footer-info-block a {
      color: var(--accent);
      font-weight: 600;
    }

    .site-x1Z3GR-badges-row {
      display: flex;
      gap: 15px;
      margin-top: 25px;
    }

    .site-x1Z3GR-badge-item {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 8px 15px;
      border-radius: 6px;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--text-main);
    }

    .site-x1Z3GR-badge-item--18 {
      border-color: #ef4444;
      color: #ef4444;
    }

    .site-x1Z3GR-footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 30px;
      margin-top: 50px;
    }

    .site-x1Z3GR-warning-text {
      background: rgba(239, 68, 68, 0.1);
      border-left: 4px solid #ef4444;
      padding: 15px 20px;
      border-radius: 0 8px 8px 0;
      font-size: 0.9rem;
      color: #fca5a5;
      margin-bottom: 20px;
    }

    .site-x1Z3GR-copyright {
      text-align: center;
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* Mobile Navigation Menu */
    .site-x1Z3GR-mobile-nav {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background-color: var(--bg-main);
      z-index: 999;
      transition: left 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
      padding: 40px 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      border-top: 1px solid var(--border-color);
    }

    .site-x1Z3GR-mobile-nav.--open {
      left: 0;
    }

    .site-x1Z3GR-mobile-nav .site-x1Z3GR-btn {
      width: 100%;
    }

    /* Responsive Media Queries */
    @media (max-width: 1024px) {
      .site-x1Z3GR-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .site-x1Z3GR-image-placeholder {
        height: 350px;
      }

      .site-x1Z3GR-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      h2 {
        font-size: 1.8rem;
      }

      .site-x1Z3GR-header-container {
        padding: 0 15px;
      }

      .site-x1Z3GR-nav-actions {
        display: none;
      }

      .site-x1Z3GR-burger {
        display: block;
      }

      .site-x1Z3GR-devices-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .site-x1Z3GR-split-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .site-x1Z3GR-footer-left, .site-x1Z3GR-footer-right {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .site-x1Z3GR-hero-content h1 {
        font-size: 2.2rem;
      }
    }

.gen-sf5pkfba span {
  color: inherit !important;
  background-color: transparent !important;
}

.gen-zou88dip {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0;
  font-family: 'Inter', 'Arial', sans-serif;
}
.gen-zou88dip .one-xbet-reg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #86d123 0%, #5ca30a 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(134, 209, 35, 0.4), inset 0 -4px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}
.gen-zou88dip .one-xbet-reg-btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #97e234 0%, #6cb80f 100%);
  box-shadow: 0 12px 24px rgba(134, 209, 35, 0.6), inset 0 -4px 0 rgba(0, 0, 0, 0.15);
}
.gen-zou88dip .one-xbet-reg-btn:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(134, 209, 35, 0.4);
}
.gen-zou88dip .btn-icon {
  font-style: normal;
  font-size: 20px;
  animation: gen-zou88dip-flame-pulse 1.5s infinite alternate;
}
.gen-zou88dip .btn-text {
  font-weight: 800;
  color: #ffffff !important;
}
.gen-zou88dip .btn-badge {
  background-color: #1075e3 !important;
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  margin-left: 4px;
  display: inline-block;
  line-height: 1;
}
@keyframes gen-zou88dip-flame-pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.2) rotate(5deg); }
}

.gen-p5ojnd2s p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.gen-xmdc0t67 { color: rgb(165, 180, 252); background: rgba(0, 0, 0, 0); font-family: Inter, sans-serif; font-size: 16.8px; border-radius: 0px; }

.gen-bviwarni {
  background: radial-gradient(circle at 50% 50%, var(--bg-card) 0%, var(--bg-main) 100%);
  padding: 80px 24px;
  font-family: var(--font-family, 'Inter', sans-serif);
  color: var(--text-main, #FFFFFF);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.gen-bviwarni .compatibility-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .gen-bviwarni .compatibility-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.gen-bviwarni .compatibility-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .gen-bviwarni .compatibility-content {
    align-items: center;
  }
}

.gen-bviwarni .compatibility-tag {
  background: rgba(24, 180, 247, 0.15);
  color: var(--accent, #18B4F7);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
  display: inline-block;
}

.gen-bviwarni .compatibility-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gen-bviwarni .compatibility-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted, #a5b4fc);
  margin-bottom: 32px;
  max-width: 600px;
}

.gen-bviwarni .compatibility-description strong {
  color: var(--text-main, #FFFFFF);
  font-weight: 600;
}

.gen-bviwarni .compatibility-groups {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.gen-bviwarni .group-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent, #18B4F7);
  margin-bottom: 12px;
  font-weight: 700;
  text-align: left;
}

@media (max-width: 992px) {
  .gen-bviwarni .group-title {
    text-align: center;
  }
}

.gen-bviwarni .badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 992px) {
  .gen-bviwarni .badge-grid {
    justify-content: center;
  }
}

.gen-bviwarni .compat-badge {
  background: var(--bg-card, #162654);
  border: 1px solid var(--border-color);
  padding: 10px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition-speed, 0.3s) ease;
  cursor: default;
}

.gen-bviwarni .compat-badge:hover {
  background: var(--bg-card-hover, #1e326b);
  border-color: var(--accent, #18B4F7);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 180, 247, 0.2);
}

.gen-bviwarni .compat-badge.active-detected {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--success, #10b981);
  color: var(--success, #10b981);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
  animation: pulseSuccess 2s infinite;
}

@keyframes pulseSuccess {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.gen-bviwarni .badge-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.gen-bviwarni .checker-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}

@media (max-width: 992px) {
  .gen-bviwarni .checker-box {
    align-items: center;
    margin: 0 auto;
  }
}

.gen-bviwarni .check-btn {
  background: linear-gradient(135deg, var(--primary, #0057B8) 0%, var(--accent, #18B4F7) 100%);
  color: #FFFFFF;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(24, 180, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.gen-bviwarni .check-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 180, 247, 0.5);
}

.gen-bviwarni .check-btn:active {
  transform: translateY(1px);
}

.gen-bviwarni .check-result {
  font-size: 14px;
  color: var(--success, #10b981);
  font-weight: 500;
  min-height: 20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(-5px);
}

.gen-bviwarni .check-result.show {
  opacity: 1;
  transform: translateY(0);
}

/* Phone Mockup Styling */
.gen-bviwarni .compatibility-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.gen-bviwarni .phone-mockup {
  width: 300px;
  height: 600px;
  background: #090d1a;
  border: 12px solid #2d3748;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(24, 180, 247, 0.15);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

.gen-bviwarni .phone-speaker {
  width: 60px;
  height: 4px;
  background: #4a5568;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.gen-bviwarni .phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.gen-bviwarni .phone-header {
  height: 44px;
  background: #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px 0 16px;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gen-bviwarni .phone-logo {
  color: var(--accent, #18B4F7);
  letter-spacing: 1px;
}

.gen-bviwarni .phone-badge {
  background: #ef4444;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 9px;
}

.gen-bviwarni .phone-body {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.gen-bviwarni .casino-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gen-bviwarni .phone-overlay-ui {
  position: absolute;
  bottom: 20px;
  left: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.gen-bviwarni .ui-card-title {
  font-size: 11px;
  color: var(--text-muted, #a5b4fc);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}

.gen-bviwarni .ui-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}

.gen-bviwarni .ui-slot-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gen-bviwarni .ui-play-btn {
  width: 100%;
  background: #10b981;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.gen-bviwarni .ui-play-btn:hover {
  background: #059669;
}

.gen-bviwarni .phone-home-bar {
  width: 100px;
  height: 4px;
  background: #4a5568;
  border-radius: 2px;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.gen-u476pxvw .compat-badge {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.gen-u476pxvw .compat-badge:focus {
  outline: 2px solid var(--accent, #18B4F7);
  outline-offset: 2px;
}

.gen-b7h3bwvk { display: flex; justify-content: center; align-items: center; padding: 40px 20px; background-color: var(--bg-main, #0F1C3F); font-family: var(--font-family, 'Inter', sans-serif); width: 100%; box-sizing: border-box; } .gen-b7h3bwvk .callout-container { width: 100%; max-width: 800px; } .gen-b7h3bwvk .callout-card { background-color: var(--bg-card, #162654); border: 1px solid var(--border-color, rgba(24, 180, 247, 0.2)); border-radius: 16px; padding: 32px 40px; position: relative; transition: all var(--transition-speed, 0.3s) ease; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); opacity: 0; transform: translateY(20px); } .gen-b7h3bwvk .callout-card.visible { opacity: 1; transform: translateY(0); } .gen-b7h3bwvk .callout-card:hover { transform: translateY(-4px); border-color: var(--accent, #18B4F7); box-shadow: 0 15px 35px rgba(24, 180, 247, 0.2); background-color: var(--bg-card-hover, #1e326b); } .gen-b7h3bwvk .callout-badge { position: absolute; top: 0; right: 40px; transform: translateY(-50%); background: linear-gradient(135deg, var(--primary, #0057B8), var(--accent, #18B4F7)); color: var(--text-main, #FFFFFF); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 6px 16px; border-radius: 20px; box-shadow: 0 4px 12px rgba(24, 180, 247, 0.3); } .gen-b7h3bwvk .callout-content { display: flex; align-items: center; gap: 24px; } @media (max-width: 640px) { .gen-b7h3bwvk .callout-card { padding: 32px 24px; } .gen-b7h3bwvk .callout-content { flex-direction: column; text-align: center; gap: 16px; } .gen-b7h3bwvk .callout-badge { right: 50%; transform: translate(50%, -50%); } } .gen-b7h3bwvk .callout-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 12px; background: rgba(24, 180, 247, 0.1); display: flex; align-items: center; justify-content: center; color: var(--accent, #18B4F7); transition: all var(--transition-speed, 0.3s) ease; } .gen-b7h3bwvk .callout-card:hover .callout-icon { background: var(--accent, #18B4F7); color: var(--bg-main, #0F1C3F); transform: scale(1.05); } .gen-b7h3bwvk .callout-icon svg { width: 28px; height: 28px; } .gen-b7h3bwvk .callout-text { color: var(--text-muted, #a5b4fc); font-size: 18px; line-height: 1.6; margin: 0; font-weight: 400; transition: color var(--transition-speed, 0.3s) ease; } .gen-b7h3bwvk .callout-card:hover .callout-text { color: var(--text-main, #FFFFFF); } .gen-b7h3bwvk .highlight { color: var(--text-main, #FFFFFF); font-weight: 600; position: relative; display: inline-block; } .gen-b7h3bwvk .highlight::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 4px; background-color: rgba(24, 180, 247, 0.25); z-index: -1; transition: all var(--transition-speed, 0.3s) ease; } .gen-b7h3bwvk .callout-card:hover .highlight::after { background-color: var(--accent, #18B4F7); height: 6px; }

.gen-zmjh31cq {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: var(--bg-main, #0F1C3F);
  font-family: var(--font-family, 'Inter', sans-serif);
  width: 100%;
  box-sizing: border-box;
}

.gen-zmjh31cq .feature-card {
  position: relative;
  background-color: var(--bg-card, #162654);
  border: 1px solid var(--border-color, rgba(24, 180, 247, 0.2));
  border-radius: 20px;
  padding: 40px;
  max-width: 950px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
}

.gen-zmjh31cq .feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-focus, rgba(24, 180, 247, 0.6));
  box-shadow: 0 25px 50px rgba(24, 180, 247, 0.15);
}

.gen-zmjh31cq .feature-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle 250px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(24, 180, 247, 0.15), transparent 80%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.gen-zmjh31cq .feature-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 32px;
}

.gen-zmjh31cq .feature-left {
  flex-shrink: 0;
}

.gen-zmjh31cq .feature-icon-container {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary, #0057B8), var(--accent, #18B4F7));
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 24px rgba(24, 180, 247, 0.3);
}

.gen-zmjh31cq .device-icon {
  width: 36px;
  height: 36px;
  color: var(--text-main, #FFFFFF);
  animation: float 3s ease-in-out infinite;
}

.gen-zmjh31cq .pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent, #18B4F7);
  animation: pulse 2s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
  opacity: 0;
  pointer-events: none;
}

.gen-zmjh31cq .feature-center {
  flex-grow: 1;
}

.gen-zmjh31cq .feature-badge {
  display: inline-block;
  background: rgba(24, 180, 247, 0.1);
  border: 1px solid rgba(24, 180, 247, 0.3);
  color: var(--accent, #18B4F7);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.gen-zmjh31cq .feature-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-main, #FFFFFF);
  margin: 0 0 12px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.gen-zmjh31cq .feature-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted, #a5b4fc);
  margin: 0 0 20px 0;
  font-weight: 400;
}

.gen-zmjh31cq .feature-tags {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gen-zmjh31cq .tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted, #a5b4fc);
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gen-zmjh31cq .tag-dot {
  width: 6px;
  height: 6px;
  background-color: var(--success, #10b981);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--success, #10b981);
}

.gen-zmjh31cq .feature-right {
  flex-shrink: 0;
}

.gen-zmjh31cq .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary, #0057B8), var(--primary-hover, #004bb0));
  color: var(--text-main, #FFFFFF);
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 87, 184, 0.3);
}

.gen-zmjh31cq .action-btn:hover {
  background: linear-gradient(135deg, var(--accent, #18B4F7), var(--accent-hover, #0da3e3));
  box-shadow: 0 6px 20px rgba(24, 180, 247, 0.4);
  transform: translateX(3px);
}

.gen-zmjh31cq .arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.gen-zmjh31cq .action-btn:hover .arrow-icon {
  transform: translateX(4px);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .gen-zmjh31cq .feature-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  .gen-zmjh31cq .feature-right {
    width: 100%;
  }
  
  .gen-zmjh31cq .action-btn {
    width: 100%;
    justify-content: center;
  }
}

.gen-a6q177uk {
  background-color: var(--bg-main, #0F1C3F);
  font-family: var(--font-family, 'Inter', sans-serif);
  color: var(--text-main, #FFFFFF);
  padding: 80px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gen-a6q177uk .container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

/* Intro Block */
.gen-a6q177uk .intro-block {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.gen-a6q177uk .badge {
  display: inline-block;
  background: rgba(24, 180, 247, 0.1);
  border: 1px solid var(--accent, #18B4F7);
  color: var(--accent, #18B4F7);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.gen-a6q177uk .main-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FFFFFF 40%, var(--accent, #18B4F7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gen-a6q177uk .main-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted, #a5b4fc);
}

/* Registration Block */
.gen-a6q177uk .registration-block {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.gen-a6q177uk .registration-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.gen-a6q177uk .sub-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFFFFF;
  position: relative;
  display: inline-block;
}

.gen-a6q177uk .sub-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent, #18B4F7);
  border-radius: 2px;
}

.gen-a6q177uk .sub-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted, #a5b4fc);
  margin-top: 25px;
}

/* Cards Grid */
.gen-a6q177uk .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 992px) {
  .gen-a6q177uk .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gen-a6q177uk .cards-grid {
    grid-template-columns: 1fr;
  }
  .gen-a6q177uk .main-title {
    font-size: 34px;
  }
  .gen-a6q177uk .sub-title {
    font-size: 26px;
  }
  .gen-a6q177uk {
    padding: 50px 16px;
  }
}

/* Feature Card */
.gen-a6q177uk .feature-card {
  background-color: var(--bg-card, #162654);
  border: 1px solid var(--border-color, rgba(24, 180, 247, 0.2));
  border-radius: 16px;
  padding: 36px 28px;
  transition: all var(--transition-speed, 0.3s) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gen-a6q177uk .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(24, 180, 247, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gen-a6q177uk .feature-card:hover::before {
  opacity: 1;
}

.gen-a6q177uk .feature-card:hover {
  transform: translateY(-6px);
  background-color: var(--bg-card-hover, #1e326b);
  border-color: var(--accent, #18B4F7);
  box-shadow: 0 12px 30px rgba(24, 180, 247, 0.2);
}

.gen-a6q177uk .feature-card.active {
  border-color: var(--accent, #18B4F7);
  background-color: var(--bg-card-hover, #1e326b);
  box-shadow: 0 0 20px rgba(24, 180, 247, 0.3);
}

.gen-a6q177uk .icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(24, 180, 247, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  color: var(--accent, #18B4F7);
  transition: all 0.3s ease;
}

.gen-a6q177uk .feature-card:hover .icon-wrapper,
.gen-a6q177uk .feature-card.active .icon-wrapper {
  background: var(--accent, #18B4F7);
  color: #FFFFFF;
  transform: scale(1.1);
}

.gen-a6q177uk .icon {
  width: 28px;
  height: 28px;
}

.gen-a6q177uk .card-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.gen-a6q177uk .card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted, #a5b4fc);
  flex-grow: 1;
  margin-bottom: 20px;
}

.gen-a6q177uk .card-action {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent, #18B4F7);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.gen-a6q177uk .feature-card:hover .card-action,
.gen-a6q177uk .feature-card.active .card-action {
  color: #FFFFFF;
}

.gen-3t5wbiwf {
  margin: 24px auto;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
}
.gen-3t5wbiwf .info-card {
  background-color: var(--bg-card, #162654);
  border: 1px solid var(--border-color, rgba(24, 180, 247, 0.2));
  border-radius: 12px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-speed, 0.3s) ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}
.gen-3t5wbiwf .info-card:hover {
  background-color: var(--bg-card-hover, #1e326b);
  border-color: var(--border-focus, rgba(24, 180, 247, 0.6));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(24, 180, 247, 0.15);
}
.gen-3t5wbiwf .info-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success, #10b981);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gen-3t5wbiwf .badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--success, #10b981);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.gen-3t5wbiwf .info-card-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.gen-3t5wbiwf .info-card-icon {
  background: rgba(24, 180, 247, 0.1);
  border: 1px solid var(--border-color, rgba(24, 180, 247, 0.2));
  padding: 12px; 
  border-radius: 10px;
  color: var(--accent, #18B4F7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gen-3t5wbiwf .info-card-icon svg {
  width: 28px;
  height: 28px;
}
.gen-3t5wbiwf .info-card-body {
  flex-grow: 1;
  padding-right: 110px;
}
@media (max-width: 576px) {
  .gen-3t5wbiwf .info-card-content {
    flex-direction: column;
    gap: 12px;
  }
  .gen-3t5wbiwf .info-card-badge {
    position: static;
    align-self: flex-start;
    margin-bottom: 12px;
  }
  .gen-3t5wbiwf .info-card-body {
    padding-right: 0;
  }
}
.gen-3t5wbiwf .info-card-title {
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main, #FFFFFF);
  font-family: var(--font-family, 'Inter', sans-serif);
}
.gen-3t5wbiwf .info-card-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted, #a5b4fc);
  font-family: var(--font-family, 'Inter', sans-serif);
}
.gen-3t5wbiwf .info-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color, rgba(24, 180, 247, 0.1));
  padding-top: 16px;
  margin-top: 16px;
}
.gen-3t5wbiwf .encryption-tech {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted, #a5b4fc);
  opacity: 0.8;
  font-family: var(--font-family, 'Inter', sans-serif);
}
.gen-3t5wbiwf .footer-icon {
  width: 14px;
  height: 14px;
}
.gen-3t5wbiwf .info-card-btn {
  background-color: var(--primary, #0057B8);
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-speed, 0.3s) ease;
  font-family: var(--font-family, 'Inter', sans-serif);
}
.gen-3t5wbiwf .info-card-btn:hover {
  background-color: var(--primary-hover, #004bb0);
}
.gen-3t5wbiwf .info-card-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}
.gen-3t5wbiwf .info-card-btn.verified {
  background-color: var(--success, #10b981);
  pointer-events: none;
}

.gen-085oyaik {
  margin-left: auto;
  margin-right: auto;
}

.gen-s3qzw5f3 {
  background-color: var(--bg-main);
  font-family: var(--font-family);
  color: var(--text-main);
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gen-s3qzw5f3 .bonus-wrapper {
  max-width: 800px;
  width: 100%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease, border-color var(--transition-speed) ease;
}
.gen-s3qzw5f3 .bonus-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(24, 180, 247, 0.15);
  border-color: var(--border-focus);
}
.gen-s3qzw5f3 .bonus-header {
  text-align: center;
  margin-bottom: 30px;
}
.gen-s3qzw5f3 .bonus-badge {
  display: inline-block;
  background: rgba(24, 180, 247, 0.1);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  border: 1px solid var(--border-color);
}
.gen-s3qzw5f3 .bonus-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: var(--text-main);
  letter-spacing: -0.5px;
}
.gen-s3qzw5f3 .bonus-divider {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto;
  border-radius: 2px;
}
.gen-s3qzw5f3 .bonus-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  text-align: justify;
  margin-bottom: 30px;
}
.gen-s3qzw5f3 .bonus-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 35px;
}
.gen-s3qzw5f3 .feature-card {
  background: rgba(15, 28, 63, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
}
.gen-s3qzw5f3 .feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.gen-s3qzw5f3 .feature-icon {
  font-size: 24px;
  line-height: 1;
}
.gen-s3qzw5f3 .feature-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: var(--text-main);
}
.gen-s3qzw5f3 .feature-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}
.gen-s3qzw5f3 .bonus-action-area {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.gen-s3qzw5f3 .bonus-btn {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: none;
  outline: none;
}
.gen-s3qzw5f3 .primary-btn {
  background-color: var(--primary);
  color: var(--text-main);
}
.gen-s3qzw5f3 .primary-btn:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 0 15px rgba(0, 87, 184, 0.4);
}
.gen-s3qzw5f3 .secondary-btn {
  background-color: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.gen-s3qzw5f3 .secondary-btn:hover {
  background-color: rgba(24, 180, 247, 0.1);
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}
.gen-s3qzw5f3 .toast-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--success);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
}
.gen-s3qzw5f3 .toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 600px) {
  .gen-s3qzw5f3 .bonus-wrapper {
    padding: 24px 16px;
  }
  .gen-s3qzw5f3 .bonus-title {
    font-size: 22px;
  }
  .gen-s3qzw5f3 .bonus-text {
    font-size: 14px;
    text-align: left;
  }
  .gen-s3qzw5f3 .bonus-action-area {
    flex-direction: column;
    width: 100%;
  }
  .gen-s3qzw5f3 .bonus-btn {
    width: 100%;
  }
}

.gen-d98luttd {
  background-color: var(--bg-main, #0F1C3F);
  color: var(--text-main, #FFFFFF);
  font-family: var(--font-family, 'Inter', sans-serif);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.gen-d98luttd .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.gen-d98luttd .header-block {
  text-align: center;
  margin-bottom: 50px;
}

.gen-d98luttd .subtitle {
  color: var(--accent, #18B4F7);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.gen-d98luttd .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-main, #FFFFFF);
}

.gen-d98luttd .interactive-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .gen-d98luttd .interactive-layout {
    grid-template-columns: 1fr;
  }
}

/* Features Grid */
.gen-d98luttd .features-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gen-d98luttd .feature-card {
  background-color: var(--bg-card, #162654);
  border: 1px solid var(--border-color, rgba(24, 180, 247, 0.2));
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all var(--transition-speed, 0.3s) ease;
  position: relative;
}

.gen-d98luttd .feature-card:hover {
  background-color: var(--bg-card-hover, #1e326b);
  border-color: var(--accent, #18B4F7);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 180, 247, 0.15);
}

.gen-d98luttd .feature-card.active {
  background-color: var(--bg-card-hover, #1e326b);
  border-color: var(--accent, #18B4F7);
  box-shadow: 0 0 20px rgba(24, 180, 247, 0.2);
}

.gen-d98luttd .icon-wrapper {
  width: 54px;
  height: 54px;
  background: rgba(24, 180, 247, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent, #18B4F7);
  flex-shrink: 0;
  transition: all var(--transition-speed, 0.3s) ease;
}

.gen-d98luttd .feature-card.active .icon-wrapper,
.gen-d98luttd .feature-card:hover .icon-wrapper {
  background: var(--accent, #18B4F7);
  color: #FFFFFF;
}

.gen-d98luttd .icon-wrapper svg {
  width: 26px;
  height: 26px;
}

.gen-d98luttd .card-content {
  flex-grow: 1;
}

.gen-d98luttd .card-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: var(--text-main, #FFFFFF);
}

.gen-d98luttd .card-content p {
  font-size: 14px;
  color: var(--text-muted, #a5b4fc);
  margin: 0;
  line-height: 1.5;
}

.gen-d98luttd .arrow-indicator {
  color: var(--text-muted, #a5b4fc);
  opacity: 0.5;
  transition: all var(--transition-speed, 0.3s) ease;
}

.gen-d98luttd .arrow-indicator svg {
  width: 20px;
  height: 20px;
}

.gen-d98luttd .feature-card.active .arrow-indicator,
.gen-d98luttd .feature-card:hover .arrow-indicator {
  color: var(--accent, #18B4F7);
  opacity: 1;
  transform: translateX(4px);
}

/* Preview Panel */
.gen-d98luttd .preview-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gen-d98luttd .mock-window {
  background: #0b1430;
  border: 1px solid var(--border-color, rgba(24, 180, 247, 0.2));
  border-radius: 24px;
  width: 100%;
  max-width: 420px;
  height: 480px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gen-d98luttd .mock-header {
  background: #111d42;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(24, 180, 247, 0.1);
}

.gen-d98luttd .mock-dots {
  display: flex;
  gap: 6px;
}

.gen-d98luttd .mock-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.gen-d98luttd .mock-dots span:nth-child(1) { background: #ff5f56; }
.gen-d98luttd .mock-dots span:nth-child(2) { background: #ffbd2e; }
.gen-d98luttd .mock-dots span:nth-child(3) { background: #27c93f; }

.gen-d98luttd .mock-title {
  margin-left: 20px;
  font-size: 13px;
  color: var(--text-muted, #a5b4fc);
  font-weight: 500;
}

.gen-d98luttd .mock-body {
  padding: 24px;
  flex-grow: 1;
  position: relative;
  overflow-y: auto;
}

/* Screen Contents */
.gen-d98luttd .screen-content {
  display: none;
  flex-direction: column;
  gap: 16px;
  animation: fadeIn 0.4s ease forwards;
}

.gen-d98luttd .screen-content.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.gen-d98luttd .screen-header {
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

/* Security Items */
.gen-d98luttd .screen-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gen-d98luttd .item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gen-d98luttd .item-title {
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
}

.gen-d98luttd .item-desc {
  font-size: 11px;
  color: var(--text-muted, #a5b4fc);
}

/* Toggle Switch */
.gen-d98luttd .toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}

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

.gen-d98luttd .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: .3s;
  border-radius: 34px;
}

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

.gen-d98luttd input:checked + .slider {
  background-color: var(--accent, #18B4F7);
}

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

.gen-d98luttd .action-btn {
  background: var(--primary, #0057B8);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.gen-d98luttd .action-btn:hover {
  background: var(--primary-hover, #004bb0);
}

/* Bet History Items */
.gen-d98luttd .bet-item {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid transparent;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gen-d98luttd .bet-item.win { border-left-color: var(--success, #10b981); }
.gen-d98luttd .bet-item.loss { border-left-color: #ef4444; }
.gen-d98luttd .bet-item.refund { border-left-color: var(--accent, #18B4F7); }

.gen-d98luttd .bet-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gen-d98luttd .bet-type {
  font-size: 13px;
  font-weight: 500;
}

.gen-d98luttd .bet-date {
  font-size: 11px;
  color: var(--text-muted, #a5b4fc);
}

.gen-d98luttd .bet-result {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gen-d98luttd .bet-amount {
  font-size: 13px;
  font-weight: 600;
}

.gen-d98luttd .status-badge {
  font-size: 10px;
  font-weight: 600;
}

.gen-d98luttd .win .status-badge { color: var(--success, #10b981); }
.gen-d98luttd .loss .status-badge { color: #ef4444; }
.gen-d98luttd .refund .status-badge { color: var(--accent, #18B4F7); }

/* Bonuses Items */
.gen-d98luttd .promo-input-group {
  display: flex;
  gap: 8px;
}

.gen-d98luttd .promo-input-group input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(24, 180, 247, 0.3);
  border-radius: 8px;
  padding: 10px 14px;
  color: white;
  font-size: 13px;
  outline: none;
}

.gen-d98luttd .promo-btn {
  background: var(--accent, #18B4F7);
  border: none;
  color: #0F1C3F;
  font-weight: 700;
  padding: 0 16px;
  border-radius: 8px;
  cursor: pointer;
}

.gen-d98luttd .bonus-progress-card {
  background: rgba(24, 180, 247, 0.05);
  border: 1px solid rgba(24, 180, 247, 0.2);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gen-d98luttd .bonus-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
}

.gen-d98luttd .bonus-value {
  color: var(--accent, #18B4F7);
}

.gen-d98luttd .progress-bar-container {
  background: rgba(255, 255, 255, 0.1);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.gen-d98luttd .progress-bar {
  background: var(--accent, #18B4F7);
  height: 100%;
  border-radius: 4px;
}

.gen-d98luttd .bonus-footer {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted, #a5b4fc);
}

/* Support Items */
.gen-d98luttd .chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 240px;
  overflow-y: auto;
  padding-right: 4px;
}

.gen-d98luttd .message {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.4;
  position: relative;
}

.gen-d98luttd .message.system {
  align-self: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted, #a5b4fc);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 20px;
}

.gen-d98luttd .message.operator {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-bottom-left-radius: 2px;
}

.gen-d98luttd .message.user {
  align-self: flex-end;
  background: var(--primary, #0057B8);
  color: white;
  border-bottom-right-radius: 2px;
}

.gen-d98luttd .msg-time {
  display: block;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
  margin-top: 4px;
}

.gen-d98luttd .chat-input-mock {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted, #a5b4fc);
  cursor: text;
}

.gen-d98luttd .chat-input-mock svg {
  width: 16px;
  height: 16px;
  color: var(--accent, #18B4F7);
}

.gen-z2103dv8.security-section {
  background-color: var(--bg-main, #0F1C3F);
  color: var(--text-main, #FFFFFF);
  font-family: var(--font-family, 'Inter', sans-serif);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gen-z2103dv8 .security-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.gen-z2103dv8 .security-header {
  text-align: center;
  margin-bottom: 50px;
}

.gen-z2103dv8 .security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(24, 180, 247, 0.1);
  border: 1px solid var(--border-color, rgba(24, 180, 247, 0.2));
  padding: 6px 16px;
  border-radius: 30px;
  color: var(--accent, #18B4F7);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gen-z2103dv8 .badge-icon {
  width: 16px;
  height: 16px;
}

.gen-z2103dv8 .security-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-main, #FFFFFF);
}

.gen-z2103dv8 .security-subtitle {
  font-size: 18px;
  color: var(--text-muted, #a5b4fc);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.gen-z2103dv8 .security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

@media (max-width: 992px) {
  .gen-z2103dv8 .security-grid {
    grid-template-columns: 1fr;
  }
}

.gen-z2103dv8 .security-card {
  background-color: var(--bg-card, #162654);
  border: 1px solid var(--border-color, rgba(24, 180, 247, 0.2));
  border-radius: 16px;
  padding: 40px;
  transition: transform var(--transition-speed, 0.3s) ease, border-color var(--transition-speed, 0.3s) ease, box-shadow var(--transition-speed, 0.3s) ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gen-z2103dv8 .security-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-focus, rgba(24, 180, 247, 0.6));
  box-shadow: 0 10px 30px rgba(24, 180, 247, 0.1);
}

.gen-z2103dv8 .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.gen-z2103dv8 .icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: rgba(24, 180, 247, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent, #18B4F7);
  flex-shrink: 0;
}

.gen-z2103dv8 .icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.gen-z2103dv8 .card-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: var(--text-main, #FFFFFF);
}

.gen-z2103dv8 .card-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted, #a5b4fc);
  margin-bottom: 20px;
}

.gen-z2103dv8 .card-body p strong {
  color: var(--accent, #18B4F7);
}

.gen-z2103dv8 .security-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.gen-z2103dv8 .feature-tag {
  background-color: rgba(24, 180, 247, 0.05);
  border: 1px solid rgba(24, 180, 247, 0.15);
  color: var(--text-main, #FFFFFF);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}

.gen-z2103dv8 .user-security-intro {
  font-size: 15px;
  color: var(--text-muted, #a5b4fc);
  margin-bottom: 20px;
}

.gen-z2103dv8 .interactive-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gen-z2103dv8 .list-item {
  background-color: rgba(15, 28, 63, 0.5);
  border: 1px solid rgba(24, 180, 247, 0.1);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-speed, 0.3s) ease;
}

.gen-z2103dv8 .list-item:hover {
  background-color: rgba(15, 28, 63, 0.8);
  border-color: rgba(24, 180, 247, 0.3);
}

.gen-z2103dv8 .list-item-header {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  gap: 16px;
  user-select: none;
}

.gen-z2103dv8 .item-number {
  font-size: 16px;
  font-weight: 800;
  color: var(--accent, #18B4F7);
  background-color: rgba(24, 180, 247, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.gen-z2103dv8 .item-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main, #FFFFFF);
  flex-grow: 1;
  line-height: 1.4;
}

.gen-z2103dv8 .toggle-arrow {
  color: var(--text-muted, #a5b4fc);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-speed, 0.3s) ease;
}

.gen-z2103dv8 .toggle-arrow svg {
  width: 18px;
  height: 18px;
}

.gen-z2103dv8 .list-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed, 0.3s) ease, padding var(--transition-speed, 0.3s) ease;
  padding: 0 20px;
}

.gen-z2103dv8 .list-item-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted, #a5b4fc);
  margin: 0 0 18px 0;
}

/* Active State for Accordion */
.gen-z2103dv8 .list-item.active {
  border-color: var(--accent, #18B4F7);
  background-color: rgba(24, 180, 247, 0.05);
}

.gen-z2103dv8 .list-item.active .toggle-arrow {
  transform: rotate(180deg);
  color: var(--accent, #18B4F7);
}

.gen-z2103dv8 .list-item.active .list-item-content {
  max-height: 150px; /* Safe estimate for content height */
  padding: 0 20px 10px 20px;
}

.gen-5jmdanom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: var(--bg-main, #0F1C3F);
  font-family: var(--font-family, 'Inter', sans-serif);
}

.gen-5jmdanom .update-container {
  width: 100%;
  max-width: 640px;
  perspective: 1000px;
}

.gen-5jmdanom .update-card {
  position: relative;
  background-color: var(--bg-card, #162654);
  border: 1px solid var(--border-color, rgba(24, 180, 247, 0.2));
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-speed, 0.3s) ease, border-color var(--transition-speed, 0.3s) ease, box-shadow var(--transition-speed, 0.3s) ease;
}

.gen-5jmdanom .update-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-focus, rgba(24, 180, 247, 0.6));
  box-shadow: 0 15px 35px rgba(24, 180, 247, 0.15);
}

.gen-5jmdanom .card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(24, 180, 247, 0.08) 0%, transparent 60%);
  pointer-events: none;
  transition: transform 0.5s ease;
}

.gen-5jmdanom .update-card:hover .card-glow {
  transform: translate(5%, 5%);
}

.gen-5jmdanom .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.gen-5jmdanom .icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(24, 180, 247, 0.1);
  border-radius: 12px;
  color: var(--accent, #18B4F7);
}

.gen-5jmdanom .shield-icon {
  width: 26px;
  height: 26px;
}

.gen-5jmdanom .status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(16, 185, 129, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.gen-5jmdanom .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--success, #10b981);
  border-radius: 50%;
  position: relative;
}

.gen-5jmdanom .pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--success, #10b981);
  animation: pulse 2s infinite;
}

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

.gen-5jmdanom .status-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--success, #10b981);
}

.gen-5jmdanom .update-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main, #FFFFFF);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.gen-5jmdanom .update-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted, #a5b4fc);
  margin: 0 0 28px 0;
}

.gen-5jmdanom .card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border-color, rgba(24, 180, 247, 0.1));
  padding-top: 24px;
}

.gen-5jmdanom .action-btn {
  background-color: var(--primary, #0057B8);
  color: var(--text-main, #FFFFFF);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-speed, 0.3s), transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  position: relative;
}

.gen-5jmdanom .action-btn:hover {
  background-color: var(--primary-hover, #004bb0);
}

.gen-5jmdanom .action-btn:active {
  transform: scale(0.98);
}

.gen-5jmdanom .btn-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gen-5jmdanom .refresh-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.5s ease;
}

.gen-5jmdanom .action-btn:hover .refresh-icon {
  transform: rotate(180deg);
}

.gen-5jmdanom .loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  position: absolute;
}

.gen-5jmdanom .hidden {
  display: none !important;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.gen-5jmdanom .meta-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.gen-5jmdanom .meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted, #a5b4fc);
  opacity: 0.7;
}

.gen-5jmdanom .meta-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-main, #FFFFFF);
}

@media (max-width: 480px) {
  .gen-5jmdanom .card-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .gen-5jmdanom .meta-info {
    align-items: center;
    margin-top: 8px;
  }
  .gen-5jmdanom .action-btn {
    width: 100%;
  }
}

.gen-02qfke09.interface-experience-section {
  background-color: var(--bg-main, #0F1C3F);
  color: var(--text-main, #FFFFFF);
  font-family: var(--font-family, 'Inter', sans-serif);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.gen-02qfke09 .container {
  max-width: 1200px;
  margin: 0 auto;
}

.gen-02qfke09 .grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .gen-02qfke09 .grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Left Column Styling */
.gen-02qfke09 .badge {
  display: inline-block;
  background-color: var(--border-color, rgba(24, 180, 247, 0.2));
  color: var(--accent, #18B4F7);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid var(--border-focus, rgba(24, 180, 247, 0.4));
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gen-02qfke09 .section-title {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-main, #FFFFFF);
}

@media (max-width: 576px) {
  .gen-02qfke09 .section-title {
    font-size: 28px;
  }
}

.gen-02qfke09 .text-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.gen-02qfke09 .highlight-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-main, #FFFFFF);
  font-weight: 500;
}

.gen-02qfke09 .secondary-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted, #a5b4fc);
}

/* Interactive Feature Selector Buttons */
.gen-02qfke09 .feature-selectors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 480px) {
  .gen-02qfke09 .feature-selectors {
    grid-template-columns: 1fr;
  }
}

.gen-02qfke09 .feature-btn {
  background-color: var(--bg-card, #162654);
  border: 1px solid var(--border-color, rgba(24, 180, 247, 0.2));
  color: var(--text-muted, #a5b4fc);
  padding: 14px 20px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-speed, 0.3s) ease;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
}

.gen-02qfke09 .feature-btn:hover {
  background-color: var(--bg-card-hover, #1e326b);
  color: var(--text-main, #FFFFFF);
  border-color: var(--accent, #18B4F7);
  transform: translateY(-2px);
}

.gen-02qfke09 .feature-btn.active {
  background-color: var(--primary, #0057B8);
  color: var(--text-main, #FFFFFF);
  border-color: var(--accent, #18B4F7);
  box-shadow: 0 0 15px rgba(24, 180, 247, 0.3);
}

.gen-02qfke09 .feature-btn .icon {
  font-size: 20px;
}

/* Right Column: Mockup Styling */
.gen-02qfke09 .mockup-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gen-02qfke09 .mockup-wrapper {
  width: 100%;
  max-width: 480px;
  background-color: var(--bg-card, #162654);
  border-radius: 20px;
  border: 1px solid var(--border-color, rgba(24, 180, 247, 0.2));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gen-02qfke09 .mockup-wrapper:hover {
  transform: translateY(-5px);
}

.gen-02qfke09 .mockup-header {
  background-color: rgba(15, 28, 63, 0.8);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border-color, rgba(24, 180, 247, 0.2));
}

.gen-02qfke09 .window-dots {
  display: flex;
  gap: 6px;
}

.gen-02qfke09 .window-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.gen-02qfke09 .window-dots .dot.red { background-color: #ff5f56; }
.gen-02qfke09 .window-dots .dot.yellow { background-color: #ffbd2e; }
.gen-02qfke09 .window-dots .dot.green { background-color: #27c93f; }

.gen-02qfke09 .mockup-search-bar {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--text-muted, #a5b4fc);
  flex-grow: 1;
  font-family: monospace;
  text-align: center;
}

.gen-02qfke09 .mockup-body {
  padding: 24px;
  min-height: 280px;
  position: relative;
}

/* Tab Content Switching */
.gen-02qfke09 .mockup-tab-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.gen-02qfke09 .mockup-tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.gen-02qfke09 .mockup-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.gen-02qfke09 .mockup-title-row h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--text-main, #FFFFFF);
}

.gen-02qfke09 .count-badge,
.gen-02qfke09 .status-pill {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.gen-02qfke09 .count-badge {
  background-color: rgba(24, 180, 247, 0.15);
  color: var(--accent, #18B4F7);
}

.gen-02qfke09 .status-pill.success {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--success, #10b981);
}

/* Favorites Grid */
.gen-02qfke09 .mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gen-02qfke09 .mockup-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 8px;
}

.gen-02qfke09 .card-img-placeholder {
  height: 60px;
  background: linear-gradient(135deg, var(--primary, #0057B8), var(--accent, #18B4F7));
  border-radius: 6px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.gen-02qfke09 .card-name {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gen-02qfke09 .card-tag {
  font-size: 9px;
  color: var(--accent, #18B4F7);
}

/* History List */
.gen-02qfke09 .history-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gen-02qfke09 .history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
}

.gen-02qfke09 .history-item .time {
  color: var(--text-muted, #a5b4fc);
  font-size: 11px;
}

.gen-02qfke09 .history-item .game-title {
  font-weight: 600;
}

.gen-02qfke09 .history-item .win-amount.positive {
  color: var(--success, #10b981);
  font-weight: 700;
}

.gen-02qfke09 .history-item .win-amount.negative {
  color: #ef4444;
}

/* Autoplay Settings */
.gen-02qfke09 .autoplay-settings {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gen-02qfke09 .setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
}

.gen-02qfke09 .setting-val {
  color: var(--accent, #18B4F7);
  font-weight: 700;
}

/* Switch Toggle */
.gen-02qfke09 .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.gen-02qfke09 .switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.gen-02qfke09 .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.gen-02qfke09 .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

.gen-02qfke09 input:checked + .slider {
  background-color: var(--accent, #18B4F7);
}

.gen-02qfke09 input:checked + .slider:before {
  transform: translateX(20px);
}

.gen-02qfke09 .slider.round {
  border-radius: 34px;
}

.gen-02qfke09 .slider.round:before {
  border-radius: 50%;
}

/* Notifications Stack */
.gen-02qfke09 .notification-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gen-02qfke09 .notification-toast {
  background-color: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--success, #10b981);
  padding: 12px;
  border-radius: 0 8px 8px 0;
}

.gen-02qfke09 .notification-toast:last-child {
  border-left-color: var(--accent, #18B4F7);
}

.gen-02qfke09 .toast-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-bottom: 4px;
}

.gen-02qfke09 .toast-dot {
  width: 6px;
  height: 6px;
  background-color: var(--success, #10b981);
  border-radius: 50%;
}

.gen-02qfke09 .toast-dot.blue {
  background-color: var(--accent, #18B4F7);
}

.gen-02qfke09 .toast-time {
  margin-left: auto;
  color: var(--text-muted, #a5b4fc);
  font-size: 10px;
}

.gen-02qfke09 .toast-body {
  font-size: 12px;
  color: var(--text-muted, #a5b4fc);
  margin: 0;
  line-height: 1.4;
}

.gen-02qfke09 .clear-btn {
  font-size: 12px;
  color: var(--text-muted, #a5b4fc);
  cursor: pointer;
  text-decoration: underline;
}

.gen-02qfke09 .clear-btn:hover {
  color: var(--text-main, #FFFFFF);
}

.gen-thh75xnf {
  background-color: var(--bg-main, #0F1C3F);
  color: var(--text-main, #FFFFFF);
  font-family: var(--font-family, 'Inter', sans-serif);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.gen-thh75xnf .container {
  max-width: 1200px;
  margin: 0 auto;
}

.gen-thh75xnf .interface-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 991px) {
  .gen-thh75xnf .interface-showcase-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Left Column Styling */
.gen-thh75xnf .text-content-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gen-thh75xnf .badge {
  background-color: rgba(24, 180, 247, 0.15);
  color: var(--accent, #18B4F7);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid var(--border-color, rgba(24, 180, 247, 0.2));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gen-thh75xnf .section-title {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-main, #FFFFFF);
}

.gen-thh75xnf .main-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-main, #FFFFFF);
  margin-bottom: 20px;
  opacity: 0.95;
}

.gen-thh75xnf .sub-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted, #a5b4fc);
  margin-bottom: 32px;
}

.gen-thh75xnf .features-mini-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.gen-thh75xnf .mini-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main, #FFFFFF);
}

.gen-thh75xnf .icon-wrapper {
  background-color: var(--bg-card, #162654);
  color: var(--accent, #18B4F7);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color, rgba(24, 180, 247, 0.2));
}

/* Right Column: Interactive Mockup */
.gen-thh75xnf .interactive-mockup-side {
  position: relative;
}

.gen-thh75xnf .mockup-card {
  background-color: var(--bg-card, #162654);
  border: 1px solid var(--border-color, rgba(24, 180, 247, 0.2));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gen-thh75xnf .mockup-header {
  background-color: rgba(15, 28, 63, 0.8);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border-color, rgba(24, 180, 247, 0.2));
}

.gen-thh75xnf .window-dots {
  display: flex;
  gap: 6px;
}

.gen-thh75xnf .window-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.gen-thh75xnf .window-dots .red { background-color: #ff5f56; }
.gen-thh75xnf .window-dots .yellow { background-color: #ffbd2e; }
.gen-thh75xnf .window-dots .green { background-color: #27c93f; }

.gen-thh75xnf .mockup-search-bar {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.gen-thh75xnf .mockup-search-bar input {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 12px 8px 34px;
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.gen-thh75xnf .mockup-search-bar input:focus {
  border-color: var(--accent, #18B4F7);
}

.gen-thh75xnf .search-icon {
  position: absolute;
  left: 12px;
  color: var(--text-muted, #a5b4fc);
  pointer-events: none;
}

/* Tabs */
.gen-thh75xnf .mockup-tabs {
  display: flex;
  background-color: rgba(15, 28, 63, 0.4);
  padding: 8px 12px;
  gap: 8px;
  border-bottom: 1px solid rgba(24, 180, 247, 0.1);
}

.gen-thh75xnf .tab-btn {
  background: none;
  border: none;
  color: var(--text-muted, #a5b4fc);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gen-thh75xnf .tab-btn:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
}

.gen-thh75xnf .tab-btn.active {
  color: #fff;
  background-color: var(--accent, #18B4F7);
}

/* Tab Content */
.gen-thh75xnf .tab-content-wrapper {
  padding: 20px;
  min-height: 240px;
}

.gen-thh75xnf .tab-pane {
  display: none;
}

.gen-thh75xnf .tab-pane.active {
  display: block;
}

/* Games Grid */
.gen-thh75xnf .games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gen-thh75xnf .game-card {
  background-color: rgba(15, 28, 63, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.gen-thh75xnf .game-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent, #18B4F7);
}

.gen-thh75xnf .game-img-placeholder {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.gen-thh75xnf .aviator-bg { background: linear-gradient(135deg, #e63946, #833ab4); }
.gen-thh75xnf .plinko-bg { background: linear-gradient(135deg, #ff9f43, #ff5252); }
.gen-thh75xnf .gates-bg { background: linear-gradient(135deg, #f1c40f, #e67e22); }
.gen-thh75xnf .sweet-bg { background: linear-gradient(135deg, #ec4899, #8b5cf6); }

.gen-thh75xnf .game-info {
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gen-thh75xnf .game-title {
  font-size: 13px;
  font-weight: 600;
}

.gen-thh75xnf .fav-toggle-btn {
  background: none;
  border: none;
  color: var(--text-muted, #a5b4fc);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: color 0.2s, background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gen-thh75xnf .fav-toggle-btn:hover {
  color: #ff4757;
  background-color: rgba(255, 71, 87, 0.1);
}

.gen-thh75xnf .fav-toggle-btn.favorited {
  color: #ff4757;
  fill: #ff4757;
}

/* Empty State */
.gen-thh75xnf .empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted, #a5b4fc);
}

.gen-thh75xnf .empty-state svg {
  margin-bottom: 12px;
  opacity: 0.6;
}

.gen-thh75xnf .empty-state p {
  font-size: 13px;
  max-width: 240px;
  line-height: 1.5;
}

/* History List */
.gen-thh75xnf .history-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gen-thh75xnf .history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background-color: rgba(15, 28, 63, 0.6);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}

.gen-thh75xnf .history-item.win {
  border-left: 3px solid var(--success, #10b981);
}

.gen-thh75xnf .history-item.lose {
  border-left: 3px solid #ef4444;
}

.gen-thh75xnf .history-multiplier {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
}

.gen-thh75xnf .history-item.win .history-amount {
  color: var(--success, #10b981);
  font-weight: 600;
}

.gen-thh75xnf .history-item.lose .history-amount {
  color: #ef4444;
}

/* Mockup Footer / Extra Features */
.gen-thh75xnf .mockup-footer {
  background-color: rgba(15, 28, 63, 0.8);
  padding: 16px 20px;
  border-top: 1px solid var(--border-color, rgba(24, 180, 247, 0.2));
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.gen-thh75xnf .toggle-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gen-thh75xnf .toggle-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted, #a5b4fc);
}

/* Switch Styling */
.gen-thh75xnf .switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}

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

.gen-thh75xnf .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: .3s;
}

.gen-thh75xnf .slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
}

.gen-thh75xnf input:checked + .slider {
  background-color: var(--accent, #18B4F7);
}

.gen-thh75xnf input:checked + .slider:before {
  transform: translateX(16px);
}

.gen-thh75xnf .slider.round {
  border-radius: 20px;
}

.gen-thh75xnf .slider.round:before {
  border-radius: 50%;
}

/* Toast Notifications */
.gen-thh75xnf .toast-container {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
  pointer-events: none;
}

.gen-thh75xnf .toast {
  background-color: #1e326b;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  border-left: 3px solid var(--accent, #18B4F7);
  animation: toastSlideIn 0.3s ease forwards;
  pointer-events: auto;
}

@keyframes toastSlideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.gen-thh75xnf .no-results {
  text-align: center;
  padding: 20px;
  color: var(--text-muted, #a5b4fc);
  font-size: 13px;
}

.gen-6x7fo8qu {
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.gen-6x7fo8qu:hover {
  border-color: #ffffff !important;
  background-color: rgba(24, 180, 247, 0.1) !important;
}

.gen-o37bde32 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 180, 247, 0.05);
  border: 2px dashed rgba(24, 180, 247, 0.4);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.gen-o37bde32 .app-screenshot-img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}
.gen-o37bde32 .placeholder-instruction {
  text-align: center;
  padding: 20px;
  color: #18b4f7;
  font-family: 'Inter', sans-serif;
}
.gen-o37bde32 .instruction-title {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.gen-o37bde32 .instruction-desc {
  font-size: 0.85rem;
  opacity: 0.85;
  display: block;
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.4;
}
.gen-o37bde32 .placeholder-instruction code {
  background: rgba(24, 180, 247, 0.15);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.8rem;
}

.gen-n3f6tlw7 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: rgba(24, 180, 247, 0.05);
  border: 2px dashed rgb(24, 180, 247);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
}

.gen-n3f6tlw7 img.placeholder-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: none;
}

.gen-n3f6tlw7 .placeholder-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgb(24, 180, 247);
  font-family: 'Inter', sans-serif;
  gap: 10px;
}

.gen-n3f6tlw7 .placeholder-fallback svg {
  opacity: 0.8;
  margin-bottom: 5px;
}

.gen-n3f6tlw7 .placeholder-fallback span {
  font-size: 16px;
  font-weight: 600;
}

.gen-n3f6tlw7 .placeholder-fallback .subtext {
  font-size: 12px;
  opacity: 0.7;
  max-width: 280px;
  line-height: 1.4;
}

.gen-4u2cj0pb {
  max-width: 220px;
  height: auto;
  display: block;
}

._extracted-style-n_S_ { padding: 10px 20px; font-size: 0.9rem; }

._extracted-style-6jW4 { padding: 10px 20px; font-size: 0.9rem; }

._extracted-style-uSdR { padding: 10px 20px; font-size: 0.9rem; }

._extracted-style-HOs9 { font-weight:normal; }

._extracted-style-UKMd { font-size: 23pt; font-family: Arial, sans-serif; color: rgb(0, 0, 0); background-color: transparent; font-weight: 700; font-variant: normal; vertical-align: baseline; white-space: pre-wrap; }

._extracted-style-XOJL { display: none; }

._extracted-style-okDq { display: flex; }

._extracted-style-uIoR { height: 400px; }

._extracted-style-otWi { font-size: 3rem; margin-bottom: 15px; display: block; }

._extracted-style-hJKS { color: rgb(16, 185, 129); }

._extracted-style-gKKY { opacity: 0.6; }

._extracted-style-U7t1 { width:14px; height:14px; display:inline-block; vertical-align:middle; margin-right:4px; }

._extracted-style-wZ8t { text-align: center; }

._extracted-style-9ZoH { height: 300px; margin-bottom: 40px; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 2px dashed #18b4f7; border-radius: 16px; background: rgba(24, 180, 247, 0.05); overflow: hidden; text-align: center; padding: 20px; box-sizing: border-box; }

._extracted-style-Oz9T { max-width: 100%; max-height: 100%; object-fit: contain; display: none; }

._extracted-style-T-Xw { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: #18b4f7; }

._extracted-style-Wbqm { opacity: 0.8; }

._extracted-style-pdOK { font-weight: bold; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; }

._extracted-style-W_HN { font-size: 13px; opacity: 0.8; max-width: 320px; line-height: 1.4; }

._extracted-style-l2EJ { text-align: center; }

._extracted-style-rtSE { text-align: center; max-width: 800px; margin: 0 auto 50px auto; }

._extracted-style-J1Kj { text-align: center; max-width: 800px; margin: 0 auto 50px auto; }

._extracted-style-hLGe { margin-bottom: 0; color: var(--text-main); }

._extracted-style-p2QK { text-align: center; }

._extracted-style-2l_G { max-width: 800px; margin: 0 auto; text-align: center; }

._extracted-style-0Loa { max-width: 800px; margin: 0 auto; text-align: center; }

._extracted-style-6Dq5 { width: 75%; }

._extracted-style-qAxx { margin-top: 30px; }

._extracted-style-ACLG { max-height: 108px; }

._extracted-style-E41f { display: none; }

._extracted-style-y7xJ { text-align: center; max-width: 800px; margin: 0 auto; }

._extracted-style-3qL4 { text-align: center; max-width: 800px; margin: 0 auto; }

._extracted-style-yCWD { max-height: 96px; }

._extracted-style-y9np { margin-top: 30px; }

._extracted-style-cfhN { margin-top: 30px; }

._extracted-style-bjDS { margin-top: 10px; font-size: 0.8rem; opacity: 0.6; }