/* ===================================================
   HRISHIV GAMES - ULTRA PREMIUM GAMING PORTAL CSS
   =================================================== */

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

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #FFD700;
  --gold-light: #FFE85C;
  --gold-dark: #B8860B;
  --neon-cyan: #00F5FF;
  --neon-purple: #BF00FF;
  --neon-pink: #FF006E;
  --dark-bg: #060810;
  --dark-card: #0D1117;
  --dark-card2: #111827;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 215, 0, 0.15);
  --text-primary: #FFFFFF;
  --text-secondary: #A0AEC0;
  --text-gold: #FFD700;
  --radius-card: 18px;
  --radius-lg: 24px;
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.25);
  --shadow-neon: 0 0 30px rgba(0, 245, 255, 0.15);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--dark-bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(191, 0, 255, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
    url('../img/full_web_bg_1.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
}

h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.8;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(6, 8, 16, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  z-index: 1030;
  transition: var(--transition);
  padding: 8px 0;
}

.navbar.scrolled {
  background: rgba(6, 8, 16, 0.92);
  border-bottom-color: rgba(255, 215, 0, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
  max-height: 42px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: #D1D5DB;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--neon-cyan));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.07);
}

.navbar-nav .nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link.active {
  color: var(--gold) !important;
}

/* Nav link icons */
.navbar-nav .nav-link i {
  font-size: 12px;
  margin-right: 5px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.navbar-nav .nav-link:hover i { opacity: 1; }

/* Contact CTA pill in navbar */
.navbar-nav .nav-link.nav-cta {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000 !important;
  font-weight: 700;
  border-radius: 50px;
  padding: 7px 18px;
  margin-left: 6px;
  font-size: 13px;
}

.navbar-nav .nav-link.nav-cta::after { display: none; }

.navbar-nav .nav-link.nav-cta:hover {
  background: linear-gradient(135deg, #FFE85C, #FFD700);
  color: #000 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,215,0,0.4);
}

.navbar-nav .nav-link.nav-cta i { opacity: 1; }


/* Navbar Toggler */
.navbar-toggler {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: 10px;
  padding: 6px 10px;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-size: 1.5em;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%280,0,0,0.9%29' stroke-width='2.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler .close-icon {
  display: none;
  font-size: 22px;
  font-weight: bold;
  color: #000;
}

.navbar-toggler.opened .navbar-toggler-icon { display: none; }
.navbar-toggler.opened .close-icon { display: inline-block; }

.collapse { display: none; }
.collapse.show { display: block; }

/* ===== SEARCH BAR ===== */
.custom-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 50px;
  padding: 3px 12px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.custom-search:hover,
.custom-search:focus-within {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
  background: rgba(255, 215, 0, 0.06);
}

.custom-search .search-input {
  border: none;
  background: transparent;
  color: #fff;
  padding: 8px 12px;
  font-size: 14px;
  outline: none;
  width: 150px;
  transition: width 0.4s ease;
  font-family: 'Poppins', sans-serif;
}

.custom-search:hover .search-input,
.custom-search .search-input:focus {
  width: 200px;
}

.custom-search .search-input::placeholder { color: rgba(255,255,255,0.35); }

.custom-search .search-btn {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.custom-search .search-btn i {
  color: var(--gold);
  font-size: 14px;
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  margin-top: 10px;
}

.section-label h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,215,0,0.4), transparent);
}

/* ===== GAME CARD ===== */
.cust-card {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-card);
  background: var(--dark-card);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
  aspect-ratio: 1 / 1;
}

.cust-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,215,0,0.04) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.cust-card-img {
  border-radius: var(--radius-card) !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  display: block;
}

.card:hover .cust-card-img {
  transform: scale(1.12);
  filter: blur(3px) brightness(0.7);
}

.card:hover .cust-card {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-gold), 0 8px 30px rgba(0,0,0,0.6);
  transform: translateY(-4px);
}

.card:hover {
  border: none !important;
  transform: translateY(-4px);
}

.card {
  background: transparent !important;
  border: none !important;
}

/* Card Overlay */
.card-img-overlay {
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: none !important;
  border-radius: var(--radius-card) !important;
  color: var(--gold);
  z-index: 10;
  padding: 12px;
}

.card:hover .card-img-overlay {
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
}

.card-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
  margin: 0;
}

.card-img-overlay h6 {
  font-weight: 600;
  color: var(--gold);
  font-size: 13px;
  text-align: center;
  z-index: 10;
}

/* ===== PLAY NOW BUTTON ===== */
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 20;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.card:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.play-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold) 0%, #FFA500 100%);
  border: none;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.2);
  transition: var(--transition);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
  pointer-events: auto;
}

.play-now-btn:hover {
  background: linear-gradient(135deg, #FFE85C 0%, var(--gold) 100%);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.7);
  transform: scale(1.05);
}

.card .play-button { display: none !important; }

/* ===== HERO BANNER ===== */
.hero-banner {
  background: linear-gradient(135deg, rgba(191,0,255,0.15) 0%, rgba(0,245,255,0.08) 50%, rgba(255,215,0,0.1) 100%);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.hero-banner::before {
  content: '🎮';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 80px;
  opacity: 0.07;
  pointer-events: none;
}

.hero-banner h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold) 0%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-banner p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== INFINITE SCROLL ===== */
.infinite-scroll {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.infinite-scroll .scroll-track {
  display: flex;
  gap: 12px;
  animation: scroll-left 35s linear infinite;
}

.infinite-scroll:hover .scroll-track {
  animation-play-state: paused;
}

.infinite-scroll .card {
  min-width: 150px;
  flex: 0 0 auto;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== GLASS DIVIDER ===== */
.glass-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent);
  margin: 20px 0;
  border: none;
}

/* ===== INFO SECTION ===== */
.info-section {
  background: rgba(13, 17, 23, 0.7);
  border: 1px solid rgba(255, 215, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  margin-bottom: 24px;
}

.info-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.info-section p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ===== GEO EDITORIAL SECTION (AI Search Citability) ===== */
.geo-editorial {
  background: linear-gradient(135deg, rgba(13, 17, 23, 0.85) 0%, rgba(17, 24, 39, 0.9) 100%);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  backdrop-filter: blur(10px);
}

.geo-editorial-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.geo-editorial-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin: 0;
}

.geo-editorial-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== MOBILE GAMES SECTION ===== */
.mobile-games-section {
  padding: 40px 20px;
  background: rgba(13, 27, 42, 0.4);
  color: #fff;
  border-radius: 20px;
  border: 1px solid rgba(177, 165, 165, 0.15);
  box-shadow: var(--shadow-gold);
}

.mobile-games-section h2 {
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--gold);
}

.mobile-games-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.mobile-games-section a { color: #1e90ff; text-decoration: none; }
.mobile-games-section a:hover { text-decoration: underline; }

.mobile-games-image { text-align: center; }
.mobile-games-image img { max-width: 100%; height: auto; border-radius: 8px; }

@media (min-width: 768px) {
  .mobile-games-section { padding: 60px 40px; }
  .mobile-games-section h2 { font-size: 2.5rem; }
}

/* ===== GAME PAGE STYLES ===== */
.iframe-box {
  background: #fff;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  border-radius: 20px;
}

#fullscreen-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

#fullscreen-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.game-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-image {
  max-width: 100%;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(29, 27, 54, 0.8);
}

.game-heading { color: #000; margin-bottom: 0 !important; margin-left: 10px; }
.icon-fullscreen { width: 40px; cursor: zoom-in; }
.title-fullscreen { color: #000; font-size: 11px; font-weight: 600; cursor: zoom-in; }
.description-box { border-radius: 20px; box-shadow: 0 0 10px rgba(29, 27, 54, 0.8); }
.small-title { font-weight: 700; font-size: 10px; }
.box-extra { border-radius: 20px; box-shadow: 0 0 10px rgba(29, 27, 54, 0.8); background-color: #ffeff4; }
.box-extra-img { width: 50px; height: 50px; }

/* ===== FORMS ===== */
.form-control {
  background-color: rgba(224, 224, 224, 0.06) !important;
  color: #e0e0e0 !important;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.1) !important;
  padding: 14px 18px;
}

.form-control::placeholder { color: rgba(255,255,255,0.35); }
.form-control:focus { box-shadow: 0 0 0 0.15rem var(--gold); border-color: var(--gold) !important; }

.btn {
  padding: 10px 24px;
  border: 0;
  color: #000;
  border-radius: 15px;
}

.btndiv .btn {
  background: linear-gradient(135deg, var(--gold), #FFA500);
  color: #000;
  border: none;
  border-radius: 30px;
  margin-bottom: 50px;
  font-weight: 700;
}

/* ===== FOOTER LINKS ===== */
.marker a { color: var(--gold); text-decoration: none; transition: color 0.3s ease; }
.marker a:hover { color: #eee; }
.marker::marker { content: "•"; color: #b9b9b9; font-size: 20px; }
.li::marker { content: "•"; color: var(--gold); font-size: 20px; }
.game-link a { color: var(--gold); text-decoration: none; transition: color 0.3s ease; }
.game-link a:hover { color: #fff; }

/* ===== MISC ===== */
.conprivacy h2 { font-weight: 500; font-size: 16px; }
.center-text { text-align: center; width: 80%; margin: 0 auto; padding: 20px; color: #fff; }
.slogan { font-weight: 500; font-style: italic; }
.bg-dark { background-color: rgb(255,255,255) !important; }
.p-4 { color: #b9b9b9; font-size: 14px; }
.numbered br::before { content: ""; }
.bulleted span::before { content: "• "; color: #b9b9b9; margin-right: 5px; }
.numbered, .bulleted { display: block; padding-left: 1.5em; }

.rounded-img {
  width: 100%;
  height: auto;
  max-height: 55vh;
  border-radius: 30px;
  object-fit: cover;
  display: block;
}

/* ===== HEADER SHADOW ===== */
header { box-shadow: 0 0 10px rgba(29, 27, 54, 0.8) !important; }

/* ===== FOOTER MEDIA ===== */
@media (min-width: 1025px) { .footermenu { display: flex !important; justify-content: flex-end !important; } }
@media (max-width: 768px) { .rounded-img { max-height: 35vh; } }
@media (max-width: 480px) { .rounded-img { max-height: 30vh; } }

/* ===== PUSH POPUP ===== */
.push-popup {
  display: none;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #1a1a2e, #0b1c26);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,215,0,0.2);
  border-radius: 16px;
  border: 1px solid rgba(255,215,0,0.3);
  padding: 20px;
  width: 95%;
  max-width: 400px;
  z-index: 9999;
  animation: slideDown 0.4s ease-out;
}

.push-content { display: flex; gap: 16px; align-items: center; }
.push-logo { width: 50px; height: 50px; border-radius: 10px; }
.push-message p { margin: 0; font-size: 0.95rem; color: #fff; }
.push-buttons { margin-top: 10px; display: flex; justify-content: flex-end; gap: 15px; }
.btn-no, .btn-yes { padding: 6px 25px; border-radius: 6px; border: none; font-weight: bold; cursor: pointer; }
.btn-no { background: transparent; color: var(--gold); }
.btn-yes { background: linear-gradient(135deg, var(--gold), #FFA500); color: #000; }

@keyframes slideDown {
  from { opacity: 0; transform: translate(-50%, -20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 500px) {
  .push-content { flex-direction: column; text-align: center; }
}

/* ===== ANIMATED GLOW PULSE ===== */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255,215,0,0.2); }
  50% { box-shadow: 0 0 25px rgba(255,215,0,0.45); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--gold-dark)); border-radius: 3px; }

/* =====================================================
   GAME.PHP — PREMIUM GAME PLAYER STYLES
   ===================================================== */

/* ===== GAME PLAYER WRAPPER ===== */
.game-player-wrapper {
  background: rgba(13, 17, 23, 0.85);
  border: 1px solid rgba(255, 215, 0, 0.18);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,215,0,0.08);
  backdrop-filter: blur(12px);
}

/* ===== GAME IFRAME BOX ===== */
.game-iframe-box {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #000;
}

.game-iframe-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .game-iframe-box {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .game-iframe-box {
    height: 240px;
  }
}

/* ===== GAME INFO BAR ===== */
.game-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(17,24,39,0.95) 0%, rgba(6,8,16,0.98) 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.12);
  gap: 12px;
  flex-wrap: wrap;
}

.game-info-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.game-info-thumb {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.2);
  flex-shrink: 0;
}

.game-info-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.game-info-title {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 !important;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.game-info-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,165,0,0.1));
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.game-info-right {
  flex-shrink: 0;
}

/* ===== FULLSCREEN PILL BUTTON ===== */
.fullscreen-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255,215,0,0.12), rgba(255,165,0,0.08));
  border: 1px solid rgba(255, 215, 0, 0.35);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 9px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

.fullscreen-pill-btn:hover {
  background: linear-gradient(135deg, var(--gold), #FFA500);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(255,215,0,0.4);
  transform: translateY(-1px);
}

.fullscreen-icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: invert(85%) sepia(60%) saturate(400%) hue-rotate(5deg);
  transition: filter 0.3s ease;
}

.fullscreen-pill-btn:hover .fullscreen-icon-img {
  filter: invert(0%) brightness(0%);
}

/* ===== GAME DESCRIPTION BOX ===== */
.game-desc-box {
  background: rgba(13, 17, 23, 0.75);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 18px;
  padding: 24px 28px;
  backdrop-filter: blur(10px);
}

.game-desc-title {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--gold) !important;
  letter-spacing: 1px;
  margin-bottom: 14px !important;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,215,0,0.12);
}

.game-desc-content {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

.game-desc-content p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 10px;
}

.game-desc-content h2,
.game-desc-content h3 {
  color: #fff;
  font-size: 15px;
  margin-top: 14px;
}

/* ===== OLD GAME PLAYER OVERRIDES (keep compat) ===== */
.iframe-box {
  background: rgba(13,17,23,0.85);
  box-shadow: 0 0 30px rgba(255,215,0,0.2);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,215,0,0.15);
}

#fullscreen-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

#fullscreen-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.game-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(17, 24, 39, 0.95);
  border-top: 1px solid rgba(255,215,0,0.12);
}

.game-heading {
  color: #fff !important;
  margin-bottom: 0 !important;
  margin-left: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 15px !important;
  font-weight: 700;
}

.game-image {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  border: 2px solid rgba(255,215,0,0.3);
  box-shadow: 0 0 12px rgba(255,215,0,0.2);
  object-fit: cover;
}

.icon-fullscreen {
  width: 36px;
  cursor: zoom-in;
  filter: invert(85%) sepia(60%) saturate(400%) hue-rotate(5deg);
  transition: transform 0.2s ease;
}

.icon-fullscreen:hover { transform: scale(1.15); }

.title-fullscreen {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: zoom-in;
  margin-top: 4px !important;
}

.description-box {
  border-radius: 18px;
  background: rgba(13,17,23,0.75);
  border: 1px solid rgba(255,215,0,0.1);
  padding: 20px;
}

/* =====================================================
   INNER PAGES — developer / affiliate / about / contact
   ===================================================== */

/* ── HERO BANNER ── */
.ip-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  height: 280px;
}
.ip-hero img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(0.45);
}
.ip-hero-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgb(255 215 0 / 15%), rgba(0, 0, 0, 0.5));
  text-align: center; padding: 20px;
}
.ip-hero-overlay h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(22px, 4vw, 38px); font-weight: 900;
  background: linear-gradient(135deg, #FFD700, #00F5FF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin: 0 0 10px;
}
.ip-hero-overlay p {
  font-size: 15px; color: #d1d5db;
  max-width: 600px; margin: 0;
}

/* ── CONTENT SECTION ── */
.ip-section {
  background: rgba(13, 17, 23, 0.75);
  border: 1px solid rgba(255, 215, 0, 0.09);
  border-radius: 18px; padding: 28px 32px;
  margin-bottom: 24px; backdrop-filter: blur(10px);
}
.ip-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 1.5px; color: #FFD700;
  text-transform: uppercase; margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.12);
  display: flex; align-items: center; gap: 8px;
}
.ip-section p {
  font-size: 14px; color: #9ca3af;
  line-height: 1.9; margin-bottom: 10px;
}
.ip-section h3 {
  font-size: 15px; color: #e5e7eb;
  margin: 18px 0 8px; font-weight: 600;
}

/* ── STATS STRIP ── */
.ip-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px; margin-bottom: 24px;
}
.ip-stat-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 14px; padding: 20px;
  text-align: center; transition: all 0.3s ease;
}
.ip-stat-card:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.35);
  transform: translateY(-3px);
}
.ip-stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px; font-weight: 900;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block; margin-bottom: 4px;
}
.ip-stat-label {
  font-size: 11px; color: #9ca3af;
  letter-spacing: 1px; text-transform: uppercase;
}

/* ── VALUES / FEATURES GRID ── */
.ip-values,
.ip-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; margin-top: 8px;
}
.ip-val-card,
.ip-feat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px; padding: 22px;
  text-align: center; transition: all 0.3s ease;
}
.ip-val-card:hover,
.ip-feat-card:hover {
  background: rgba(255, 215, 0, 0.06);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-3px);
}
.ip-val-icon,
.ip-feat-icon { font-size: 32px; margin-bottom: 10px; display: block; }
.ip-val-title,
.ip-feat-title { font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 6px; }
.ip-val-desc,
.ip-feat-desc { font-size: 12.5px; color: #9ca3af; line-height: 1.7; }

/* ── STEPS ── */
.ip-steps { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.ip-step {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px; padding: 18px 20px; transition: all 0.3s;
}
.ip-step:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.18);
}
.ip-step-num {
  font-family: 'Orbitron', sans-serif; font-size: 22px; font-weight: 900;
  color: rgba(255, 215, 0, 0.35); flex-shrink: 0;
  width: 40px; text-align: center; margin-top: 2px;
}
.ip-step-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.ip-step-desc { font-size: 13px; color: #9ca3af; line-height: 1.7; margin: 0; }

/* ── GAME LIST ── */
.ip-game-list { display: flex; flex-direction: column; gap: 10px; }
.ip-game-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px; padding: 12px 16px;
  text-decoration: none; transition: all 0.3s ease;
}
.ip-game-item:hover {
  background: rgba(255, 215, 0, 0.07);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateX(5px);
}
.ip-game-num {
  font-family: 'Orbitron', sans-serif; font-size: 12px; font-weight: 900;
  color: rgba(255, 215, 0, 0.4); width: 28px; flex-shrink: 0;
}
.ip-game-name { font-size: 13.5px; font-weight: 600; color: #e5e7eb; }
.ip-game-tag {
  margin-left: auto; font-size: 11px; color: #FFD700;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px; padding: 2px 10px; white-space: nowrap;
}

/* ── TEAM GRID ── */
.ip-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px; margin-top: 8px;
}
.ip-team-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px; padding: 22px 16px;
  text-align: center; transition: all 0.3s;
}
.ip-team-card:hover {
  background: rgba(255, 215, 0, 0.06);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-3px);
}
.ip-team-avatar { font-size: 40px; margin-bottom: 10px; display: block; }
.ip-team-name { font-weight: 700; font-size: 13.5px; color: #fff; margin-bottom: 4px; }
.ip-team-role { font-size: 11.5px; color: #FFD700; }

/* ── CATEGORY BADGES ── */
.ip-categories { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.ip-cat-badge {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: #FFD700; border-radius: 50px;
  padding: 7px 18px; font-size: 13px;
  font-weight: 600; transition: all 0.3s; cursor: default;
}
.ip-cat-badge:hover {
  background: rgba(255, 215, 0, 0.18);
  transform: scale(1.04);
}

/* ── CTA BOX ── */
.ip-cta {
  background: linear-gradient(135deg, rgba(191,0,255,0.12), rgba(255,215,0,0.08));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 18px; padding: 36px;
  text-align: center; margin-bottom: 24px;
}
.ip-cta h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px; font-weight: 900; color: #FFD700; margin-bottom: 12px;
}
.ip-cta p { font-size: 14px; color: #9ca3af; margin-bottom: 20px; }
.ip-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ip-btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000; font-weight: 700; font-size: 14px;
  padding: 12px 28px; border-radius: 50px;
  text-decoration: none; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35);
}
.ip-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 215, 0, 0.5); color: #000;
}
.ip-btn-outline {
  display: inline-block; background: transparent; color: #FFD700;
  border: 2px solid rgba(255, 215, 0, 0.4); font-weight: 700;
  font-size: 14px; padding: 10px 28px; border-radius: 50px;
  text-decoration: none; transition: all 0.3s;
}
.ip-btn-outline:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: #FFD700; color: #FFD700; transform: translateY(-2px);
}

/* ── AFFILIATE BENEFIT CARDS ── */
.ip-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-top: 8px;
}
.ip-benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: 16px; padding: 24px;
  transition: all 0.3s;
}
.ip-benefit-card:hover {
  background: rgba(255,215,0,0.06);
  border-color: rgba(255,215,0,0.25);
  transform: translateY(-3px);
}
.ip-benefit-icon { font-size: 30px; margin-bottom: 12px; display: block; }
.ip-benefit-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.ip-benefit-desc { font-size: 13px; color: #9ca3af; line-height: 1.7; }

/* ── CONTACT CARDS ── */
.ip-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin-bottom: 28px;
}
.ip-contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px; padding: 24px;
  text-align: center; transition: all 0.3s;
}
.ip-contact-card:hover {
  background: rgba(255, 215, 0, 0.06);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-3px);
}
.ip-contact-card .ic-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.ip-contact-card .ic-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #9ca3af; margin-bottom: 8px;
}
.ip-contact-card .ic-value { font-size: 14px; font-weight: 600; color: #FFD700; }
.ip-contact-card .ic-desc { font-size: 12px; color: #6b7280; margin-top: 6px; }

/* ── CONTACT FORM ── */
.ip-form-group { margin-bottom: 20px; }
.ip-form-label {
  display: block; font-size: 12.5px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: #9ca3af; margin-bottom: 8px;
}
.ip-form-input,
.ip-form-textarea {
  width: 100%; background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px; padding: 14px 18px;
  color: #fff; font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none; transition: all 0.3s;
}
.ip-form-input:focus,
.ip-form-textarea:focus {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.08);
  background: rgba(255, 215, 0, 0.04);
}
.ip-form-input::placeholder,
.ip-form-textarea::placeholder { color: rgba(255, 255, 255, 0.25); }
.ip-form-textarea { resize: vertical; min-height: 140px; }
.ip-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .ip-form-row { grid-template-columns: 1fr; } }
.ip-submit-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000; font-weight: 700; font-size: 14px;
  padding: 14px 32px; border: none; border-radius: 50px;
  cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35);
  font-family: 'Poppins', sans-serif;
}
.ip-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 215, 0, 0.5);
}

/* ── FAQ ── */
.ip-faq { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.ip-faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px; padding: 18px 20px; transition: all 0.3s;
}
.ip-faq-item:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.15);
}
.ip-faq-q {
  font-size: 14px; font-weight: 600; color: #fff;
  margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.ip-faq-q::before {
  content: 'Q.'; color: #FFD700;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px; font-weight: 900;
}
.ip-faq-a { font-size: 13px; color: #9ca3af; line-height: 1.8; margin: 0; padding-left: 24px; }

/* ── SUCCESS BOX ── */
.success-box {
  display: none;
  background: rgba(0, 200, 100, 0.1);
  border: 1px solid rgba(0, 200, 100, 0.3);
  border-radius: 12px; padding: 16px 20px;
  color: #6ee7a0; font-size: 14px; margin-bottom: 20px;
}

/* ── DIVIDER ── */
.ip-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent);
  border: none; margin: 24px 0;
}

/* ── EARN TABLE ── */
.ip-earn-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.ip-earn-table th {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #FFD700;
  padding: 12px 16px; border-bottom: 1px solid rgba(255,215,0,0.15); text-align: left;
}
.ip-earn-table td {
  font-size: 13.5px; color: #d1d5db;
  padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ip-earn-table tr:hover td { background: rgba(255,215,0,0.04); }
.badge-gold {
  background: rgba(255,215,0,0.12); color: #FFD700;
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 20px; padding: 3px 12px;
  font-size: 11px; font-weight: 700;
}

/* =====================================================
   SEARCH PAGE — search.php STYLES
   ===================================================== */

/* ── RESULTS HEADER ── */
.sp-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  background: rgba(13, 17, 23, 0.75);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 18px;
  padding: 20px 24px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.sp-results-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sp-results-icon {
  font-size: 36px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255,215,0,0.4));
}

.sp-results-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.2;
}

.sp-results-query {
  font-size: 13.5px;
  color: #9ca3af;
  margin: 0;
}

.sp-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  color: #FFD700;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sp-back-btn:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: #FFD700;
  color: #FFD700;
  transform: translateX(-3px);
}

/* ── EMPTY / NOT FOUND STATE ── */
.sp-empty-state {
  text-align: center;
  padding: 60px 24px;
  background: rgba(13, 17, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  margin-bottom: 32px;
}

.sp-empty-icon {
  font-size: 64px;
  margin-bottom: 18px;
  display: block;
  opacity: 0.6;
}

.sp-empty-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.sp-empty-desc {
  font-size: 14px;
  color: #9ca3af;
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.8;
}

.sp-browse-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35);
}

.sp-browse-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 215, 0, 0.5);
  color: #000;
}

/* ── HERO SEARCH BAR ── */
.sp-hero {
  background: linear-gradient(135deg, rgba(191,0,255,0.12), rgba(0,245,255,0.06), rgba(255,215,0,0.08));
  border: 1px solid rgba(255, 215, 0, 0.14);
  border-radius: 22px;
  padding: 48px 32px;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.sp-hero::before {
  content: '🔍';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 100px;
  opacity: 0.05;
  pointer-events: none;
}

.sp-hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700, #00F5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 10px;
}

.sp-hero-sub {
  font-size: 14px;
  color: #9ca3af;
  margin: 0 0 28px;
}

.sp-hero-form {
  display: flex;
  justify-content: center;
}

.sp-hero-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  padding: 5px 5px 5px 20px;
  width: 100%;
  max-width: 520px;
  transition: all 0.3s ease;
}

.sp-hero-input-wrap:focus-within {
  border-color: #FFD700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
  background: rgba(255, 215, 0, 0.04);
}

.sp-hero-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  padding: 8px 0;
}

.sp-hero-input::placeholder { color: rgba(255,255,255,0.3); }

.sp-hero-submit {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(255, 215, 0, 0.3);
}

.sp-hero-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(255, 215, 0, 0.5);
}

@media (max-width: 480px) {
  .sp-hero { padding: 36px 18px; }
  .sp-hero-input-wrap { flex-direction: column; border-radius: 16px; padding: 12px; gap: 10px; }
  .sp-hero-input { width: 100%; padding: 8px 4px; }
  .sp-hero-submit { width: 100%; border-radius: 12px; }
  .sp-results-header { flex-direction: column; align-items: flex-start; }
}

/* =====================================================
   INDEX PAGE — HERO BANNER UPGRADE & INFO CARDS
   ===================================================== */

/* ── HERO BADGE ── */
.hero-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #FFD700;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* ── HERO STATS STRIP ── */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-stat {
  text-align: center;
  padding: 0 24px;
}

.hero-stat-num {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 3px;
}

.hero-stat-lbl {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 215, 0, 0.2);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0 12px; }
  .hero-stat-num { font-size: 18px; }
}

/* ── SEO INFO CARDS GRID ── */
.idx-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.idx-info-card {
  background: rgba(13, 17, 23, 0.75);
  border: 1px solid rgba(255, 215, 0, 0.09);
  border-radius: 18px;
  padding: 24px 22px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.idx-info-card:hover {
  background: rgba(255, 215, 0, 0.05);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-3px);
}

.idx-info-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

.idx-info-title {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #FFD700 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px !important;
}

.idx-info-desc {
  font-size: 13px !important;
  color: #9ca3af !important;
  line-height: 1.8;
  margin: 0 !important;
}

/* ── QUICK LINKS STRIP ── */
.idx-links-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(13, 17, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 14px 20px;
}

.idx-links-label {
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-right: 4px;
}

.idx-link-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 215, 0, 0.07);
  border: 1px solid rgba(255, 215, 0, 0.18);
  color: #FFD700;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.idx-link-chip:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: #FFD700;
  color: #FFD700;
  transform: translateY(-2px);
}

/* =====================================================
   LEGAL PAGES — privacy-policy / terms & conditions
   ===================================================== */

/* ── META BAR ── */
.lp-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(255, 215, 0, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  padding: 12px 20px;
  margin-bottom: 24px;
  font-size: 12.5px;
  color: #6b7280;
  font-weight: 600;
}

/* ── NUMBERED POLICY CARDS ── */
.lp-policy-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.lp-policy-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(13, 17, 23, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 22px 24px;
  transition: all 0.3s ease;
}

.lp-policy-card:hover {
  background: rgba(255, 215, 0, 0.04);
  border-color: rgba(255, 215, 0, 0.15);
}

.lp-policy-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: rgba(255, 215, 0, 0.25);
  flex-shrink: 0;
  width: 40px;
  text-align: center;
  margin-top: 2px;
}

.lp-policy-body {
  flex: 1;
}

.lp-policy-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.lp-policy-body p {
  font-size: 13.5px;
  color: #9ca3af;
  line-height: 1.85;
  margin-bottom: 8px;
}

/* ── LIST STYLE ── */
.lp-list {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}

.lp-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  color: #9ca3af;
  line-height: 1.85;
  margin-bottom: 6px;
}

.lp-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .lp-policy-card { flex-direction: column; gap: 8px; }
  .lp-policy-num { width: auto; text-align: left; font-size: 16px; }
  .lp-meta-bar { flex-direction: column; align-items: flex-start; }
}