:root {
      --gold: #FFD700;
      --gold-dark: #FFA500;
      --gold-deep: #e6a800;
      --teal: #0e6e6e;
      --teal-dark: #094f4f;
      --teal-light: #1a9090;
      --red: #e02020;
      --green-btn: #1db954;
      --dark-bg: #05232e;
      --blue-bg: #071a3e;
      --card-bg: rgba(255,255,255,0.06);
    }

    * { box-sizing: border-box; }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--blue-bg);
      color: #fff;
      overflow-x: hidden;
    }
    p{
      font-family: 'Poppins', sans-serif; 
    }
    /* ===== NAVBAR ===== */
    .top-nav {
      background: linear-gradient(90deg, var(--teal-dark) 0%, var(--blue-bg) 100%);
      padding: 8px 0;
      border-bottom: 2px solid var(--gold);
    }
    .logo-img { height: 50px; }

    /* Hamburger toggler custom style */
    .navbar-toggler {
      border: 2px solid var(--gold) !important;
      padding: 5px 9px;
      border-radius: 6px;
      background: rgba(255,215,0,0.08) !important;
    }
    .navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(255,215,0,0.3) !important; }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFD700' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    /* Mobile dropdown menu */
    .navbar-collapse {
      background: linear-gradient(180deg, #071a3e 0%, #094f4f 100%);
      border-top: 1px solid rgba(255,215,0,0.2);
      margin-top: 8px;
      border-radius: 0 0 12px 12px;
      padding: 8px 0;
    }
    @media (min-width: 992px) {
      .navbar-collapse {
        background: transparent;
        border: none;
        margin-top: 0;
        border-radius: 0;
        padding: 0;
      }
    }

    /* Nav links */
    .navbar-nav .nav-link {
      color: #fff !important;
      font-weight: 600;
      font-size: 14px;
      padding: 10px 20px !important;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      gap: 10px;
      transition: color 0.2s, background 0.2s;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--gold) !important;
      background: rgba(255,215,0,0.07);
    }
    .navbar-nav .nav-link i {
      width: 18px;
      text-align: center;
      color: var(--gold);
      font-size: 13px;
    }
    @media (min-width: 992px) {
      .navbar-nav .nav-link {
        border-bottom: none;
        padding: 6px 14px !important;
      }
    }

    /* Mobile: Register/Play buttons inside dropdown */
    .mobile-nav-btns {
      display: flex;
      gap: 10px;
      padding: 12px 20px 6px;
    }
    @media (min-width: 992px) {
      .mobile-nav-btns { display: none !important; }
    }

    /* Desktop buttons - hidden on mobile */
    .desktop-nav-btns { display: none; }
    @media (min-width: 992px) {
      .desktop-nav-btns { display: flex; gap: 8px; align-items: center; }
    }
    
    .btn-register, .btn-play {
  display: inline-block;
  padding: 10px 20px;
  background: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-right: 10px;
}

    .btn-register {
      background: var(--red);
      color: #fff;
      border: none;
      padding: 8px 20px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      transition: opacity 0.2s;
      white-space: nowrap;
    }
    .btn-play {
      background: var(--green-btn);
      color: #fff;
      border: none;
      padding: 8px 20px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      transition: opacity 0.2s;
      white-space: nowrap;
    }
    .btn-register:hover, .btn-play:hover { opacity: 0.85; }

    /* Breadcrumb trail inside mobile menu */
    .mobile-breadcrumb {
      padding: 6px 20px 2px;
      font-size: 11px;
      color: rgba(255,215,0,0.5);
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .mobile-breadcrumb span { color: var(--gold); font-weight: 600; }
    @media (min-width: 992px) {
      .mobile-breadcrumb { display: none !important; }
    }

 .hero-section {
  position: relative;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}
a>card-header{
    font-size: 20px;
}

/* BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/media/banner-ipl.png') no-repeat right center;
  background-size: contain;
  z-index: 1;
}

/* DARK OVERLAY */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7,28,44,0.95) 20%,
    rgba(7,28,44,0.7) 60%,
    rgba(7,28,44,0.3) 100%
  );
  z-index: 1;
}

/* TEXT */
.hero-section h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-section h1 span {
  color: #ffc107;
}

.subtitle {
  font-size: 18px;
  margin: 15px 0;
}

.subtitle span {
  color: #ffc107;
  font-weight: bold;
}

/* BUTTONS */
.hero-btns button {
  padding: 10px 22px;
  border-radius: 6px;
  border: none;
  margin-right: 10px;
  font-weight: 600;
}

.btn-register {
  background: #ff3b3b;
  color: #fff;
}

.btn-play {
  background: #28a745;
  color: #fff;
}

/* TRUST BAR */
.trust-bar {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 14px;
  color: #ddd;
}

.trust-item i {
  color: #ffc107;
  margin-right: 6px;
}

    /* ===== SECTION TITLES ===== */
    .section-title {
      text-align: center;
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(22px, 4vw, 34px);
      font-weight: 700;
      color: var(--gold);
      padding: 14px 30px;
      background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
      border-top: 2px solid var(--gold);
      border-bottom: 2px solid var(--gold);
      margin-bottom: 30px;
      letter-spacing: 1px;
    }

    /* ===== GAME CARDS ===== */
    .section-bg-dark { background: linear-gradient(180deg, #071a3e 0%, #05232e 100%); padding: 40px 0; }
    .section-bg-mid { background: linear-gradient(180deg, #0a1f3a 0%, #0e3d6e 100%); padding: 40px 0; }
    .section-bg-teal { background: linear-gradient(180deg, #0e3d6e 0%, #071a3e 100%); padding: 40px 0; }

    .game-card {
      border-radius: 14px;
      overflow: hidden;
      background: var(--card-bg);
      border: 1px solid rgba(255,215,0,0.2);
      transition: transform 0.25s, box-shadow 0.25s;
      cursor: pointer;
      margin-bottom: 20px;
    }
    .game-card:hover {
      transform: translateY(-5px) scale(1.03);
      box-shadow: 0 10px 30px rgba(255,215,0,0.25);
      border-color: var(--gold);
    }
    .game-card-img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      background: linear-gradient(135deg, #0e3d6e, #0e6e6e);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      color: rgba(255,255,255,0.4);
    }
    .game-card-img img { width: 100%; height: 160px; object-fit: cover; }
    .game-card-label {
      text-align: center;
      padding: 10px;
      font-weight: 700;
      font-size: 14px;
      color: #fff;
      /* background: rgba(0,0,0,0.4);   */
    }
    .game-card-label i { color: var(--gold); margin-right: 5px; }

    /* ===== LIVE SPORTS CARD ===== */
    .live-card {
      border-radius: 14px;
      overflow: hidden;
      background: rgba(0,0,0,0.3);
      border: 1px solid rgba(255,215,0,0.2);
      margin-bottom: 20px;
      transition: transform 0.25s;
    }
    .live-card-link {
      text-decoration: none;
      color: inherit;
      display: block;
    }
    
    .live-card-link:hover .live-card {
      transform: translateY(-5px);
      transition: 0.3s ease;
    }
    .live-card:hover { transform: translateY(-4px); }
    .live-card-img {
      width: 100%;
      height: 150px;
      background: linear-gradient(135deg, #0e6e6e, #0e3d6e);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.3);
      font-size: 13px;
    }
    .live-card-body { padding: 10px 12px; text-align: center; }
    .live-card-body h3 { font-weight: 700; margin-bottom: 8px; color: #fff; font-size: 15px; }
    .btn-playnow {
      background: var(--green-btn);
      color: #fff;
      border: none;
      padding: 7px 24px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 13px;
      width: 100%;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .btn-playnow:hover { opacity: 0.85; }
    .btn-playnow-orange {
      background: var(--gold-dark);
      color: #fff;
      border: none;
      padding: 7px 24px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 13px;
      width: 100%;
      cursor: pointer;
    }

    /* ===== OFFERS ===== */
    .offer-card {
      border-radius: 16px;
      padding: 28px 22px;
      text-align: center;
      margin-bottom: 20px;
      transition: transform 0.25s;
    }
    .offer-card:hover { transform: scale(1.04); }
    .offer-card h3 { font-family: 'Rajdhani', sans-serif; font-size: 22px; font-weight: 700; }
    .offer-card .big-amt { font-family: 'Rajdhani', sans-serif; font-size: 36px; font-weight: 700; color: var(--gold); }
    .offer-gold { background: linear-gradient(135deg, #b8860b, var(--gold-dark)); }
    .offer-red  { background: linear-gradient(135deg, #8b0000, #c0392b); }
    .offer-blue { background: linear-gradient(135deg, #1a3a6e, #2980b9); }
    .btn-claim {
      background: #1db954;
      color: #fff;
      border: none;
      padding: 8px 22px;
      border-radius: 20px;
      font-weight: 700;
      font-size: 13px;
      margin-top: 12px;
      cursor: pointer;
    }

    /* ===== HOW IT WORKS ===== */
    .step-card {
      border-radius: 14px;
      padding: 24px 16px;
      text-align: center;
      background: linear-gradient(135deg, #0e3d6e, #0e6e6e);
      margin-bottom: 20px;
      border: 1px solid rgba(255,215,0,0.2);
      transition: transform 0.25s;
    }
    .step-card:hover { transform: translateY(-5px); }
    .step-num {
      width: 52px; height: 52px;
      background: radial-gradient(circle, var(--gold), var(--gold-dark));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 22px; color: #000;
      margin: 0 auto 14px;
      box-shadow: 0 4px 15px rgba(255,215,0,0.5);
    }
    .step-card h3 { font-weight: 700; color: #fff; margin-bottom: 10px; font-size: 16px; }

    /* ===== WHY CHOOSE US ===== */
    .why-card {
      text-align: center;
      padding: 20px 10px;
      margin-bottom: 20px;
    }
    .why-card h3{font-size: 16px;}
    .why-icon {
      width: 70px; height: 70px;
      margin: 0 auto 12px;
      border-radius: 50%;
      background: rgba(255,215,0,0.1);
      border: 2px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      font-size: 26px;
      color: var(--gold);
    }
    .why-card p { font-size: 13px; color: #ccc; margin: 0; }

    /* ===== PAYMENT ===== */
    .payment-section { background: #fff; padding: 30px 0; }
    .payment-section .section-title { color: var(--teal-dark); }
    .payment-logo {
      display: flex; align-items: center; justify-content: center;
      padding: 12px 20px;
      border: 2px solid #ddd;
      border-radius: 10px;
      font-weight: 700;
      font-size: 15px;
      color: #333;
      margin: 8px;
      transition: border-color 0.2s;
    }
    .payment-logo:hover { border-color: var(--teal); }
    .payment-logo i { margin-right: 6px; }

    /* ===== REVIEWS ===== */
    .reviews-section { background: linear-gradient(180deg, #071a3e 0%, #05232e 100%); padding: 40px 0; }
    .review-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,215,0,0.2);
      border-radius: 14px;
      padding: 22px 18px;
      margin-bottom: 20px;
      transition: transform 0.2s;
    }
    .review-card:hover { transform: translateY(-4px); border-color: var(--gold); }
    .review-stars { color: var(--gold); font-size: 16px; margin-bottom: 10px; }
    .review-text { font-size: 14px; color: #ddd; font-style: italic; margin-bottom: 14px; }
    .reviewer { display: flex; align-items: center; gap: 10px; }
    .reviewer-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), var(--gold-dark));
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 16px; color: #fff;
    }
    .reviewer-name { font-weight: 700; font-size: 14px; }
    .reviewer-loc { font-size: 12px; color: #aaa; }

    /* ===== WINNING PROOF CAROUSEL ===== */
    .winning-section { background: linear-gradient(180deg, #05232e 0%, #071a3e 100%); padding: 40px 0; }
    .winning-img-placeholder {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, #0e3d6e, #0e6e6e);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.35);
      font-size: 13px;
      border: 2px dashed rgba(255,215,0,0.3);
      flex-direction: column;
      gap: 8px;
    }
    .winning-img-placeholder i { font-size: 32px; color: rgba(255,215,0,0.3); }
    .carousel-indicators [data-bs-target] { background-color: var(--gold); }
    .carousel-control-prev-icon, .carousel-control-next-icon {
      filter: invert(0) sepia(1) saturate(5) hue-rotate(20deg);
    }

  
  

 /* ═══════════════════════════════════
       SECTION 1 — FAQ
    ═══════════════════════════════════ */
    .faq-section {
      background: linear-gradient(180deg, #071a3e 0%, #05232e 100%);
      padding: 50px 0;
    }

    .accordion-item {
      background: rgba(255,255,255,0.04) !important;
      border: 1px solid rgba(255,215,0,0.25) !important;
      border-radius: 10px !important;
      margin-bottom: 12px;
      overflow: hidden;
    }

    .accordion-button {
      background: rgba(14, 61, 110, 0.75) !important;
      color: #fff !important;
      font-weight: 600;
      font-size: 15px;
      border-radius: 10px !important;
      padding: 16px 20px;
      gap: 12px;
    }

    .accordion-button:not(.collapsed) {
      background: var(--teal-dark) !important;
      color: var(--gold) !important;
      box-shadow: none !important;
      border-radius: 10px 10px 0 0 !important;
    }

    .accordion-button::after {
      filter: invert(1) sepia(1) saturate(3) hue-rotate(20deg);
    }

    .accordion-button .faq-icon {
      width: 24px;
      height: 24px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .accordion-button .faq-icon i {
      color: #000;
      font-size: 11px;
    }

    .accordion-body {
      background: rgba(0, 0, 0, 0.35);
      color: #ccc;
      font-size: 14px;
      line-height: 1.7;
      padding: 16px 20px;
    }

    /* ═══════════════════════════════════
       SECTION 2 — GUIDE CARDS
    ═══════════════════════════════════ */
    .guides-section {
      background: linear-gradient(180deg, #05232e 0%, #071a3e 100%);
      padding: 50px 0;
    }

    .guide-card {
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(255,215,0,0.2);
      background: rgba(255,255,255,0.04);
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      cursor: pointer;
      height: 100%;
    }

    .guide-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 35px rgba(255,215,0,0.22);
      border-color: var(--gold);
    }

    .guide-card-img {
      width: 100%;
      height: 170px;
      object-fit: cover;
      display: block;
    }

    .guide-card-body {
      padding: 14px 16px 18px;
      text-align: center;
    }

    .guide-card-body .guide-tag {
      display: inline-block;
      background: rgba(255,215,0,0.12);
      color: var(--gold);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 3px 10px;
      border-radius: 20px;
      margin-bottom: 8px;
      text-transform: uppercase;
      border: 1px solid rgba(255,215,0,0.3);
    }

    .guide-card-body h3 {
      font-weight: 700;
      font-size: 15px;
      color: #fff;
      margin: 0 0 8px;
      line-height: 1.4;
    }

    .guide-card-body p {
      font-size: 12px;
      color: #aaa;
      margin: 0 0 12px;
    }

    .btn-read-more {
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 12px;
      font-weight: 700;
      padding: 6px 18px;
      border-radius: 20px;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
    }

    .btn-read-more:hover {
      background: var(--gold);
      color: #000;
    }







    /* ===== FOOTER ===== */
    footer {
      background: #030f1e;
      padding: 20px 0 10px;
      border-top: 2px solid var(--gold);
    }
    .footer-links a {
      color: #ccc;
      text-decoration: none;
      margin: 0 12px;
      font-size: 13px;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold); }
    .social-icons a {
      color: #fff;
      font-size: 18px;
      margin: 0 8px;
      transition: color 0.2s;
    }
    .social-icons a:hover { color: var(--gold); }
    .footer-copy { font-size: 12px; color: #666; margin-top: 10px; }

.footer-dark {
  background: #071c2c;
  padding: 60px 0;
  border-top: 2px solid #ffc107;
}

/* LOGO TEXT OPTION */
.logo-text {
  color: #ffc107;
  font-weight: bold;
  letter-spacing: 2px;
}

/* LEFT TEXT */
.footer-desc {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.footer-disclaimer {
  color: #888;
  font-size: 12px;
  margin-top: 10px;
}

/* BADGES */
.footer-badges span {
  display: inline-block;
  background: #0d2b3e;
  color: #ffc107;
  padding: 6px 10px;
  margin-right: 6px;
  font-size: 12px;
  border-radius: 4px;
}

/* RIGHT LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffc107;
}

/* HEADINGS */
.footer-dark h6 {
  color: #ffc107;
  margin-bottom: 10px;
  font-size: 13px;
  text-transform: uppercase;
}

/* SOCIAL */
.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 16px;
}

/* BOTTOM */
.footer-bottom {
  color: #aaa;
  font-size: 13px;
  border-top: 1px solid #123;
  padding-top: 15px;
}


    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .hero-section h1 { font-size: 24px; }
      .hero-placeholder { height: 160px; }
      .hero-bg{display: none;}
    }

    /* ===== ANIMATIONS ===== */
    @keyframes pulse-gold {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.4); }
      50% { box-shadow: 0 0 0 12px rgba(255,215,0,0); }
    }
    .btn-register { animation: pulse-gold 2s infinite; }

    .badge-live {
      background: var(--red);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 20px;
      animation: pulse-gold 1.5s infinite;
    }

    /* Shimmer on section title */
    .section-title {
      background-size: 200% auto;
      background-image: linear-gradient(90deg, transparent 0%, rgba(255,215,0,0.12) 50%, transparent 100%);
      background-position: left center;
      animation: shimmer 3s linear infinite;
    }
    @keyframes shimmer {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }

    .winner-badge {
      display: inline-block;
      background: var(--gold);
      color: #000;
      font-weight: 800;
      padding: 4px 14px;
      border-radius: 20px;
      font-size: 12px;
      margin-bottom: 8px;
    }    
    
    
    
    
/* Section styling with controlled height */
.SEO_content {
    background-color: #1a1a1a;
    padding: 40px 20px;
    max-height: 400px; /* Controlled height to avoid long scrolling */
    overflow-y: auto;
    position: relative;
    max-width: 1074px;
    margin: 65px auto;
}
/* Custom scrollbar styling for better UX */
.SEO_content::-webkit-scrollbar {
    width: 8px;
}

.SEO_content::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 10px;
}

.SEO_content::-webkit-scrollbar-thumb {
    background: #90c957;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.SEO_content::-webkit-scrollbar-thumb:hover {
    background: #a8d96f;
}

/* Firefox scrollbar */
.SEO_content {
    scrollbar-width: thin;
    scrollbar-color: #90c957 #2a2a2a;
}

/* Fade effect at bottom to indicate more content */
.SEO_content::after {
    content: '';
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #1a1a1a);
    pointer-events: none;
}
.SEO_content h1{
    font-size: 1.0rem;
    font-weight: 700;
}
.SEO_content h2 {
    font-size: 1.0rem;
    font-weight: 700;
    margin-bottom: 15px;
    top: 0;
    z-index: 10;
}
.SEO_content h4{
    font-size: 1.0rem;
    font-weight: 700;
}

.SEO_content h2 .highlight {
    color: #ff6b35;
}

.SEO_content p {
    font-size: 0.75rem;
    line-height: 1.6;
    max-width: 1100px;
    margin: 0 auto 25px;
    text-align: justify;
    color: #b8b8b8;
    padding: 0 5px;
}

.SEO_content h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #90c957;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

/* Center button styling - more compact */
.SEO_content .cta-button {
    display: block;
    width: fit-content;
    margin: 20px auto;
    padding: 12px 35px;
    background-color: #ffffff;
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.SEO_content .cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}
.SEO_content ul li{
    font-size: 10px;
    color: #b9b9b9;
}
.SEO_content ol li{
    font-size: 10px;
    color: #b9b9b9;
}

.SEO_content .cta-button::after {
    content: ' →';
}


.footer-dark {
  background: #071c2c;
  padding: 40px 0 25px; /* reduced height */
  border-top: 2px solid #ffc107;
  font-size: 14px;
}

/* GRID SPACING */
.footer-dark .row {
  align-items: flex-start;
}

/* LOGO */
.footer-logo img {
  height: 45px;
  margin-bottom: 10px;
}

/* DESCRIPTION */
.footer-desc {
  color: #ccc;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
  max-width: 90%;
}

/* HEADINGS */
.footer-dark h6 {
  color: #ffc107;
  font-size: 12px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 5px; /* tighter */
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 13px;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #ffc107;
  padding-left: 3px; /* subtle hover effect */
}

/* SOCIAL */
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #ccc;
  margin-right: 10px;
  font-size: 14px;
  transition: 0.2s;
}

.social-icons a:hover {
  color: #ffc107;
}

/* DISCLAIMER */
.footer-disclaimer {
  color: #888;
  font-size: 12px;
  text-align: center;
  margin: 20px 0 10px;
}

/* BADGES */
.footer-badges {
  text-align: center;
  margin-bottom: 10px;
}

.footer-badges span {
  display: inline-block;
  background: #0d2b3e;
  color: #ffc107;
  padding: 4px 8px;
  margin: 3px;
  font-size: 11px;
  border-radius: 3px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  color: #888;
  font-size: 12px;
  border-top: 1px solid #123;
  padding-top: 10px;
}              



.g365v2-wrapper {
  background: #0a1f44;
  min-height: 100vh;
}

/* LEFT */
.g365v2-left {
  background: linear-gradient(135deg, #0a1f44, #000);
  display: flex;
  align-items: center;
  padding: 60px;
}

.g365v2-left-content h1 {
  color: #ffd700;
  font-weight: 700;
  font-size: 32px;
}
.g365v2-left-content h2{
    font-size: 22px;
}

.g365v2-left-content h4 {
  color: #fff;
}

.g365v2-left-content p {
  color: #ccc;
}

/* FEATURES */
.g365v2-left ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.g365v2-left ul li {
  margin-bottom: 12px;
  color: #ddd;
}

.g365v2-left ul i {
  color: #ffd700;
  margin-right: 10px;
}

/* STATS */
.g365v2-stats {
  margin-top: 20px;
  color: #ffd700;
  font-weight: bold;
}

/* CTA BUTTON */
.g365v2-getid-btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(90deg, #ffd700, #ffae00);
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

/* RIGHT */
.g365v2-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
}

/* CARD */
.g365v2-card {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 0 25px rgba(255,215,0,0.2);
}

.g365v2-card h2 {
  color: #ffd700;
}

/* INPUT */
.g365v2-input {
  display: flex;
  align-items: center;
  background: #222;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
}

.g365v2-input i {
  color: #ffd700;
  margin-right: 10px;
}

.g365v2-input input {
  background: transparent;
  border: none;
  color: #fff;
  width: 100%;
}

/* BUTTON */
.g365v2-btn {
  background: linear-gradient(90deg, #ff6a00, #ff8c00);
  border: none;
  font-weight: bold;
}

/* BOTTOM */
.g365v2-bottom {
  text-align: center;
  margin-top: 15px;
  color: #aaa;
}

/* FEATURES GRID */
.g365v2-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-top: 20px;
}

/* EACH ITEM */
.g365v2-feature {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 15px;
}

/* ICON */
.g365v2-feature i {
  color: #ffd700;
  margin-right: 10px;
  min-width: 18px;
}

/* COUPON BOX */
.g365v2-coupon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px dashed #ffd700;
}

.g365v2-coupon span {
  color: #ffd700;
  font-weight: bold;
  letter-spacing: 1px;
}

.g365v2-coupon button {
  background: #ff8c00;
  border: none;
  padding: 6px 12px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

/* MOBILE FIX */
@media(max-width: 576px) {
  .g365v2-features {
    grid-template-columns: 1fr; /* stack on mobile */
  }
}

.g365v2-bottom a {
  color: #ffd700;
  font-weight: bold;
  text-decoration: none;
}

/* ✅ MOBILE FIX */
@media(max-width: 992px) {

  .g365v2-left {
    display: block;
    padding: 30px;
    text-align: center;
  }

  .g365v2-left ul {
    text-align: left;
  }

  .g365v2-right {
    padding: 20px;
  }
}



/* ===== BASE WRAPPER ===== */
.fp-legal {
  padding: 60px 0;
  background: #071a3e;
}

.fp-legal__container {
  max-width: 1000px;
  margin: auto;
}

.fp-legal__box {
  background: linear-gradient(145deg, #111, #0d0d0d);
  border-radius: 14px;
  padding: 40px;
  color: #cfcfcf;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: 0.3s ease;
}

.fp-legal__box:hover {
  transform: translateY(-5px);
}

/* HEADINGS */
.fp-legal__box h1 {
  font-size: 32px;
  color: #fecc12;
  margin-bottom: 20px;
}

.fp-legal__box h2 {
  font-size: 20px;
  color: #4caf50;
  margin-top: 25px;
}

/* TEXT */
.fp-legal__box p {
  line-height: 1.7;
  font-size: 15px;
}

.fp-legal__box ul {
  padding-left: 20px;
}

/* ===== PAGE COLORS ===== */
.fp-legal--help .fp-legal__box { border-left: 4px solid #ffc107; }
.fp-legal--terms .fp-legal__box { border-left: 4px solid #ff7a00; }
.fp-legal--privacy .fp-legal__box { border-left: 4px solid #00c853; }
.fp-legal--gaming .fp-legal__box { border-left: 4px solid #ff1744; }
.fp-legal--about .fp-legal__box { border-left: 4px solid #2196f3; }



.blog-content{
    background: #ffffff;
    color: #000;
    padding: 30px;
    border-radius: 5px;
}
.author-image{
    width: 108px;
}

.fp-breadcrumb-nav {
    background: #ffffff;
    padding: 0 0px 0px 19px;
    border-radius: 2px !important;
}
.fp-breadcrumb-nav a{
    text-decoration: none;
    color: #000;
}        