/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #1a2035;
  --bg-card-hover: #1f2847;
  --accent-1: #00e5a0;
  --accent-2: #00b8d4;
  --accent-gradient: linear-gradient(135deg, #00e5a0, #00b8d4);
  --accent-glow: rgba(0, 229, 160, 0.15);
  --text-primary: #e8ecf4;
  --text-secondary: #8892a8;
  --text-muted: #5a6478;
  --border-color: rgba(255,255,255,0.06);
  --danger: #ff4d6a;
  --warning: #ffb020;
  --success: #00e5a0;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 40px rgba(0, 229, 160, 0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-display);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
main { flex: 1; }

/* Grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}
.navbar.scrolled { background: rgba(10, 14, 26, 0.95); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; }
.logo span { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  padding: 8px 16px; font-size: 0.9rem; font-weight: 500;
  color: var(--text-secondary); border-radius: 8px;
  transition: var(--transition); display: flex; align-items: center; gap: 4px;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-links > li > a .arrow { font-size: 0.6rem; transition: var(--transition); }
.nav-links > li:hover > a .arrow { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: var(--transition);
}
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 14px; font-size: 0.85rem; color: var(--text-secondary); border-radius: 8px; transition: var(--transition); }
.dropdown a:hover { color: var(--accent-1); background: rgba(0, 229, 160, 0.06); }
.dropdown a .badge {
  display: inline-block; background: var(--accent-gradient); color: var(--bg-primary);
  font-size: 0.65rem; font-weight: 700; padding: 2px 6px; border-radius: 4px; margin-left: 6px; text-transform: uppercase;
}
.nav-auth { display: flex; gap: 8px; }
.btn-login {
  padding: 8px 20px; font-size: 0.85rem; font-weight: 600;
  color: var(--text-secondary); border: 1px solid var(--border-color);
  border-radius: 8px; background: transparent; cursor: pointer; transition: var(--transition); font-family: var(--font-display);
}
.btn-login:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.15); }
.btn-register {
  padding: 8px 20px; font-size: 0.85rem; font-weight: 600;
  color: var(--bg-primary); background: var(--accent-gradient);
  border: none; border-radius: 8px; cursor: pointer; transition: var(--transition); font-family: var(--font-display);
}
.btn-register:hover { opacity: 0.9; transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); margin: 5px 0; transition: var(--transition); }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 120px 24px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(0,229,160,0.06), transparent);
}
.page-header h1 {
  font-size: 2.2rem; font-weight: 800; letter-spacing: -1px;
  position: relative; z-index: 1;
}
.page-header h1 .gradient-text { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-header p { color: var(--text-secondary); margin-top: 8px; position: relative; z-index: 1; }

/* ===== CONTAINERS ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.content-layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; padding-bottom: 80px; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 32px; transition: var(--transition);
}
.card:hover { border-color: rgba(0,229,160,0.12); }
.card h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; }
.card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 16px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; padding: 12px 28px; font-size: 0.95rem; font-weight: 600;
  color: var(--bg-primary); background: var(--accent-gradient);
  border: none; border-radius: 10px; cursor: pointer; font-family: var(--font-display);
  transition: var(--transition); box-shadow: 0 4px 20px rgba(0,229,160,0.25); text-align: center;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,229,160,0.3); }
.btn-secondary {
  display: inline-block; padding: 12px 28px; font-size: 0.95rem; font-weight: 600;
  color: var(--text-primary); background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color); border-radius: 10px; cursor: pointer;
  font-family: var(--font-display); transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-block { width: 100%; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 8px;
}
.form-control {
  width: 100%; padding: 12px 16px; font-size: 0.9rem;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-color);
  border-radius: 8px; color: var(--text-primary); font-family: var(--font-display);
  transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--accent-1); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238892a8' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-check { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--accent-1); cursor: pointer;
}
.form-hint { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* ===== BANNER ZONES ===== */
.banner-zone { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.banner-slot {
  background: var(--bg-card); border: 2px dashed rgba(255,255,255,0.08);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  overflow: hidden; transition: var(--transition); position: relative;
}
.banner-slot.leaderboard { width: 100%; min-height: 50px; margin: 24px auto; }
.banner-slot.large-leaderboard { width: 100%; max-width: 970px; min-height: 50px; margin: 24px auto; }
.banner-slot.rectangle { max-width: 100%; min-height: 50px; }
.banner-placeholder { font-size: 0.75rem; color: var(--text-muted); font-family: var(--font-mono); text-align: center; }
.banner-placeholder span { display: block; color: var(--accent-1); font-size: 0.65rem; margin-top: 4px; }

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 24px;
}
.sidebar-widget h3 {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px; font-family: var(--font-mono);
}
.text-ad { padding: 14px 0; border-bottom: 1px solid var(--border-color); }
.text-ad:last-child { border-bottom: none; }
.text-ad a { font-size: 0.95rem; font-weight: 600; color: var(--accent-1); transition: var(--transition); }
.text-ad a:hover { color: var(--accent-2); }
.text-ad p { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ===== TABLES ===== */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border-color); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 18px; text-align: left; font-size: 0.9rem; border-bottom: 1px solid var(--border-color); }
th { background: rgba(255,255,255,0.03); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
td { color: var(--text-secondary); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.02); }

/* ===== GRID GAME (AdzGrid) ===== */
.grid-game { display: grid; grid-template-columns: repeat(20, 1fr); gap: 2px; }
.grid-cell {
  aspect-ratio: 1; background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: 4px; cursor: pointer; transition: var(--transition);
}
.grid-cell:hover { background: var(--accent-glow); border-color: var(--accent-1); }

/* ===== ACCORDION (FAQ) ===== */
.accordion-item { border-bottom: 1px solid var(--border-color); }
.accordion-btn {
  width: 100%; background: none; border: none; padding: 20px 0;
  font-size: 1rem; font-weight: 600; color: var(--text-primary);
  text-align: left; cursor: pointer; font-family: var(--font-display);
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--transition);
}
.accordion-btn:hover { color: var(--accent-1); }
.accordion-btn .icon { font-size: 1.2rem; transition: var(--transition); }
.accordion-btn.active .icon { transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-body { padding: 0 0 20px; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8; }

/* ===== STATS BAR ===== */
.stats-bar { max-width: 1280px; margin: 40px auto; padding: 0 24px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border-color); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card);
}
.stat-item { background: var(--bg-card); padding: 32px 24px; text-align: center; transition: var(--transition); }
.stat-item:hover { background: var(--bg-card-hover); }
.stat-number {
  font-family: var(--font-mono); font-size: 1.8rem; font-weight: 700;
  background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 4px;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== FEATURES ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  color: var(--accent-1); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px; font-family: var(--font-mono);
}
.section-header h2 { font-size: 2.2rem; font-weight: 700; letter-spacing: -1px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 36px 28px; transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--accent-gradient); opacity: 0; transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); border-color: rgba(0,229,160,0.15); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px; background: var(--accent-glow); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== TABS ===== */
.tabs { display: flex; gap: 4px; margin-bottom: 24px; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 20px; font-size: 0.85rem; font-weight: 600;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-color);
  border-radius: 8px; color: var(--text-secondary); cursor: pointer;
  font-family: var(--font-display); transition: var(--transition);
}
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active { background: var(--accent-glow); border-color: rgba(0,229,160,0.3); color: var(--accent-1); }

/* ===== FORUM ===== */
.forum-category { margin-bottom: 24px; }
.forum-category-header {
  padding: 16px 20px; background: rgba(255,255,255,0.03);
  border-radius: var(--radius) var(--radius) 0 0;
  border: 1px solid var(--border-color); border-bottom: none;
  font-weight: 700; font-size: 0.95rem;
}
.forum-thread {
  display: grid; grid-template-columns: 1fr auto auto; gap: 20px;
  padding: 16px 20px; border: 1px solid var(--border-color); border-top: none;
  align-items: center; transition: var(--transition);
}
.forum-thread:hover { background: rgba(255,255,255,0.02); }
.forum-thread:last-child { border-radius: 0 0 var(--radius) var(--radius); }
.thread-title { font-weight: 600; font-size: 0.9rem; }
.thread-title a:hover { color: var(--accent-1); }
.thread-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.thread-stat { text-align: center; font-size: 0.8rem; color: var(--text-muted); }
.thread-stat strong { display: block; color: var(--text-secondary); font-size: 1rem; }

/* ===== ALERTS ===== */
.alert {
  padding: 16px 20px; border-radius: var(--radius); font-size: 0.9rem;
  margin-bottom: 20px; border: 1px solid;
}
.alert-info { background: rgba(0,184,212,0.08); border-color: rgba(0,184,212,0.2); color: var(--accent-2); }
.alert-success { background: rgba(0,229,160,0.08); border-color: rgba(0,229,160,0.2); color: var(--accent-1); }
.alert-warning { background: rgba(255,176,32,0.08); border-color: rgba(255,176,32,0.2); color: var(--warning); }

/* ===== VIDEO GRID ===== */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.video-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.video-card:hover { border-color: rgba(0,229,160,0.15); transform: translateY(-2px); }
.video-thumb {
  width: 100%; aspect-ratio: 16/9; background: var(--bg-secondary);
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem; position: relative;
}
.video-thumb .play-btn {
  width: 56px; height: 56px; background: var(--accent-gradient);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--bg-primary); box-shadow: 0 4px 20px rgba(0,229,160,0.3);
}
.video-info { padding: 16px; }
.video-info h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.video-info p { font-size: 0.75rem; color: var(--text-muted); }
.video-reward {
  display: inline-block; background: var(--accent-glow); color: var(--accent-1);
  font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; margin-top: 8px;
}

/* ===== PAYMENT PROOFS ===== */
.proof-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.proof-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius); padding: 20px; display: flex; align-items: center; gap: 16px;
}
.proof-avatar {
  width: 44px; height: 44px; background: var(--accent-glow);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--accent-1); font-size: 1rem; flex-shrink: 0;
}
.proof-details { flex: 1; }
.proof-details h4 { font-size: 0.9rem; font-weight: 600; }
.proof-details p { font-size: 0.75rem; color: var(--text-muted); }
.proof-amount { font-family: var(--font-mono); font-weight: 700; font-size: 1.1rem; color: var(--accent-1); }

/* ===== NEWS ===== */
.news-list { display: flex; flex-direction: column; gap: 20px; }
.news-item {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 28px; transition: var(--transition);
}
.news-item:hover { border-color: rgba(0,229,160,0.12); }
.news-date { font-size: 0.75rem; font-family: var(--font-mono); color: var(--accent-1); margin-bottom: 8px; }
.news-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.news-item p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(0,229,160,0.08), transparent),
              radial-gradient(ellipse 60% 50% at 80% 60%, rgba(0,184,212,0.06), transparent);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 80px 24px; position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,229,160,0.08); border: 1px solid rgba(0,229,160,0.2);
  border-radius: 50px; padding: 6px 18px; font-size: 0.8rem; font-weight: 600;
  color: var(--accent-1); margin-bottom: 32px; animation: fadeInUp 0.6s ease;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--accent-1); border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
.hero h1 { font-size: clamp(2.5rem,6vw,4.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -2px; margin-bottom: 24px; animation: fadeInUp 0.6s ease 0.1s both; }
.hero h1 .gradient-text { background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.15rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto 40px; animation: fadeInUp 0.6s ease 0.2s both; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.3s both; }
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

/* Info cards */
.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 32px 28px; transition: var(--transition); }
.info-card:hover { border-color: rgba(0,229,160,0.15); }
.info-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.info-card ul { display: flex; flex-direction: column; gap: 10px; }
.info-card li { font-size: 0.9rem; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; }
.info-card li::before { content: '✓'; color: var(--accent-1); font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border-color); margin-top: auto; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 60px 24px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); max-width: 280px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 20px; font-family: var(--font-mono); }
.footer-col a { display: block; font-size: 0.9rem; color: var(--text-secondary); padding: 5px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--accent-1); }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-color); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--text-muted); transition: var(--transition);
}
.social-links a:hover { color: var(--accent-1); border-color: rgba(0,229,160,0.2); background: var(--accent-glow); }

/* ===== ADVERTISE PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 32px; text-align: center; transition: var(--transition);
}
.pricing-card:hover { border-color: rgba(0,229,160,0.15); }
.pricing-card.featured { border-color: rgba(0,229,160,0.3); box-shadow: var(--shadow-glow); }
.pricing-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.pricing-price { font-family: var(--font-mono); font-size: 2rem; font-weight: 700; color: var(--accent-1); margin: 16px 0; }
.pricing-price span { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }
.pricing-features { margin-bottom: 24px; }
.pricing-features li { padding: 8px 0; font-size: 0.85rem; color: var(--text-secondary); border-bottom: 1px solid var(--border-color); }
.pricing-features li:last-child { border-bottom: none; }

/* ===== RESPONSIVE ===== */
/* =============================================================
   RESPONSIVE AD SYSTEM
   Side banners pinned to bottom of viewport edges (like adzseven.com)
   
   TO CHANGE SIDE BANNER SIZE:
   Edit these 4 values below — width and height in .side-ad 
   and .side-ad .ad-inner. They must match each other.
   Common sizes: 160×600, 160×300, 200×400, 120×240
   ============================================================= */

/* --- Side Banners: pinned to left/right bottom edges --- */
.side-ad {
  position: fixed;
  bottom: 20px;
  top: auto;
  z-index: 50;
  display: none;              /* HIDDEN by default — shown only on ≥1340px */
}
.side-ad-left  { left: 0; }
.side-ad-right { right: 0; }

.side-ad .ad-inner {
  overflow: hidden;
  position: relative;
}
.side-ad .ad-inner a { display: block; width: 100%; height: 100%; }
.side-ad .ad-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Close button on side ads */
.side-ad .ad-close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  background: rgba(200, 0, 0, 0.85);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  font-family: var(--font-display);
  line-height: 1;
}
.side-ad .ad-close:hover { background: rgba(220, 0, 0, 1); }

/* Ad placeholder */
.ad-placeholder {
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(255,255,255,0.08);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-align: center;
  padding: 12px;
  line-height: 1.5;
  gap: 4px;
}
.ad-placeholder .ad-size {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.ad-placeholder .ad-hint {
  color: var(--accent-1);
  font-size: 0.6rem;
  margin-top: 4px;
}

/* --- Responsive Top Banner --- */
.responsive-top-ad {
  display: none;
  justify-content: center;
  padding: 12px 16px 0;
  margin-top: 72px;
}
.responsive-top-ad .ad-inner {
  overflow: hidden;
  border-radius: 8px;
}
.responsive-top-ad .ad-inner a { display: block; }
.responsive-top-ad .ad-inner img { width: 100%; height: auto; display: block; }

/* --- Sticky Mobile Bottom Banner --- */
.mobile-bottom-ad {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  justify-content: center;
  padding: 8px;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
}
.mobile-bottom-ad .ad-inner {
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  width: auto;
}
.mobile-bottom-ad .ad-inner a { display: block; width: 100%; height: 100%; }
.mobile-bottom-ad .ad-inner img { width: 100%; height: 100%; object-fit: cover; }
.mobile-bottom-ad .ad-close {
  position: absolute;
  top: -8px;
  right: 16px;
  width: 24px;
  height: 24px;
  background: rgba(200, 0, 0, 0.85);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-family: var(--font-display);
}
.mobile-bottom-ad .ad-close:hover { background: rgba(220, 0, 0, 1); }

/* =============================================================
   BREAKPOINTS
   ≥1340px  — side banners visible
   <1340px  — side banners hidden, top banner shown instead
   <768px   — mobile bottom banner added
   ============================================================= */

/* DESKTOP ≥1340px: side banners visible, everything else hidden */
@media (min-width: 1340px) {
  .side-ad { display: block; }
  .responsive-top-ad { display: none !important; }
  .mobile-bottom-ad { display: none !important; }
}

/* LAPTOP/TABLET 768–1339px: no sides, top banner */
@media (min-width: 768px) and (max-width: 1339px) {
  .side-ad,
  .side-ad-left,
  .side-ad-right,
  #sideAdLeft,
  #sideAdRight {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    visibility: hidden !important;
  }
  .mobile-bottom-ad { display: none !important; }
  .responsive-top-ad {
    display: flex;
  }
  .responsive-top-ad .ad-inner {
    max-width: 100%;
    min-height: 50px;
  }
  .responsive-top-ad .ad-placeholder { min-height: 50px; }
}

/* MOBILE <768px: no sides, top mini + sticky bottom */
@media (max-width: 767px) {
  .side-ad,
  .side-ad-left,
  .side-ad-right,
  #sideAdLeft,
  #sideAdRight {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .responsive-top-ad {
    display: flex;
  }
  .responsive-top-ad .ad-inner {
    max-width: 100%;
    min-height: 50px;
  }
  .responsive-top-ad .ad-placeholder { min-height: 50px; }
  .mobile-bottom-ad {
    display: flex;
  }
  body { padding-bottom: 124px; }
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .content-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-auth { display: none; }
  .hamburger { display: block; }
  .nav-links.active { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--bg-secondary); border-bottom: 1px solid var(--border-color); padding: 16px; }
  .nav-auth.active { display: flex; padding: 0 16px 16px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: rgba(255,255,255,0.02); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -1px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .forum-thread { grid-template-columns: 1fr; gap: 8px; }
}
/* =============================================================
   MOBILE FIX — paste this at the END of your css/style.css
   Fixes: text centering, overflow, hero layout on phones
   ============================================================= */

/* Force no horizontal overflow on entire page */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Hero section mobile fix */
@media (max-width: 768px) {

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 40px;
  }

  .hero-inner {
    padding: 40px 16px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
    letter-spacing: -0.5px;
    word-break: break-word;
  }

  .hero p {
    font-size: 0.95rem;
    padding: 0 8px;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 14px;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Fix banner slots overflowing on mobile */
  .banner-slot,
  .banner-slot.leaderboard {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 60px;
  }

  .banner-zone {
    padding: 0 12px;
  }

  /* Stats grid */
  .stats-bar {
    padding: 0 12px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-item {
    padding: 20px 12px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  /* Container fix */
  .container,
  .container-sm {
    padding: 0 14px;
  }

  /* Content layout: stack vertically */
  .content-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Info cards stack */
  .info-cards {
    grid-template-columns: 1fr;
  }

  /* Sidebar full width on mobile */
  .sidebar {
    width: 100%;
  }

  .sidebar .banner-slot.rectangle {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  /* Navbar */
  .nav-inner {
    padding: 0 14px;
    height: 64px;
  }

  .logo {
    font-size: 1.3rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-inner {
    padding: 40px 14px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Page headers */
  .page-header {
    padding: 100px 16px 30px;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  /* Section headers */
  .section-header h2 {
    font-size: 1.5rem;
  }

  /* Cards */
  .card {
    padding: 20px 16px;
  }

  /* Tables scroll */
  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Mobile bottom ad: proper centering */
  .mobile-bottom-ad {
    justify-content: center;
    align-items: center;
  }

  .mobile-bottom-ad .ad-inner {
    max-width: 320px;
    width: 95%;
  }

  /* Responsive top ad */
  .responsive-top-ad {
    padding: 8px 12px 0;
  }

  /* Pricing grid */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* Forum threads */
  .forum-thread {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  /* Video grid */
  .video-grid {
    grid-template-columns: 1fr;
  }

  /* Proof grid */
  .proof-grid {
    grid-template-columns: 1fr;
  }

  /* Accordion */
  .accordion-btn {
    font-size: 0.9rem;
    padding: 16px 0;
  }

  /* Tabs wrap */
  .tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* Extra small phones (< 380px) */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .stat-number {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }
}