/* ============================================
   SPEXCH247 - Main Stylesheet
   Domain: spexch247.click
   ============================================ */

/* CSS Custom Properties */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #1A1A1A;
  --bg-card-hover: #222222;
  --color-red: #CC0000;
  --color-red-hover: #FF0000;
  --color-gold: #FFD700;
  --color-gold-dim: #D4AF37;
  --color-green: #25D366;
  --color-blue: #0088CC;
  --color-white: #FFFFFF;
  --color-gray: #999999;
  --color-light: #CCCCCC;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Rajdhani', sans-serif;
  --border-red: 2px solid var(--color-red);
  --border-gold: 1px solid var(--color-gold);
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
  --shadow-red: 0 0 20px rgba(204, 0, 0, 0.4);
  --transition: all 0.3s ease;
  --radius: 8px;
  --radius-lg: 16px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
}
::selection { background: var(--color-gold); color: #000; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--color-red); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-gold); }

/* Links */
a { color: var(--color-gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-red); }

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-white);
}
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.6rem); }
p { font-size: 1rem; color: var(--color-light); margin-bottom: 1rem; }

.text-red { color: var(--color-red); }
.text-gold { color: var(--color-gold); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: var(--border-red);
  padding: 0.8rem 0;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255,215,0,0.5);
}
.logo span { color: var(--color-red); }

.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}
.nav a:hover { color: var(--color-gold); }
.nav a:hover::after { width: 100%; }

.btn-id {
  background: var(--color-red);
  color: var(--color-white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 1px;
  border: 2px solid var(--color-red);
  transition: var(--transition);
}
.btn-id:hover {
  background: transparent;
  color: var(--color-red) !important;
}
.btn-id::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px; height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -8px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-secondary);
  border-top: var(--border-red);
  padding: 1rem 1.5rem;
  gap: 1rem;
}
.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-light);
  padding: 0.5rem 0;
  border-bottom: 1px solid #222;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mobile-nav a:hover { color: var(--color-gold); }
.mobile-nav .btn-id { border-bottom: none; text-align: center; }
.mobile-nav.open { display: flex; }

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-btns {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: var(--transition);
  position: relative;
}
.float-btn svg { width: 28px; height: 28px; }
.float-btn-wa { background: #25D366; animation: pulse-green 2s infinite; }
.float-btn-tg { background: #0088CC; animation: pulse-blue 2s infinite 0.5s; }
.float-btn:hover { transform: scale(1.15); }
.float-label {
  position: absolute;
  right: 65px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.float-btn:hover .float-label { opacity: 1; }

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}
@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,136,204,0.6); }
  50% { box-shadow: 0 0 0 12px rgba(0,136,204,0); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, #0A0A14 0%, #14080A 50%, #0A0A14 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(204,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,0,0,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.hero-glow-left {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(204,0,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-right {
  position: absolute;
  top: 30%;
  right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,215,0,0.15);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.hero h1 .brand { color: var(--color-red); }
.hero h1 .odds { color: var(--color-gold); }
.hero p { font-size: 1.1rem; color: var(--color-light); margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.8rem; border-radius: var(--radius); font-family: var(--font-body); font-size: 1rem; font-weight: 700; letter-spacing: 1px; cursor: pointer; transition: var(--transition); border: 2px solid transparent; }
.btn-green { background: var(--color-green); color: #fff; border-color: var(--color-green); }
.btn-green:hover { background: transparent; color: var(--color-green); }
.btn-blue { background: var(--color-blue); color: #fff; border-color: var(--color-blue); }
.btn-blue:hover { background: transparent; color: var(--color-blue); }
.btn-gold { background: var(--color-gold); color: #000; border-color: var(--color-gold); font-weight: 700; }
.btn-gold:hover { background: transparent; color: var(--color-gold); }
.btn-red { background: var(--color-red); color: #fff; border-color: var(--color-red); }
.btn-red:hover { background: transparent; color: var(--color-red); }

/* Browser Mockup */
.browser-mockup {
  background: #1E1E2E;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 40px rgba(204,0,0,0.2);
  border: 1px solid #333;
}
.browser-chrome {
  background: #2A2A3E;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28CA41; }
.browser-url {
  flex: 1;
  background: #1A1A2E;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.browser-url .lock { color: #28CA41; font-size: 0.7rem; }
.browser-content { padding: 0; background: #0D0D14; min-height: 280px; position: relative; overflow: hidden; }
.mini-header {
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid var(--color-red);
  padding: 0.4rem 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mini-logo { font-family: var(--font-heading); font-size: 0.8rem; color: var(--color-gold); }
.mini-nav { display: flex; gap: 0.5rem; }
.mini-nav span { font-size: 0.55rem; color: #aaa; }
.mini-btn { background: var(--color-red); color: #fff; padding: 2px 8px; border-radius: 3px; font-size: 0.55rem; font-weight: 600; }
.mini-hero-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
}
.mini-hero-text .mini-badge {
  display: inline-block;
  background: rgba(255,215,0,0.15);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 1px 5px;
  border-radius: 10px;
  font-size: 0.45rem;
  margin-bottom: 4px;
}
.mini-hero-text h4 {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 3px;
}
.mini-hero-text p { font-size: 0.45rem; color: #aaa; margin-bottom: 5px; line-height: 1.4; }
.mini-cta-btns { display: flex; gap: 3px; flex-wrap: wrap; }
.mini-cta-btns a {
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.45rem;
  font-weight: 600;
  color: #fff;
}
.mini-cta-btns .wa { background: #25D366; }
.mini-cta-btns .tg { background: #0088CC; }
.login-card {
  background: #fff;
  border-radius: 6px;
  padding: 0.6rem;
}
.login-card .card-logo {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 3px;
  font-weight: 700;
  text-shadow: none;
  -webkit-text-stroke: 0;
}
.login-card .card-title {
  font-size: 0.55rem;
  color: #333;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}
.mini-input {
  display: flex;
  align-items: center;
  gap: 3px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 2px 5px;
  margin-bottom: 3px;
}
.mini-input span { font-size: 0.45rem; color: #666; }
.mini-input input { background: transparent; border: none; outline: none; font-size: 0.45rem; color: #333; width: 100%; }
.mini-login-btn {
  display: block;
  width: 100%;
  background: #1a1a1a;
  color: var(--color-gold);
  text-align: center;
  padding: 2px;
  border-radius: 3px;
  font-size: 0.45rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.mini-demo-btn {
  display: block;
  width: 100%;
  background: var(--color-gold);
  color: #000;
  text-align: center;
  padding: 2px;
  border-radius: 3px;
  font-size: 0.45rem;
  font-weight: 700;
}
.mini-recaptcha { font-size: 0.38rem; color: #999; text-align: center; margin-top: 3px; }
.ticker-bar {
  background: #1a1a1a;
  border-top: 1px solid #333;
  padding: 0.3rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
}
.ticker-live { background: var(--color-red); color: #fff; padding: 1px 5px; border-radius: 3px; font-size: 0.55rem; font-weight: 700; white-space: nowrap; }
.ticker-text { font-size: 0.55rem; color: #ccc; white-space: nowrap; animation: ticker 20s linear infinite; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.browser-cta {
  text-align: center;
  margin-top: 1.2rem;
}
.browser-cta-btn {
  display: inline-block;
  background: var(--color-gold);
  color: #000;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-bottom: 0.5rem;
}
.browser-cta-btn:hover { background: var(--color-red); color: #fff; }
.browser-caption { font-size: 0.8rem; color: var(--color-gray); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: linear-gradient(90deg, #0D0D0D, #1A0505, #0D0D0D);
  border-top: 1px solid var(--color-red);
  border-bottom: 1px solid var(--color-red);
  padding: 1.5rem 0;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-gold);
  font-weight: 700;
}
.stat-item .stat-label { font-size: 0.85rem; color: var(--color-gray); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================
   SECTION COMMON
   ============================================ */
.section { padding: 5rem 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 { margin-bottom: 0.5rem; }
.section-title p { color: var(--color-gray); font-size: 1.05rem; }
.section-title .title-line {
  width: 60px; height: 3px;
  background: var(--color-red);
  margin: 0.8rem auto 0;
}

/* ============================================
   FEATURES
   ============================================ */
.features { background: var(--bg-secondary); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid #2A2A2A;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.1rem; color: var(--color-gold); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--color-gray); margin: 0; }

/* ============================================
   HOW TO JOIN
   ============================================ */
.how-to { background: var(--bg-primary); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-red), var(--color-gold), var(--color-red));
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-gold);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}
.step-card h3 { color: var(--color-gold); margin-bottom: 0.5rem; font-size: 1.1rem; }
.step-card p { font-size: 0.9rem; color: var(--color-gray); }

/* ============================================
   GAMES GRID
   ============================================ */
.games { background: var(--bg-secondary); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.game-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid #2A2A2A;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(204,0,0,0.05));
  opacity: 0;
  transition: var(--transition);
}
.game-card:hover { border-color: var(--color-red); transform: translateY(-5px); }
.game-card:hover::before { opacity: 1; }
.game-icon { font-size: 3rem; margin-bottom: 1rem; }
.game-card h3 { color: var(--color-white); font-size: 1.1rem; }
.live-badge {
  display: inline-block;
  background: var(--color-red);
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.5rem;
  animation: blink 1.5s ease infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* ============================================
   TRUST SECTION
   ============================================ */
.trust { background: var(--bg-primary); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid #2A2A2A;
  transition: var(--transition);
}
.trust-card:hover { border-color: var(--color-gold); box-shadow: var(--shadow-gold); }
.trust-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.trust-card h3 { font-size: 1rem; color: var(--color-gold); margin-bottom: 0.5rem; }
.trust-card p { font-size: 0.85rem; color: var(--color-gray); margin: 0; }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq { background: var(--bg-secondary); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid #2A2A2A;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-q {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  color: var(--color-white);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}
.faq-q:hover { background: var(--bg-card-hover); color: var(--color-gold); }
.faq-q.active { color: var(--color-gold); border-bottom: 1px solid #333; }
.faq-arrow { font-size: 1.2rem; transition: transform 0.3s; }
.faq-q.active .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 1.2rem 1.5rem;
  background: var(--bg-secondary);
  color: var(--color-light);
  font-size: 0.95rem;
}
.faq-a.open { display: block; }

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-preview { background: var(--bg-primary); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #2A2A2A;
  transition: var(--transition);
}
.blog-card:hover { border-color: var(--color-gold); transform: translateY(-5px); }
.blog-img {
  height: 180px;
  background: linear-gradient(135deg, #1a0505, #0a0a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-content { padding: 1.5rem; }
.blog-tag {
  display: inline-block;
  background: var(--color-red);
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.blog-content h3 { font-size: 1rem; color: var(--color-white); margin-bottom: 0.5rem; font-family: var(--font-body); font-weight: 700; }
.blog-content p { font-size: 0.85rem; color: var(--color-gray); margin-bottom: 1rem; }
.blog-read-more { color: var(--color-gold); font-size: 0.9rem; font-weight: 700; }
.blog-read-more:hover { color: var(--color-red); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #1A0000, #0A0A0A, #1A1000);
  border-top: var(--border-red);
  border-bottom: var(--border-red);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(204,0,0,0.15) 0%, transparent 70%);
}
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; position: relative; }
.cta-section p { font-size: 1.1rem; color: var(--color-light); margin-bottom: 2rem; position: relative; }
.cta-section .btn { font-size: 1.1rem; padding: 1rem 2.5rem; position: relative; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #050505;
  border-top: var(--border-red);
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { font-size: 1.4rem; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.9rem; color: var(--color-gray); line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--color-gold);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--color-gray); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--color-gold); padding-left: 5px; }
.social-icons { display: flex; gap: 0.8rem; margin-top: 1rem; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  font-size: 1rem;
  transition: var(--transition);
}
.social-icon:hover { background: var(--color-red); border-color: var(--color-red); color: #fff; transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid #1A1A1A;
  padding-top: 2rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: var(--color-gray); margin-bottom: 0.5rem; }
.disclaimer {
  background: #0D0D0D;
  border: 1px solid #2A2A2A;
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--color-gray);
  text-align: center;
  line-height: 1.6;
}

/* ============================================
   INNER PAGES (About, Contact, etc.)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #0D0D14, #14080A);
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: var(--border-red);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(204,0,0,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(204,0,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero h1 { position: relative; margin-bottom: 0.5rem; }
.page-hero p { position: relative; color: var(--color-gray); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  position: relative;
}
.breadcrumb a { color: var(--color-gold); }
.breadcrumb span { color: var(--color-gray); }
.content-section { padding: 4rem 0; }
.content-box {
  background: var(--bg-card);
  border: 1px solid #2A2A2A;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.content-box h2 { color: var(--color-gold); margin-bottom: 1rem; font-size: 1.4rem; }
.content-box h3 { color: var(--color-white); margin: 1.5rem 0 0.8rem; font-size: 1.1rem; }
.content-box p { color: var(--color-light); margin-bottom: 1rem; }
.content-box ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-box ul li { color: var(--color-light); margin-bottom: 0.5rem; }

/* Contact Form */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid #333;
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--color-gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Blog */
.blog-post-content { max-width: 800px; margin: 0 auto; }
.blog-post-content h1 { margin-bottom: 1rem; }
.blog-meta { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.blog-meta span { font-size: 0.85rem; color: var(--color-gray); }
.blog-meta span strong { color: var(--color-gold); }
.post-body h2 { color: var(--color-gold); margin: 2rem 0 1rem; }
.post-body h3 { color: var(--color-white); margin: 1.5rem 0 0.8rem; }
.post-body p { margin-bottom: 1.2rem; color: var(--color-light); }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.post-body ul li, .post-body ol li { color: var(--color-light); margin-bottom: 0.5rem; }
.post-body strong { color: var(--color-gold); }
.img-placeholder {
  background: var(--bg-card);
  border: 2px dashed #333;
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  margin: 2rem 0;
  color: var(--color-gray);
}
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.pros, .cons { background: var(--bg-card); border-radius: var(--radius); padding: 1.5rem; }
.pros { border-top: 3px solid #22c55e; }
.cons { border-top: 3px solid var(--color-red); }
.pros h4 { color: #22c55e; margin-bottom: 1rem; }
.cons h4 { color: var(--color-red); margin-bottom: 1rem; }
.pros ul li::before { content: "✅ "; }
.cons ul li::before { content: "❌ "; }
.star-rating { color: var(--color-gold); font-size: 1.5rem; margin: 1rem 0; }

/* 404 */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 1.5rem; }
.error-code { font-family: var(--font-heading); font-size: 8rem; color: var(--color-red); line-height: 1; text-shadow: var(--shadow-red); }
.error-page h2 { color: var(--color-gold); font-size: 2rem; margin-bottom: 1rem; }
.error-page p { color: var(--color-gray); max-width: 500px; margin: 0 auto 2rem; }

/* Responsible Gaming */
.rg-warning {
  background: linear-gradient(135deg, #1A0505, #0A0A0A);
  border: 2px solid var(--color-red);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.rg-warning .warning-icon { font-size: 3rem; margin-bottom: 1rem; }
.helpline-box {
  background: var(--bg-card);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.helpline-box h4 { color: var(--color-gold); margin-bottom: 0.8rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero { min-height: auto; padding: 3rem 0; }
  .browser-mockup { order: -1; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .mini-hero-area { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

/* Print */
@media print {
  .header, .floating-btns, .footer { display: none; }
  body { background: #fff; color: #000; }
}
