@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&family=Inter:wght@300;400;600;700&display=swap');
:root {
  --bg: #0a0b10;
  --bg2: #0f1020;
  --text: #e4f1ff;
  --muted: #9fb3c8;
  --neon1: #00f5ff;
  --neon2: #ff00ea;
  --accent: #6cff7d;
  --danger: #ff4d6d;
  --warning: #ffd166;
  --shadow: 0 10px 30px rgba(0,0,0,0.45);
  --radius: 16px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: radial-gradient(1200px 800px at 20% 10%, #121435, var(--bg)) fixed; color: var(--text); font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; text-align: center; }
img { max-width: 100%; height: auto; border-radius: 12px; }
a { color: var(--neon1); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1200px, 92vw); margin: 0 auto; padding: 24px 0; }
.header { position: sticky; top: 0; z-index: 99; background: rgba(10,11,16,0.6); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 12px 0; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: Orbitron, sans-serif; font-weight: 800; letter-spacing: 1px; color: var(--text); text-decoration: none; }
.brand img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 12px rgba(0,245,255,0.45); }
.nav a.link { padding: 10px 14px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.08); color: var(--text); background: linear-gradient(135deg, rgba(0,245,255,0.06), rgba(255,0,234,0.06)); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.nav a.link:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.2); box-shadow: 0 0 18px rgba(0,245,255,0.28), inset 0 0 15px rgba(255,0,234,0.12); }
.btn { display: inline-block; padding: 12px 20px; border-radius: 40px; border: 0; background: linear-gradient(90deg, var(--neon1), var(--neon2)); color: #0a0b10; font-weight: 700; letter-spacing: .3px; box-shadow: 0 8px 24px rgba(255,0,234,0.25), 0 8px 24px rgba(0,245,255,0.25); transition: transform .12s ease; }
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn.secondary { background: linear-gradient(90deg, #13ffb0, #6cff7d); }
.btn.ghost { background: transparent; border: 1px solid rgba(255,255,255,0.14); color: var(--text); }
.hero { padding: 56px 0 24px; }
.hero h1 { margin: 0 0 8px; font-family: Orbitron, sans-serif; font-size: clamp(28px, 5vw, 52px); background: linear-gradient(90deg, var(--neon1), var(--neon2)); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 18px rgba(0,245,255,0.25), 0 0 18px rgba(255,0,234,0.25); }
.hero p { margin: 8px 0 18px; color: var(--muted); font-size: clamp(15px, 2.3vw, 18px); }
.grid { display: grid; gap: 22px; grid-template-columns: repeat(12, 1fr); }
.card { grid-column: span 12; padding: 22px; background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); box-shadow: var(--shadow); }
.card h3 { margin: 4px 0 10px; font-family: Orbitron, sans-serif; font-size: 22px; color: var(--text); }
.card p { color: var(--muted); }
.card.neon { border-image: linear-gradient(90deg, var(--neon1), var(--neon2)) 1; box-shadow: 0 0 24px rgba(0,245,255,0.18), inset 0 0 24px rgba(255,0,234,0.08); }
.card img.cover { width: 100%; height: 260px; object-fit: cover; border-radius: 12px; margin-bottom: 12px; }
@media (min-width: 720px) {
  .col-6 { grid-column: span 6; }
  .col-4 { grid-column: span 4; }
  .col-8 { grid-column: span 8; }
}
.section-title { font-family: Orbitron, sans-serif; font-size: 26px; margin: 24px 0 12px; color: var(--text); }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 24px; background: rgba(0,245,255,0.1); color: var(--neon1); border: 1px solid rgba(0,245,255,0.3); }
.footer { margin-top: 40px; padding: 26px 0; border-top: 1px solid rgba(255,255,255,0.08); background: rgba(10,11,16,0.35); backdrop-filter: blur(8px); }
.footer .links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin: 8px 0 16px; }
.footer .links a { padding: 8px 12px; border-radius: 18px; background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid rgba(255,255,255,0.08); }
.footer .social { display: flex; justify-content: center; gap: 16px; margin: 10px 0 0; }
.footer .social a { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }
.footer small { color: var(--muted); display: block; margin-top: 10px; }
.cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999; display: none; background: rgba(10,11,16,0.95); color: var(--text); padding: 16px; border-top: 1px solid rgba(255,255,255,0.12); }
.cookie-content { max-width: 1100px; margin: 0 auto; display: grid; gap: 12px; }
.cookie-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 16px; }
.notice { padding: 12px 16px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: var(--muted); }
.form { width: min(720px, 94vw); margin: 0 auto; text-align: center; }
.input, .select, .textarea { width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.04); color: var(--text); outline: none; }
.input:focus, .textarea:focus, .select:focus { border-color: var(--neon1); box-shadow: 0 0 0 3px rgba(0,245,255,0.18); }
.row { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .row.two { grid-template-columns: repeat(2, 1fr); } }
.modal { position: fixed; inset: 0; display: none; background: rgba(0,0,0,0.6); align-items: center; justify-content: center; z-index: 99999; }
.modal .modal-body { width: min(520px, 92vw); padding: 22px; background: rgba(15,16,32,0.95); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; box-shadow: var(--shadow); }
.table { width: 100%; border-collapse: separate; border-spacing: 0; }
.table th, .table td { padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.kpi { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 12px; background: rgba(0,245,255,0.08); border: 1px solid rgba(0,245,255,0.25); color: var(--neon1); }
.logo-title { display: flex; align-items: center; justify-content: center; gap: 12px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.tag { display: inline-block; padding: 6px 12px; border-radius: 999px; background: rgba(255,0,234,0.14); color: #fff; border: 1px solid rgba(255,0,234,0.3); }
.list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.card.post { text-align: center; }
.card.post .meta { color: var(--muted); font-size: 14px; margin-top: 6px; }
.hero img.hero-img { width: 100%; max-width: 1080px; height: auto; border-radius: 16px; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 0 40px rgba(0,245,255,0.14), 0 0 40px rgba(255,0,234,0.12); }
.icon { width: 18px; height: 18px; }
.icons-row { display: flex; gap: 10px; justify-content: center; margin-top: 10px; }
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; }
