/* CRICKETBUZZ Luxury Dark Blue Theme System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-dark: #0a0f1d;
  --bg-card: #131b2e;
  --bg-card-header: #1b2438;
  --glass-border: rgba(255, 255, 255, 0.1);
  
  --dark-blue-accent: #0091ff;
  --dark-blue-glow: rgba(0, 145, 255, 0.3);
  --royal-blue: #0055ff;
  
  --primary-gold: #0091ff;
  --neon-cyan: #00f2fe;
  --whatsapp-green: #00c853;
  --telegram-blue: #0091ff;
  
  --text-main: #ffffff;
  --text-sub: #cbd5e1;
  --text-muted: #94a3b8;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  
  --transition: all 0.25s ease;
  --shadow-3d: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 145, 255, 0.2);
  --shadow-icon-3d: inset 0 2px 4px rgba(255, 255, 255, 0.4), inset 0 -2px 4px rgba(0, 0, 0, 0.6), 0 4px 10px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background: #0a0f1d;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Background Animated Dark Blue Ambient Orbs */
.bg-glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
}

.orb-1 { width: 450px; height: 450px; background: #0055ff; top: -100px; left: -100px; }
.orb-2 { width: 500px; height: 500px; background: #0091ff; top: 30%; right: -150px; }
.orb-3 { width: 400px; height: 400px; background: #1d4ed8; bottom: -100px; left: 20%; }

/* Live Ticker Bar */
.ticker-wrap {
  width: 100%;
  background: #0d1322;
  border-bottom: 1px solid #1e293b;
  padding: 8px 0;
  overflow: hidden;
  font-size: 0.88rem;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.ticker-title {
  background: linear-gradient(135deg, #0091ff, #0055ff);
  color: #fff;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 4px 14px;
  font-size: 0.75rem;
  white-space: nowrap;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  z-index: 2;
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  padding-left: 100%;
  color: #f8fafc;
  font-weight: 500;
}

.ticker-content span {
  margin-right: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 19, 34, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #1e293b;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  /*background: #ffffff;*/
  /*padding: 4px 8px;*/
  /*border: 1px solid #334155;*/
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 3D Icon Badge */
.icon-3d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-icon-3d);
}

.icon-3d-lg { width: 48px; height: 48px; border-radius: 12px; font-size: 1.4rem; }
.icon-3d-gold { background: linear-gradient(145deg, #1d4ed8, #0091ff); color: #fff; border: 1px solid #3b82f6; }
.icon-3d-cyan { background: linear-gradient(145deg, #0055ff, #00f2fe); color: #fff; border: 1px solid #38bdf8; }
.icon-3d-green { background: linear-gradient(145deg, #15803d, #00c853); color: #fff; border: 1px solid #4ade80; }
.icon-3d-orange { background: linear-gradient(145deg, #1d4ed8, #0091ff); color: #fff; border: 1px solid #3b82f6; }
.icon-3d-purple { background: linear-gradient(145deg, #6b21a8, #9333ea); color: #fff; border: 1px solid #c084fc; }

/* Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-whatsapp { background: #00c853; color: #fff; box-shadow: 0 3px 12px rgba(0, 200, 83, 0.3); }
.btn-whatsapp:hover { background: #00a843; transform: translateY(-2px); }
.btn-telegram { background: #0091ff; color: #fff; box-shadow: 0 3px 12px rgba(0, 145, 255, 0.3); }
.btn-telegram:hover { background: #0077d6; transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, #0091ff, #0055ff); color: #fff; font-weight: 800; box-shadow: 0 3px 12px rgba(0, 145, 255, 0.3); }
.btn-gold:hover { background: #0077d6; transform: translateY(-2px); }
.btn-outline-cyan { background: rgba(0, 145, 255, 0.1); border: 1px solid #0091ff; color: #00f2fe; }
.btn-outline-cyan:hover { background: #0091ff; color: #fff; }

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.4rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 40px 24px 60px;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 145, 255, 0.12);
  border: 1px solid rgba(0, 145, 255, 0.3);
  color: #00f2fe;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

.glow-gold { color: #0091ff; }
.glow-cyan { color: #00f2fe; }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #131b2e;
  border: 1px solid #1e293b;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero Visual Banner */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-3d-card {
  width: 100%;
  max-width: 400px;
  background: #131b2e;
  border: 2px solid #0091ff;
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 145, 255, 0.2);
}

.hero-banner-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  border: 1px solid #1e293b;
}

.banner-overlay-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.banner-stat { text-align: center; }
.banner-stat .num { font-family: 'Inter', sans-serif; font-size: 1.25rem; font-weight: 900; color: #00f2fe; }
.banner-stat .label { font-size: 0.75rem; color: var(--text-muted); font-weight: 700; }

/* Filter Controls & Section Headers */
.section-header {
  max-width: 1300px;
  margin: 20px auto 25px;
  padding: 0 24px;
  text-align: center;
}

.section-badge {
  color: #00f2fe;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #ffffff;
}

.section-sub { color: var(--text-sub); font-size: 0.95rem; margin-bottom: 20px; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 18px;
}

.filter-tab {
  background: #131b2e;
  border: 1px solid #1e293b;
  color: var(--text-sub);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
}

.filter-tab.active, .filter-tab:hover {
  background: #0091ff;
  color: #ffffff;
  border-color: #0091ff;
  box-shadow: 0 4px 15px rgba(0, 145, 255, 0.4);
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.search-box input {
  width: 100%;
  padding: 10px 18px 10px 42px;
  background: #131b2e;
  border: 1px solid #1e293b;
  border-radius: 30px;
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.search-box i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #0091ff; }

/* Exchange Cards Grid */
.sites-section { max-width: 1300px; margin: 0 auto 50px; padding: 0 24px; }
.category-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 30px 0 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #1e293b;
  color: #ffffff;
}

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

.site-card {
  background: #131b2e;
  border-radius: var(--radius-xl);
  padding: 22px;
  border: 2px solid #0091ff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 145, 255, 0.2);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.site-card:hover { transform: translateY(-5px); box-shadow: 0 14px 35px rgba(0, 145, 255, 0.35); }

.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }

.card-logo-wrap {
  width: 90px;
  height: 80px;
  border-radius: var(--radius-md);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid #334155;
}

.card-logo-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }

.card-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-badge.auto-badge { background: rgba(0, 200, 83, 0.15); border: 1px solid #00c853; color: #25d366; }
.card-badge.manual-badge { background: rgba(0, 145, 255, 0.15); border: 1px solid #0091ff; color: #00f2fe; }

.card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.card-domain-link {
  background: linear-gradient(135deg, #0091ff, #0055ff);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  display: block;
  text-align: center;
  margin-bottom: 16px;
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(0, 145, 255, 0.3);
}

.card-domain-link:hover { background: #0077d6; }

.card-specs {
  background: #0a0f1d;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  margin-bottom: 18px;
  border: 1px solid #1e293b;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.9rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.spec-row:last-child { border-bottom: none; }
.spec-row .label { color: var(--text-muted); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.spec-row .val { font-weight: 800; color: #ffffff; }

.card-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.card-buttons .btn-full { grid-column: span 2; }

/* Steps Section */
.steps-section { background: #0d1322; border-y: 1px solid #1e293b; padding: 50px 24px; }
.steps-container { max-width: 1300px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; margin-top: 30px; }
.step-card { background: #131b2e; border: 1px solid #1e293b; padding: 24px 18px; border-radius: var(--radius-xl); position: relative; text-align: center; }
.step-number { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 34px; height: 34px; background: #0091ff; color: #fff; font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; box-shadow: 0 2px 8px rgba(0, 145, 255, 0.4); }
.step-icon { margin-top: 8px; margin-bottom: 12px; display: flex; justify-content: center; }
.step-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: #ffffff; font-weight: 800; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* Modal Popup */
.modal-backdrop { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(6px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: var(--transition); }
.modal-backdrop.active { opacity: 1; pointer-events: all; }
.modal-box { width: 90%; max-width: 440px; background: #131b2e; border: 2px solid #0091ff; border-radius: var(--radius-xl); padding: 24px; position: relative; box-shadow: 0 15px 35px rgba(0, 145, 255, 0.3); }
.modal-close { position: absolute; top: 16px; right: 18px; background: transparent; border: none; color: var(--text-muted); font-size: 1.3rem; cursor: pointer; }
.modal-title { font-size: 1.25rem; color: #00f2fe; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; font-weight: 800; }
.modal-desc { color: var(--text-sub); font-size: 0.9rem; margin-bottom: 16px; }
.demo-credentials-box { background: #0a0f1d; border: 1px dashed #1e293b; border-radius: var(--radius-md); padding: 14px; margin-bottom: 16px; }
.cred-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 0.9rem; color: #ffffff; }
.cred-row code { background: #1e293b; padding: 3px 8px; border-radius: 4px; color: #00f2fe; font-weight: 800; font-family: monospace; }

/* Floating Bar & Mobile Bar */
.mobile-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(13, 19, 34, 0.95); backdrop-filter: blur(10px); border-top: 1px solid #1e293b; padding: 10px 16px; z-index: 999; justify-content: space-around; gap: 10px; }
.mobile-sticky-bar .btn-cta { flex: 1; justify-content: center; padding: 10px; font-size: 0.85rem; }
.floating-whatsapp { position: fixed; bottom: 30px; right: 25px; z-index: 1000; display: flex; align-items: center; gap: 8px; background: #00c853; color: #fff; padding: 10px 18px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.9rem; box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4); }

/* Footer */
footer { background: #060b14; border-top: 1px solid #1e293b; padding: 40px 24px; color: var(--text-muted); font-size: 0.88rem; }
.footer-container { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; margin-bottom: 25px; }
.footer-brand h4 { font-size: 1.25rem; color: #ffffff; margin-bottom: 10px; font-weight: 800; }
.footer-links h5 { color: #ffffff; font-size: 1rem; margin-bottom: 12px; font-weight: 800; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { color: var(--text-muted); text-decoration: none; }
.footer-links ul li a:hover { color: #00f2fe; }
.disclaimer-box { max-width: 1300px; margin: 0 auto; border-top: 1px solid #1e293b; padding-top: 20px; text-align: center; font-size: 0.8rem; line-height: 1.6; }

@media (max-width: 992px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 30px; }
  .hero-features { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .nav-actions { display: none; }
  .mobile-toggle { display: block; }
  .sites-grid { grid-template-columns: 1fr; }
  .mobile-sticky-bar { display: flex; }
  .floating-whatsapp { bottom: 75px; right: 15px; padding: 8px 14px; font-size: 0.82rem; }
  .card-buttons { grid-template-columns: 1fr; }
  .card-buttons .btn-full { grid-column: span 1; }
}
