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

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

:root {
  --bg-primary: #080b10;
  --bg-secondary: #0d1117;
  --bg-card: #111827;
  --bg-card-hover: #161f2e;
  --accent: #00d4ff;
  --accent2: #ff3c5c;
  --accent3: #7c3aed;
  --text-primary: #e8eaf0;
  --text-secondary: #8892a4;
  --text-muted: #4a5568;
  --border: #1e2d3d;
  --border-accent: rgba(0, 212, 255, 0.25);
  --glow: 0 0 20px rgba(0, 212, 255, 0.15);
}

html { scroll-behavior: smooth; }
body { background: var(--bg-primary); color: var(--text-primary); font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.6; min-height: 100vh; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* TOPBAR */
.topbar { background: var(--bg-secondary); border-bottom: 1px solid var(--border); padding: 6px 0; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.topbar-date { font-size: 11px; color: var(--text-muted); font-family: 'Rajdhani', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; }
.topbar-links { display: flex; gap: 20px; }
.topbar-links a { font-size: 11px; color: var(--text-muted); transition: color 0.2s; letter-spacing: 0.05em; }
.topbar-links a:hover { color: var(--accent); }

/* HEADER */
header { background: var(--bg-secondary); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-family: 'Orbitron', monospace; font-size: 26px; font-weight: 900; letter-spacing: 0.05em; }
.logo span { color: var(--accent); text-shadow: 0 0 20px rgba(0,212,255,0.5); }
.logo-sub { font-family: 'Rajdhani', sans-serif; font-size: 10px; letter-spacing: 0.2em; color: var(--text-muted); text-transform: uppercase; margin-top: -4px; }

.search-bar { display: flex; align-items: center; gap: 8px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 6px 12px; width: 260px; transition: border-color 0.2s; }
.search-bar:focus-within { border-color: var(--accent); box-shadow: var(--glow); }
.search-bar input { background: none; border: none; outline: none; color: var(--text-primary); font-size: 13px; width: 100%; font-family: 'Inter', sans-serif; }
.search-bar input::placeholder { color: var(--text-muted); }
.search-bar svg { color: var(--text-muted); flex-shrink: 0; }

/* NAV */
nav { background: var(--bg-primary); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 0; overflow-x: auto; }
.nav-inner::-webkit-scrollbar { display: none; }
nav a { font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); padding: 12px 16px; border-bottom: 2px solid transparent; transition: all 0.2s; white-space: nowrap; }
nav a:hover, nav a.active { color: var(--accent); border-bottom-color: var(--accent); }

/* BREAKING */
.breaking { background: linear-gradient(90deg, var(--accent2), #c0392b); padding: 8px 0; }
.breaking-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 16px; }
.breaking-label { font-family: 'Orbitron', monospace; font-size: 9px; font-weight: 700; letter-spacing: 0.15em; background: rgba(0,0,0,0.3); padding: 3px 10px; border-radius: 3px; white-space: nowrap; }
.breaking-text { font-size: 13px; font-family: 'Rajdhani', sans-serif; font-weight: 500; }
.breaking-text a:hover { text-decoration: underline; }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 2rem 0; }

/* HERO GRID */
.hero-grid { display: grid; grid-template-columns: 1fr 340px; gap: 1.5rem; margin: 1.5rem 0; }
.hero-main { position: relative; border-radius: 10px; overflow: hidden; background: var(--bg-card); border: 1px solid var(--border); min-height: 400px; display: flex; flex-direction: column; justify-content: flex-end; }
.hero-image { position: absolute; inset: 0; background: linear-gradient(135deg, #0a1628 0%, #1a0a2e 50%, #0a1628 100%); display: flex; align-items: center; justify-content: center; }
.hero-image-icon { font-size: 120px; opacity: 0.06; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,11,16,0.97) 0%, rgba(8,11,16,0.4) 60%, transparent 100%); }
.hero-content { position: relative; z-index: 1; padding: 2rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--accent); color: #000; font-family: 'Orbitron', monospace; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; }
.hero-main h2 { font-family: 'Rajdhani', sans-serif; font-size: 28px; font-weight: 700; line-height: 1.2; margin-bottom: 10px; }
.hero-main p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.hero-meta { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 12px; }
.hero-meta span { display: flex; align-items: center; gap: 4px; }

/* SIDEBAR STACK */
.hero-side { display: flex; flex-direction: column; gap: 12px; }
.side-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 14px; transition: border-color 0.2s, background 0.2s; }
.side-card:hover { border-color: var(--border-accent); background: var(--bg-card-hover); }
.side-card .badge { font-family: 'Orbitron', monospace; font-size: 8px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); text-transform: uppercase; margin-bottom: 6px; display: block; }
.side-card h4 { font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 600; line-height: 1.3; margin-bottom: 6px; }
.side-card .meta { font-size: 11px; color: var(--text-muted); }

/* AD PLACEHOLDER */
.ad-slot { background: var(--bg-card); border: 1px dashed var(--border); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-muted); font-size: 12px; gap: 6px; }
.ad-slot svg { opacity: 0.4; }
.ad-728 { height: 90px; margin: 1.5rem 0; }
.ad-300 { height: 250px; }

/* CATEGORY PILLS */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin: 1.5rem 0; }
.cat-pill { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 16px 10px; text-align: center; transition: all 0.2s; cursor: pointer; }
.cat-pill:hover { border-color: var(--accent); background: var(--bg-card-hover); transform: translateY(-2px); }
.cat-pill:hover .cat-icon { color: var(--accent); }
.cat-icon { font-size: 22px; display: block; margin-bottom: 6px; color: var(--text-muted); transition: color 0.2s; }
.cat-label { font-family: 'Rajdhani', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); }

/* CONTENT GRID */
.content-grid { display: grid; grid-template-columns: 1fr 300px; gap: 2rem; }

/* NEWS SECTION */
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.section-title { font-family: 'Orbitron', monospace; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.section-title::before { content: ''; display: block; width: 3px; height: 14px; background: var(--accent); border-radius: 2px; }
.section-more { font-size: 12px; color: var(--text-muted); transition: color 0.2s; }
.section-more:hover { color: var(--accent); }

/* NEWS LIST */
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); align-items: flex-start; transition: background 0.15s; }
.news-item:last-child { border-bottom: none; }
.news-thumb { width: 80px; height: 60px; background: var(--bg-card); border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); font-size: 24px; }
.news-body .badge { font-family: 'Orbitron', monospace; font-size: 8px; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; display: block; }
.news-body h4 { font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 600; line-height: 1.3; margin-bottom: 6px; transition: color 0.2s; }
.news-item:hover .news-body h4 { color: var(--accent); }
.news-body .meta { font-size: 11px; color: var(--text-muted); }

/* REVIEW CARDS */
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 14px; margin-bottom: 12px; transition: border-color 0.2s; }
.review-card:hover { border-color: var(--border-accent); }
.review-card .badge { font-family: 'Orbitron', monospace; font-size: 8px; color: var(--accent2); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; display: block; }
.review-card h4 { font-family: 'Rajdhani', sans-serif; font-size: 14px; font-weight: 600; line-height: 1.3; margin-bottom: 8px; }
.stars { display: flex; gap: 2px; margin-bottom: 4px; }
.star { color: #f59e0b; font-size: 13px; }
.star.empty { color: var(--border); }
.review-meta { font-size: 11px; color: var(--text-muted); }
.score { font-family: 'Orbitron', monospace; font-size: 11px; color: var(--accent); margin-left: 6px; }

/* POLICY BOX */
.policy-box { background: rgba(0, 212, 255, 0.04); border: 1px solid var(--border-accent); border-radius: 8px; padding: 14px 18px; margin: 1.5rem 0; }
.policy-box h3 { font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 6px; color: var(--accent); display: flex; align-items: center; gap: 6px; }
.policy-box p { font-size: 12px; color: var(--text-secondary); line-height: 1.7; }
.policy-box a { color: var(--accent); }

/* FOOTER */
footer { background: var(--bg-secondary); border-top: 1px solid var(--border); margin-top: 3rem; }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 2.5rem 20px 1.5rem; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand .logo { font-size: 20px; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 220px; }
.footer-col h5 { font-family: 'Orbitron', monospace; font-size: 9px; font-weight: 700; letter-spacing: 0.15em; color: var(--accent); text-transform: uppercase; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom { border-top: 1px solid var(--border); padding: 14px 20px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 11px; color: var(--text-muted); }

/* PAGE HERO */
.page-hero { background: var(--bg-card); border-bottom: 1px solid var(--border); padding: 2.5rem 0; margin-bottom: 2rem; }
.page-hero h1 { font-family: 'Orbitron', monospace; font-size: 24px; font-weight: 900; color: var(--accent); margin-bottom: 8px; }
.page-hero p { color: var(--text-secondary); font-size: 14px; }

/* CONTACT FORM */
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-family: 'Rajdhani', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px; padding: 10px 14px; color: var(--text-primary); font-family: 'Inter', sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: var(--glow); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { background: var(--accent); color: #000; font-family: 'Orbitron', monospace; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; padding: 12px 28px; border: none; border-radius: 6px; cursor: pointer; transition: all 0.2s; }
.btn-submit:hover { background: #00b8d9; transform: translateY(-1px); }

/* PROSE for static pages */
.prose { max-width: 800px; }
.prose h2 { font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700; color: var(--accent); margin: 2rem 0 0.75rem; }
.prose p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.8; }
.prose ul { color: var(--text-secondary); padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: 0.5rem; line-height: 1.7; }
.prose a { color: var(--accent); }

/* UTILITY */
.divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.tag { display: inline-block; background: rgba(0,212,255,0.1); color: var(--accent); font-family: 'Orbitron', monospace; font-size: 8px; letter-spacing: 0.1em; padding: 3px 8px; border-radius: 3px; text-transform: uppercase; }
.tag-red { background: rgba(255,60,92,0.1); color: var(--accent2); }
.tag-purple { background: rgba(124,58,237,0.1); color: #a78bfa; }

@media (max-width: 768px) {
  .hero-grid, .content-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
