/*
CTC Separate Stylesheet
Updated: 2026-04-20 07:25:05
Theme Name: Twenty Twenty-One Child
Theme URI: https://wordpress.org/themes/twentytwentyone/
Template: twentytwentyone
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Tags: one-column,accessibility-ready,custom-colors,custom-menu,custom-logo,editor-style,featured-images,footer-widgets,block-patterns,rtl-language-support,sticky-post,threaded-comments,translation-ready,blog,portfolio
Version: 2.7.1776669905
*/


/* slots */
    :root {
      --gold: #f0b429;
      --gold-light: #ffd166;
      --purple: #9b5de5;
      --purple-light: #c77dff;
      --dark: #0a0d14;
      --dark2: #111827;
      --dark3: #1a2236;
      --dark4: #1e2d45;
      --accent: #f0b429;
      --accent2: #ff4d6d;
    }
    * { box-sizing: border-box; }
    h1,h2,h3,h4 { font-family: 'Rajdhani', sans-serif; }

    /* ── HERO ── */
    .hero-bg {
      background: linear-gradient(135deg, #07040f 0%, #140a24 50%, #0a050f 100%);
      position: relative;
      overflow: hidden;
    }
    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 70% 40%, rgba(155,93,229,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 80%, rgba(240,180,41,0.10) 0%, transparent 50%);
    }
    .grid-overlay {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(155,93,229,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(155,93,229,0.05) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    /* spinning reel decorations */
    .reel-deco {
      position: absolute;
      right: -40px; top: 50%;
      transform: translateY(-50%);
      font-size: 120px;
      opacity: 0.04;
      pointer-events: none;
      animation: spinY 8s linear infinite;
    }
    @keyframes spinY {
      from { transform: translateY(-50%) rotateY(0deg); }
      to   { transform: translateY(-50%) rotateY(360deg); }
    }

    /* ── TEXT GRADIENTS ── */
    .gold-text {
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .purple-text {
      background: linear-gradient(90deg, var(--purple), var(--purple-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ── BUTTONS ── */
    .btn-gold {
      background: linear-gradient(135deg, #f0b429, #e09010);
      color: #0a0d14;
      font-weight: 700;
      font-family: 'Rajdhani', sans-serif;
      letter-spacing: 1px;
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-block;
    }
    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(240,180,41,0.45);
    }
    .btn-purple {
      background: linear-gradient(135deg, #9b5de5, #7b2fd6);
      color: #fff;
      font-weight: 700;
      font-family: 'Rajdhani', sans-serif;
      letter-spacing: 1px;
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-block;
    }
    .btn-purple:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(155,93,229,0.45);
    }
    .btn-outline-gold {
      border: 1.5px solid var(--gold);
      color: var(--gold);
      font-weight: 700;
      font-family: 'Rajdhani', sans-serif;
      letter-spacing: 1px;
      transition: all 0.2s;
      display: inline-block;
    }
    .btn-outline-gold:hover {
      background: var(--gold);
      color: #0a0d14;
      box-shadow: 0 8px 25px rgba(240,180,41,0.3);
    }

    /* ── SECTION LABEL ── */
    .section-label {
      display: inline-block;
      font-family: 'Rajdhani', sans-serif;
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--purple-light);
      background: rgba(155,93,229,0.1);
      border: 1px solid rgba(155,93,229,0.25);
      padding: 4px 14px;
      border-radius: 20px;
      margin-bottom: 14px;
    }

    /* ── FEATURE CARDS ── */
    .feature-card {
      background: linear-gradient(135deg, rgba(26,34,54,0.9), rgba(14,20,36,0.9));
      border: 1px solid rgba(155,93,229,0.12);
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }
    .feature-card:hover {
      border-color: rgba(155,93,229,0.45);
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(155,93,229,0.12);
    }
    .icon-box {
      width: 52px; height: 52px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px;
      background: linear-gradient(135deg, rgba(155,93,229,0.18), rgba(155,93,229,0.06));
      border: 1px solid rgba(155,93,229,0.22);
    }

    /* ── SLOT CATEGORY CARDS ── */
    .slot-card {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,0.07);
      transition: all 0.3s;
      overflow: hidden;
    }
    .slot-card:hover {
      border-color: var(--gold);
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(240,180,41,0.15);
    }
    .slot-card img { transition: transform 0.4s; }
    .slot-card:hover img { transform: scale(1.06); }
    .slot-overlay {
      opacity: 0;
      transition: opacity 0.3s;
      background: linear-gradient(to top, rgba(155,93,229,0.25), transparent);
    }
    .slot-card:hover .slot-overlay { opacity: 1; }

    /* ── STEPS ── */
    .step-card {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,0.07);
      transition: border-color 0.3s;
    }
    .step-card:hover { border-color: rgba(240,180,41,0.4); }
    .step-num {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), #e09010);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Rajdhani', sans-serif;
      font-size: 26px; font-weight: 700;
      color: #0a0d14;
      box-shadow: 0 4px 20px rgba(240,180,41,0.4);
      flex-shrink: 0;
    }

    /* ── STRATEGY SECTION ── */
    .strategy-section {
      background: linear-gradient(135deg, #07040f 0%, #120822 100%);
      position: relative; overflow: hidden;
    }
    .strategy-section::before {
      content: '';
      position: absolute;
      left: -80px; top: -80px;
      width: 350px; height: 350px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(155,93,229,0.07) 0%, transparent 70%);
    }

    /* ── TIPS CARDS ── */
    .tip-card {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,0.07);
      transition: all 0.3s;
    }
    .tip-card:hover {
      border-color: rgba(155,93,229,0.4);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(155,93,229,0.1);
    }

    /* ── PROMO SECTION ── */
    .promo-section {
      background: linear-gradient(135deg, #06040e, #130822, #06040e);
      position: relative; overflow: hidden;
    }
    .promo-section::after {
      content: '';
      position: absolute;
      right: -60px; top: -60px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(240,180,41,0.07) 0%, transparent 70%);
    }
    .promo-box {
      background: linear-gradient(135deg, rgba(240,180,41,0.1), rgba(240,180,41,0.03));
      border: 1px solid rgba(240,180,41,0.25);
    }

    /* ── MOBILE BANNER ── */
    .mobile-banner {
      background: linear-gradient(135deg, rgba(155,93,229,0.12), rgba(155,93,229,0.04));
      border: 1px solid rgba(155,93,229,0.2);
    }

    /* ── FAQ ── */
    .faq-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
    .faq-item summary {
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-chevron { transition: transform 0.3s; color: var(--gold); }
    details[open] .faq-chevron { transform: rotate(45deg); }

    /* ── BLOG CARDS ── */
    .blog-card {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,0.07);
      overflow: hidden;
      transition: all 0.3s;
    }
    .blog-card:hover {
      border-color: rgba(240,180,41,0.3);
      transform: translateY(-4px);
      box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    }
    .blog-card img { transition: transform 0.4s; }
    .blog-card:hover img { transform: scale(1.05); }

    /* ── DIVIDERS ── */
    .gold-divider {
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    .purple-divider {
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--purple), transparent);
    }

    /* ── CTA ── */
    .cta-section {
      background: linear-gradient(135deg, #07040f, #140a24, #07040f);
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(155,93,229,0.12), transparent 60%);
    }

    /* ── BREADCRUMB ── */
    .breadcrumb { color: rgba(255,255,255,0.45); font-size: 14px; }
    .breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
    .breadcrumb a:hover { color: var(--gold); }
    .breadcrumb span { color: rgba(255,255,255,0.7); }

    /* ── SPIN BADGE ── */
    @keyframes spinBadge {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    .spin-badge {
      animation: spinBadge 6s linear infinite;
      display: inline-block;
    }
/*  */

/* welcome bonus */

  /* ── BREADCRUMB ── */
  .breadcrumb {
    background: #13151e;
    border-bottom: 1px solid #1e2130;
    padding: 8px 30px;
    font-size: 13px;
    color: #777;
  }
  .breadcrumb a { color: #f5a623; text-decoration: none; }

  /* ── MAIN CONTENT ── */
  .content-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 36px 30px 60px;
  }

  .content-wrap h1 {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 24px;
  }

  .content-wrap h2 {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 14px;
    margin-top: 36px;
  }

  .content-wrap h3 {
    font-size: 17px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 12px;
    margin-top: 28px;
  }

  .content-wrap p {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.8;
  }

  .content-wrap img {
    width: 100%;
    display: block;
    border-radius: 6px;
    margin: 20px 0;
  }

  /* Step layout — image and text side by side */
  .step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    margin: 24px 0;
  }
  .step-row.reverse { direction: rtl; }
  .step-row.reverse > * { direction: ltr; }

  .step-row img {
    margin: 0;
    border-radius: 6px;
    width: 100%;
  }

  .step-text h3 {
    font-size: 16px;
    color: #f5a623;
    margin-bottom: 8px;
    margin-top: 0;
  }

  .step-text p {
    margin-bottom: 0;
  }

  /* Bonus details box */
  .bonus-details {
    background: #13151e;
    border: 1px solid #1e2130;
    border-radius: 6px;
    padding: 20px 24px;
    margin: 20px 0;
    font-size: 14px;
    color: #bbb;
    line-height: 1.9;
  }
  .bonus-details strong { color: #ddd; }
  .bonus-details em { color: #888; font-style: italic; }

  /* Rules list */
  .content-wrap ol {
    padding-left: 20px;
    margin-bottom: 16px;
    color: #bbb;
  }
  .content-wrap ol li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.7;
  }

  hr.divider {
    border: none;
    border-top: 1px solid #1e2130;
    margin: 40px 0;
  }

  /* ── LATEST BLOGS ── */
  .blogs-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 30px 50px;
  }
  .blogs-section h2 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 24px;
    font-weight: bold;
  }
  .blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .blog-card {
    background: #13151e;
    border: 1px solid #1e2130;
    border-radius: 6px;
    overflow: hidden;
  }
  .blog-card img {
    width: 100%;
    display: block;
    height: 160px;
    object-fit: cover;
  }
  .blog-card-body {
    padding: 14px;
  }
  .blog-card-body h3 {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.5;
  }
  .blog-card-body a {
    font-size: 13px;
    color: #f5a623;
    text-decoration: none;
    font-weight: bold;
  }
  .blog-card-body a:hover { text-decoration: underline; }

  /* ── NEWSLETTER ── */
  .newsletter-section {
    background: #13151e;
    border-top: 1px solid #1e2130;
    border-bottom: 1px solid #1e2130;
    padding: 30px;
    text-align: center;
  }
  .newsletter-section h2 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: bold;
  }
  .newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .newsletter-form input {
    padding: 10px 16px;
    border-radius: 5px;
    border: 1px solid #2a2d3a;
    background: #0f1117;
    color: #ddd;
    font-size: 14px;
    width: 280px;
    outline: none;
  }
  .newsletter-form input::placeholder { color: #666; }
  .newsletter-form button {
    background: #f5a623;
    color: #000;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
  }
  .newsletter-form button:hover { background: #e09410; }

  @media (max-width: 768px) {
    .step-row { grid-template-columns: 1fr; }
    .step-row.reverse { direction: ltr; }
    .blogs-grid { grid-template-columns: 1fr; }
    .content-wrap, .blogs-section { padding-left: 16px; padding-right: 16px; }
    .breadcrumb { padding-left: 16px; }
  }
/*  */

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


  /* ── BREADCRUMB ── */
  .breadcrumb {
    background: #13151e;
    border-bottom: 1px solid #1e2130;
    padding: 8px 30px;
    font-size: 13px;
    color: #777;
  }
  .breadcrumb a { color: #f5a623; text-decoration: none; }

  /* ── PAGE TITLE ── */
  .page-title {
    padding: 36px 30px 10px;
    max-width: 960px;
    margin: 0 auto;
  }
  .page-title h1 {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 4px;
  }

  /* ── MAIN CONTENT ── */
  .content-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 10px 30px 60px;
  }

  /* Each promotion block */
  .promo-block {
    margin-bottom: 50px;
  }

  .promo-block img {
    width: 100%;
    display: block;
    border-radius: 6px;
    margin-bottom: 20px;
  }

  .promo-block ol {
    padding-left: 20px;
    margin-bottom: 16px;
    color: #bbb;
  }
  .promo-block ol li {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.7;
  }

  .promo-block ul {
    padding-left: 20px;
    margin-bottom: 16px;
    color: #bbb;
  }
  .promo-block ul li {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.7;
    list-style: disc;
  }

  .promo-block p {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.8;
  }

  .promo-block p strong {
    color: #ddd;
  }

  hr.promo-divider {
    border: none;
    border-top: 1px solid #1e2130;
    margin-bottom: 50px;
  }

  /* ── LATEST BLOGS ── */
  .blogs-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 30px 50px;
  }
  .blogs-section h2 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 24px;
    font-weight: bold;
  }
  .blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .blog-card {
    background: #13151e;
    border: 1px solid #1e2130;
    border-radius: 6px;
    overflow: hidden;
  }
  .blog-card img {
    width: 100%;
    display: block;
    height: 160px;
    object-fit: cover;
  }
  .blog-card-body {
    padding: 14px;
  }
  .blog-card-body h3 {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.5;
  }
  .blog-card-body a {
    font-size: 13px;
    color: #f5a623;
    text-decoration: none;
    font-weight: bold;
  }
  .blog-card-body a:hover { text-decoration: underline; }

  /* ── NEWSLETTER ── */
  .newsletter-section {
    background: #13151e;
    border-top: 1px solid #1e2130;
    border-bottom: 1px solid #1e2130;
    padding: 30px;
    text-align: center;
  }
  .newsletter-section h2 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: bold;
  }
  .newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .newsletter-form input {
    padding: 10px 16px;
    border-radius: 5px;
    border: 1px solid #2a2d3a;
    background: #0f1117;
    color: #ddd;
    font-size: 14px;
    width: 280px;
    outline: none;
  }
  .newsletter-form input::placeholder { color: #666; }
  .newsletter-form button {
    background: #f5a623;
    color: #000;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
  }
  .newsletter-form button:hover { background: #e09410; }

/*  */
/* Aviator */

    :root {
      --gold:        #f0b429;
      --gold-light:  #ffd166;
      --red:         #ff4d6d;
      --red-light:   #ff8096;
      --orange:      #ff6b2b;
      --orange-light:#ffab76;
      --dark:        #0a0c10;
      --dark2:       #10131a;
      --dark3:       #181d28;
      --dark4:       #1f2637;
    }
    * { box-sizing: border-box; }
    body {
      font-family: 'Exo 2', sans-serif;
      background-color: var(--dark);
      color: #e0e6f0;
      margin: 0;
    }
    h1,h2,h3,h4 { font-family: 'Rajdhani', sans-serif; }

    /* ── HERO ── */
    .hero-bg {
      background: linear-gradient(135deg, #08060e 0%, #160a08 45%, #0e0a06 100%);
      position: relative;
      overflow: hidden;
    }
    .hero-bg::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 75% 35%, rgba(255,77,109,0.13) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 75%, rgba(255,107,43,0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(240,180,41,0.06) 0%, transparent 45%);
    }
    .grid-overlay {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,107,43,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,107,43,0.045) 1px, transparent 1px);
      background-size: 50px 50px;
    }
    /* flying plane trail */
    .plane-trail {
      position: absolute;
      top: 22%; right: 8%;
      width: 180px; height: 2px;
      background: linear-gradient(90deg, transparent, rgba(255,107,43,0.4), rgba(255,77,109,0.6));
      border-radius: 2px;
      animation: trailPulse 2.5s ease-in-out infinite;
    }
    .plane-trail::after {
      content: '✈';
      position: absolute;
      right: -18px; top: -12px;
      font-size: 24px;
      color: rgba(255,107,43,0.7);
      animation: planeBob 2.5s ease-in-out infinite;
    }
    @keyframes trailPulse {
      0%,100% { opacity: 0.5; width: 140px; }
      50%      { opacity: 1;   width: 220px; }
    }
    @keyframes planeBob {
      0%,100% { transform: translateY(0px); }
      50%      { transform: translateY(-5px); }
    }

    /* ── MULTIPLIER BADGE ── */
    .multiplier-badge {
      background: linear-gradient(135deg, rgba(255,77,109,0.18), rgba(255,107,43,0.10));
      border: 1px solid rgba(255,107,43,0.35);
      border-radius: 12px;
      padding: 6px 16px;
      font-family: 'Rajdhani', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--orange-light);
      animation: badgePulse 2s ease-in-out infinite;
    }
    @keyframes badgePulse {
      0%,100% { box-shadow: 0 0 0 0 rgba(255,107,43,0); }
      50%      { box-shadow: 0 0 12px 3px rgba(255,107,43,0.2); }
    }

    /* ── TEXT GRADIENTS ── */
    .gold-text {
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .fire-text {
      background: linear-gradient(90deg, var(--red), var(--orange), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .orange-text {
      background: linear-gradient(90deg, var(--orange), var(--orange-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ── BUTTONS ── */
    .btn-gold {
      background: linear-gradient(135deg, #f0b429, #e09010);
      color: #0a0c10;
      font-weight: 700;
      font-family: 'Rajdhani', sans-serif;
      letter-spacing: 1px;
      transition: transform .2s, box-shadow .2s;
      display: inline-block;
    }
    .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(240,180,41,.45); }
    .btn-fire {
      background: linear-gradient(135deg, #ff4d6d, #ff6b2b);
      color: #fff;
      font-weight: 700;
      font-family: 'Rajdhani', sans-serif;
      letter-spacing: 1px;
      transition: transform .2s, box-shadow .2s;
      display: inline-block;
    }
    .btn-fire:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,107,43,.45); }
    .btn-outline-gold {
      border: 1.5px solid var(--gold);
      color: var(--gold);
      font-weight: 700;
      font-family: 'Rajdhani', sans-serif;
      letter-spacing: 1px;
      transition: all .2s;
      display: inline-block;
    }
    .btn-outline-gold:hover { background: var(--gold); color: #0a0c10; box-shadow: 0 8px 25px rgba(240,180,41,.3); }

    /* ── SECTION LABEL ── */
    .section-label {
      display: inline-block;
      font-family: 'Rajdhani', sans-serif;
      font-size: 12px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--orange-light);
      background: rgba(255,107,43,0.10);
      border: 1px solid rgba(255,107,43,0.28);
      padding: 4px 14px;
      border-radius: 20px;
      margin-bottom: 14px;
    }

    /* ── FEATURE CARDS ── */
    .feature-card {
      background: linear-gradient(135deg, rgba(24,29,40,.95), rgba(14,17,26,.95));
      border: 1px solid rgba(255,107,43,0.12);
      transition: border-color .3s, transform .3s, box-shadow .3s;
    }
    .feature-card:hover {
      border-color: rgba(255,107,43,0.45);
      transform: translateY(-4px);
      box-shadow: 0 14px 40px rgba(255,107,43,0.1);
    }
    .icon-box {
      width: 52px; height: 52px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px;
      background: linear-gradient(135deg, rgba(255,107,43,0.18), rgba(255,107,43,0.05));
      border: 1px solid rgba(255,107,43,0.22);
    }

    /* ── HIGHLIGHT CARDS ── */
    .highlight-card {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,0.07);
      transition: all .3s;
      overflow: hidden;
      position: relative;
    }
    .highlight-card:hover {
      border-color: var(--orange);
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(255,107,43,0.15);
    }
    .highlight-card img { transition: transform .4s; }
    .highlight-card:hover img { transform: scale(1.07); }
    .highlight-overlay {
      position: absolute; inset: 0; z-index: 10;
      opacity: 0; transition: opacity .3s;
      background: linear-gradient(to top, rgba(255,77,109,0.25), transparent);
      border-radius: inherit;
    }
    .highlight-card:hover .highlight-overlay { opacity: 1; }

    /* ── STEPS ── */
    .step-card {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,.07);
      transition: border-color .3s;
    }
    .step-card:hover { border-color: rgba(240,180,41,.4); }
    .step-num {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), #e09010);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Rajdhani', sans-serif;
      font-size: 26px; font-weight: 700;
      color: #0a0c10;
      box-shadow: 0 4px 20px rgba(240,180,41,.4);
      flex-shrink: 0;
    }

    /* ── TIPS ── */
    .tip-card {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,.07);
      transition: all .3s;
    }
    .tip-card:hover {
      border-color: rgba(255,107,43,.4);
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(255,107,43,.1);
    }

    /* ── POPULARITY SECTION ── */
    .pop-section {
      background: linear-gradient(135deg, #08050e 0%, #160908 100%);
      position: relative; overflow: hidden;
    }
    .pop-section::before {
      content: '';
      position: absolute; left: -80px; top: -80px;
      width: 380px; height: 380px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,77,109,.07) 0%, transparent 70%);
    }
    .tips-list li {
      padding: 7px 0;
      border-bottom: 1px solid rgba(255,255,255,.06);
      color: rgba(255,255,255,.6);
      font-size: 14px;
      display: flex; align-items: center; gap: 8px;
    }
    .tips-list li::before { content: '→'; color: var(--orange); font-weight: 700; }
    .stat-pill {
      background: rgba(255,107,43,0.1);
      border: 1px solid rgba(255,107,43,0.25);
      border-radius: 10px;
      padding: 12px 16px;
      text-align: center;
    }

    /* ── PROMO SECTION ── */
    .promo-section {
      background: linear-gradient(135deg, #08050e, #160908, #08050e);
      position: relative; overflow: hidden;
    }
    .promo-section::after {
      content: '';
      position: absolute; right: -60px; top: -60px;
      width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(240,180,41,.06) 0%, transparent 70%);
    }
    .promo-box {
      background: linear-gradient(135deg, rgba(240,180,41,.1), rgba(240,180,41,.03));
      border: 1px solid rgba(240,180,41,.25);
    }

    /* ── MOBILE BANNER ── */
    .mobile-banner {
      background: linear-gradient(135deg, rgba(255,107,43,.12), rgba(255,107,43,.04));
      border: 1px solid rgba(255,107,43,.22);
    }

    /* ── FAQ ── */
    .faq-item { border-bottom: 1px solid rgba(255,255,255,.07); }
    .faq-item summary {
      cursor: pointer; list-style: none;
      display: flex; align-items: center; justify-content: space-between;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-chevron { transition: transform .3s; color: var(--gold); font-size: 20px; font-weight: 700; }
    details[open] .faq-chevron { transform: rotate(45deg); }

    /* ── BLOG CARDS ── */
    .blog-card {
      background: var(--dark3);
      border: 1px solid rgba(255,255,255,.07);
      overflow: hidden; transition: all .3s;
    }
    .blog-card:hover {
      border-color: rgba(240,180,41,.3);
      transform: translateY(-4px);
      box-shadow: 0 12px 35px rgba(0,0,0,.3);
    }
    .blog-card img { transition: transform .4s; }
    .blog-card:hover img { transform: scale(1.05); }

    /* ── DIVIDERS ── */
    .gold-divider   { height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
    .fire-divider   { height: 2px; background: linear-gradient(90deg, transparent, var(--red), var(--orange), transparent); }

    /* ── CTA ── */
    .cta-section {
      background: linear-gradient(135deg, #08050e, #160908, #08050e);
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(255,107,43,.12), transparent 60%);
    }

    /* ── BREADCRUMB ── */
    .breadcrumb { color: rgba(255,255,255,.45); font-size: 14px; }
    .breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; }
    .breadcrumb a:hover { color: var(--gold); }
    .breadcrumb span { color: rgba(255,255,255,.7); }

    /* ── LIVE DOT ── */
    .live-dot {
      width: 8px; height: 8px; background: var(--red);
      border-radius: 50%; display: inline-block;
      animation: livePulse 1.5s infinite;
    }
    @keyframes livePulse {
      0%,100% { box-shadow: 0 0 0 0 rgba(255,77,109,.5); }
      50%      { box-shadow: 0 0 0 6px rgba(255,77,109,0); }
    }

/*  */
        /* Hero */
        .hero-bg {
            background: linear-gradient(135deg, #060a14 0%, #0d1a2e 50%, #07111f 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 70% 50%, rgba(0, 229, 255, 0.07) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(240, 180, 41, 0.08) 0%, transparent 50%);
        }

        .grid-overlay {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        /* Gold gradient text */
        .gold-text {
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cyan-text {
            background: linear-gradient(90deg, var(--accent), #80fff7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Buttons */
        .btn-gold {
            background: linear-gradient(135deg, #f0b429, #e09010);
            color: #0a0d14;
            font-weight: 700;
            font-family: 'Rajdhani', sans-serif;
            letter-spacing: 1px;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(240, 180, 41, 0.4);
        }

        .btn-outline {
            border: 1.5px solid var(--accent);
            color: var(--accent);
            font-weight: 700;
            font-family: 'Rajdhani', sans-serif;
            letter-spacing: 1px;
            transition: all 0.2s;
        }

        .btn-outline:hover {
            background: var(--accent);
            color: #0a0d14;
            box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
        }

        .btn-red {
            background: linear-gradient(135deg, #ff4d6d, #c9184a);
            color: white;
            font-weight: 700;
            font-family: 'Rajdhani', sans-serif;
            letter-spacing: 1px;
            transition: all 0.2s;
        }

        .btn-red:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 77, 109, 0.4);
        }

        /* Section */
        .section-dark {
            background: var(--dark2);
        }

        .section-darker {
            background: var(--dark);
        }

        .section-mid {
            background: var(--dark3);
        }

        /* Feature card */
        .feature-card {
            background: linear-gradient(135deg, rgba(26, 34, 54, 0.9), rgba(14, 20, 36, 0.9));
            border: 1px solid rgba(0, 229, 255, 0.12);
            transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
        }

        .feature-card:hover {
            border-color: rgba(0, 229, 255, 0.4);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 229, 255, 0.1);
        }

        .icon-box {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(0, 229, 255, 0.05));
            border: 1px solid rgba(0, 229, 255, 0.2);
            font-size: 22px;
        }

        /* Game card */
        .game-card {
            background: var(--dark3);
            border: 1px solid rgba(255, 255, 255, 0.07);
            transition: all 0.3s;
            overflow: hidden;
        }

        .game-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(240, 180, 41, 0.15);
        }

        .game-card:hover .game-overlay {
            opacity: 1;
        }

        .game-overlay {
            opacity: 0;
            transition: opacity 0.3s;
            background: linear-gradient(to top, rgba(240, 180, 41, 0.2), transparent);
        }

        /* Step circle */
        .step-num {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold), #e09010);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Rajdhani', sans-serif;
            font-size: 26px;
            font-weight: 700;
            color: #0a0d14;
            box-shadow: 0 4px 20px rgba(240, 180, 41, 0.4);
            flex-shrink: 0;
        }

        .step-card {
            background: var(--dark3);
            border: 1px solid rgba(255, 255, 255, 0.07);
            transition: border-color 0.3s;
        }

        .step-card:hover {
            border-color: rgba(240, 180, 41, 0.4);
        }

        /* Bet type pill */
        .bet-pill {
            background: var(--dark3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.2s;
            cursor: default;
        }

        .bet-pill:hover {
            border-color: var(--gold);
            background: rgba(240, 180, 41, 0.08);
            color: var(--gold);
        }

        /* FAQ */
        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }

        .faq-item summary {
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-chevron {
            transition: transform 0.3s;
        }

        details[open] .faq-chevron {
            transform: rotate(45deg);
        }

        /* Blog card */
        .blog-card {
            background: var(--dark3);
            border: 1px solid rgba(255, 255, 255, 0.07);
            overflow: hidden;
            transition: all 0.3s;
        }

        .blog-card:hover {
            border-color: rgba(240, 180, 41, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        }

        .blog-card img {
            transition: transform 0.4s;
        }

        .blog-card:hover img {
            transform: scale(1.05);
        }

        /* Divider */
        .gold-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        /* Section label */
        .section-label {
            display: inline-block;
            font-family: 'Rajdhani', sans-serif;
            font-size: 12px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            background: rgba(0, 229, 255, 0.08);
            border: 1px solid rgba(0, 229, 255, 0.2);
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 14px;
        }

        /* Live section */
        .live-section {
            background: linear-gradient(135deg, #060e1c 0%, #0d1a2e 100%);
            position: relative;
            overflow: hidden;
        }

        .live-section::after {
            content: '';
            position: absolute;
            right: -100px;
            top: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
        }

        /* Promo box */
        .promo-box {
            background: linear-gradient(135deg, rgba(240, 180, 41, 0.1), rgba(240, 180, 41, 0.03));
            border: 1px solid rgba(240, 180, 41, 0.25);
        }

        /* CTA section */
        .cta-section {
            background: linear-gradient(135deg, #060a14, #0d1a2e, #060a14);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 0%, rgba(240, 180, 41, 0.1), transparent 60%);
        }

        /* Breadcrumb */
        .breadcrumb {
            color: rgba(255, 255, 255, 0.45);
            font-size: 14px;
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.45);
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: var(--gold);
        }

        .breadcrumb span {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Pulse dot */
        .live-dot {
            width: 8px;
            height: 8px;
            background: #ff4d6d;
            border-radius: 50%;
            display: inline-block;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.5);
            }

            50% {
                box-shadow: 0 0 0 6px rgba(255, 77, 109, 0);
            }
        }

        * {
            box-sizing: border-box;
        }

        body {
            background: #000;
            color: #fff;
            font-family: sans-serif;
            margin: 0;
        }

        /* Scrollbar hide */
        .scrollbar-hide::-webkit-scrollbar {
            display: none;
        }

        .scrollbar-hide {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-14px);
            }
        }

        .animate-float {
            animation: float 3.5s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% {
                background-position: -200% center;
            }

            100% {
                background-position: 200% center;
            }
        }

        .shimmer-text {
            background: linear-gradient(90deg, #fbbf24, #facc15, #fff8, #fbbf24, #facc15);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmer 4s linear infinite;
        }

        /* Game cards */
        .game-card {
            background: rgba(0, 0, 0, 0.45);
            backdrop-filter: blur(16px);
            border-radius: 1.5rem;
            border: 1px solid rgba(251, 191, 36, 0.18);
            padding: 1.75rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .game-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 0 40px rgba(251, 191, 36, 0.18);
        }

        /* Feature cards */
        .feature-card {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(16px);
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.07);
            padding: 1.75rem;
            transition: transform 0.3s, border-color 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            border-color: rgba(251, 191, 36, 0.3);
        }

        /* Step cards */
        .step-card {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(16px);
            border-radius: 1.5rem;
            border: 1px solid rgba(251, 191, 36, 0.15);
            padding: 2rem 1.5rem;
            text-align: center;
            transition: transform 0.3s;
        }

        .step-card:hover {
            transform: translateY(-5px);
        }

        /* FAQ accordion */
        details summary::-webkit-details-marker {
            display: none;
        }

        details[open] .faq-icon {
            transform: rotate(45deg);
        }

        .faq-icon {
            transition: transform 0.3s;
        }

        /* Live badge */
        @keyframes ping {

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

            50% {
                opacity: .6;
                transform: scale(1.4)
            }
        }

        .live-dot {
            animation: ping 1.4s ease-in-out infinite;
        }

        /* Float animation */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-18px);
            }
        }

        .animate-float {
            animation: float 3.5s ease-in-out infinite;
        }

        /* Game card */
        .game-card {
            flex-shrink: 0;
            width: 220px;
            padding: 2rem 1.5rem;
            border-radius: 1.5rem;
            border: 1px solid;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(12px);
            transition: transform 0.3s;
        }

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

        /* Flip card */
        .flip-card {
            flex-shrink: 0;
            width: 220px;
            height: 280px;
            perspective: 1000px;
        }

        .flip-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            transition: transform 0.6s;
        }

        .flip-card:hover .flip-inner {
            transform: rotateY(180deg);
        }

        .flip-front,
        .flip-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .flip-front {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(12px);
        }

        .flip-back {
            background: linear-gradient(135deg, #1a0533, #0a0a2e);
            transform: rotateY(180deg);
            text-align: center;
            padding: 1.5rem;
        }

        .glass {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(16px);
        }

        .glow {
            box-shadow: 0 0 20px rgba(251, 191, 36, 0.15);
        }

        /* Reward card */
        .reward-card {
            flex-shrink: 0;
            width: 260px;
        }

        /* Text gradient */
        .text-gradient {
            background: linear-gradient(90deg, #fbbf24, #facc15, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Nav dropdown */
        .nav-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
        }

        .nav-item:hover .nav-dropdown {
            display: block;
        }

        /* Mobile menu */
        #mobile-menu {
            display: none;
        }

        #mobile-menu.open {
            display: block;
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Dot active */
        .dot-active {
            background: #fbbf24 !important;
            transform: scale(1.25);
        }


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

  body {
    font-family: Arial, sans-serif;
    background: #0f1117;
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
  }

  /* ── BREADCRUMB ── */
  .breadcrumb {
    background: #13151e;
    border-bottom: 1px solid #1e2130;
    padding: 8px 30px;
    font-size: 13px;
    color: #777;
  }
  .breadcrumb a { color: #f5a623; text-decoration: none; }

  /* ── MAIN CONTENT ── */
  .content-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 36px 30px 60px;
  }

  .content-wrap h1 {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 24px;
  }

  .content-wrap h2 {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 14px;
    margin-top: 36px;
  }

  .content-wrap p {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.8;
  }

  .content-wrap img {
    width: 100%;
    display: block;
    border-radius: 6px;
    margin: 20px 0;
  }

  .content-wrap ol {
    padding-left: 20px;
    margin-bottom: 16px;
    color: #bbb;
  }
  .content-wrap ol li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.7;
  }

  hr.divider {
    border: none;
    border-top: 1px solid #1e2130;
    margin: 36px 0;
  }

  /* ── LATEST BLOGS ── */
  .blogs-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 30px 50px;
  }
  .blogs-section h2 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 24px;
    font-weight: bold;
  }
  .blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .blog-card {
    background: #13151e;
    border: 1px solid #1e2130;
    border-radius: 6px;
    overflow: hidden;
  }
  .blog-card img {
    width: 100%;
    display: block;
    height: 160px;
    object-fit: cover;
  }
  .blog-card-body {
    padding: 14px;
  }
  .blog-card-body h3 {
    font-size: 14px;
    color: #ddd;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.5;
  }
  .blog-card-body a {
    font-size: 13px;
    color: #f5a623;
    text-decoration: none;
    font-weight: bold;
  }
  .blog-card-body a:hover { text-decoration: underline; }

  /* ── NEWSLETTER ── */
  .newsletter-section {
    background: #13151e;
    border-top: 1px solid #1e2130;
    border-bottom: 1px solid #1e2130;
    padding: 30px;
    text-align: center;
  }
  .newsletter-section h2 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: bold;
  }
  .newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .newsletter-form input {
    padding: 10px 16px;
    border-radius: 5px;
    border: 1px solid #2a2d3a;
    background: #0f1117;
    color: #ddd;
    font-size: 14px;
    width: 280px;
    outline: none;
  }
  .newsletter-form input::placeholder { color: #666; }
  .newsletter-form button {
    background: #f5a623;
    color: #000;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
  }
  .newsletter-form button:hover { background: #e09410; }

  @media (max-width: 768px) {
    .blogs-grid { grid-template-columns: 1fr; }
    .content-wrap, .blogs-section { padding-left: 16px; padding-right: 16px; }
    .breadcrumb { padding-left: 16px; }
  }
        /*  */

        /* Ipl fantasy */

        @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
        .animate-float { animation: float 3.5s ease-in-out infinite; }

        @keyframes shimmer {
            0%{background-position:-200% center}
            100%{background-position:200% center}
        }
        .shimmer-text {
            background: linear-gradient(90deg,#fbbf24,#facc15,#fff8,#fbbf24,#facc15);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmer 4s linear infinite;
        }

        @keyframes ping { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.4)} }
        .live-dot { animation: ping 1.4s ease-in-out infinite; }

        .glass-card {
            background: rgba(0,0,0,0.42);
            backdrop-filter: blur(16px);
            border-radius: 1.5rem;
            border: 1px solid rgba(251,191,36,0.15);
            transition: transform .3s, box-shadow .3s;
        }
        .glass-card:hover { transform: translateY(-4px); box-shadow: 0 0 40px rgba(251,191,36,0.14); }

        .cyan-card {
            background: rgba(0,0,0,0.42);
            backdrop-filter: blur(16px);
            border-radius: 1.5rem;
            border: 1px solid rgba(34,211,238,0.15);
            transition: transform .3s;
        }
        .cyan-card:hover { transform: translateY(-4px); }

        .pink-card {
            background: rgba(0,0,0,0.42);
            backdrop-filter: blur(16px);
            border-radius: 1.5rem;
            border: 1px solid rgba(244,114,182,0.15);
            transition: transform .3s;
        }
        .pink-card:hover { transform: translateY(-4px); }

        .purple-card {
            background: rgba(0,0,0,0.42);
            backdrop-filter: blur(16px);
            border-radius: 1.5rem;
            border: 1px solid rgba(192,132,252,0.15);
            transition: transform .3s;
        }
        .purple-card:hover { transform: translateY(-4px); }

        .step-card {
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(16px);
            border-radius: 1.5rem;
            border: 1px solid rgba(251,191,36,0.15);
            padding: 2rem 1.5rem;
            text-align: center;
            transition: transform .3s;
        }
        .step-card:hover { transform: translateY(-5px); }

        .team-card {
            background: rgba(0,0,0,0.45);
            backdrop-filter: blur(12px);
            border-radius: 1.25rem;
            border: 1px solid rgba(251,191,36,0.18);
            padding: 1.5rem;
            transition: transform .3s, box-shadow .3s;
        }
        .team-card:hover { transform: translateY(-4px); box-shadow: 0 0 30px rgba(251,191,36,0.12); }

        .player-card {
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(12px);
            border-radius: 1rem;
            padding: 1.25rem;
            transition: transform .3s;
        }
        .player-card:hover { transform: translateY(-3px); }

        details summary::-webkit-details-marker { display: none; }
        details[open] .faq-icon { transform: rotate(45deg); }
        .faq-icon { transition: transform .3s; display: inline-block; }

        .bullet-list { list-style: none; padding: 0; margin: 0; }
        .bullet-list li {
            padding: .55rem .75rem .55rem 2rem;
            position: relative;
            color: rgba(255,255,255,.76);
            border-left: 2px solid rgba(251,191,36,.3);
            margin-bottom: .45rem;
            background: rgba(251,191,36,.04);
            border-radius: 0 .5rem .5rem 0;
            line-height: 1.7;
            font-size: .9rem;
        }
        .bullet-list li::before {
            content: '›';
            position: absolute; left: .65rem; top: 50%; transform: translateY(-50%);
            color: #fbbf24; font-size: 1.2rem; font-weight: 700;
        }

        .cyan-bullet li { border-left-color: rgba(34,211,238,.3); background: rgba(34,211,238,.04); }
        .cyan-bullet li::before { color: #22d3ee; }
        .pink-bullet li { border-left-color: rgba(244,114,182,.3); background: rgba(244,114,182,.04); }
        .pink-bullet li::before { color: #f472b6; }
        .purple-bullet li { border-left-color: rgba(192,132,252,.3); background: rgba(192,132,252,.04); }
        .purple-bullet li::before { color: #c084fc; }
        .green-bullet li { border-left-color: rgba(74,222,128,.3); background: rgba(74,222,128,.04); }
        .green-bullet li::before { color: #4ade80; }

        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(251,191,36,.25), transparent);
            margin: 0;
        }
        /*  */