/* ================================================================
   HGMODS — STYLE.CSS | v3.0 | 2026
   ================================================================ */

:root {
  --red: #ff1e27; 
  --red2: #ff003c;
  --nsfw: #b800ff; /* Geiko +18 Theme */
  --ember: #ff6600;
  --gold: #ffaa00;
  --deep: #030305;
  --white: #f5f5f5;
  --dim: #888899;
  
  --border: rgba(255, 30, 39, 0.15);
  --borderH: rgba(255, 30, 39, 0.5);
  --glass: rgba(12, 12, 16, 0.5);
  
  --fhd: 'Orbitron', monospace;
  --fbody: 'Rajdhani', sans-serif;
  --fmono: 'Share Tech Mono', monospace;
  --t: 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 { background: var(--deep); color: var(--white); font-family: var(--fbody); overflow-x: hidden; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--red); }

#fire-canvas { position: fixed; bottom: 0; left: 0; width: 100%; height: 45vh; pointer-events: none; z-index: 0; opacity: 0.3; mix-blend-mode: screen; }
.grid-bg, .scanlines { position: fixed; inset: 0; z-index: 1; pointer-events: none; }
.grid-bg { background-image: linear-gradient(rgba(255,30,39,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,30,39,0.03) 1px, transparent 1px); background-size: 50px 50px; }
.scanlines { background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.15) 2px, rgba(0,0,0,0.15) 4px); }

/* NAV */
nav { position: fixed; top: 0; width: 100%; height: 65px; background: rgba(3,3,5,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; z-index: 1000; }
.nav-logo { font-family: var(--fhd); font-weight: 900; font-size: 1.2rem; letter-spacing: 4px; display: flex; align-items: center; gap: 8px; }
.nav-logo em { color: var(--red); font-style: normal; text-shadow: 0 0 15px var(--red); }
.vbadge { width: 16px; height: 16px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.5rem; font-weight: 900; color: #fff; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { font-family: var(--fbody); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--dim); transition: var(--t); }
.nav-links a:hover { color: var(--white); text-shadow: 0 0 10px rgba(255,255,255,0.5); }
.nav-cta { font-family: var(--fhd); font-size: 0.65rem; font-weight: 900; letter-spacing: 2px; color: #fff; background: var(--red); padding: 8px 16px; clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%); transition: var(--t); text-transform: uppercase; }
.nav-cta:hover { background: var(--white); color: var(--red); box-shadow: 0 0 20px var(--red); }
.lang-sw { display: flex; gap: 5px; }
.lang-btn { font-family: var(--fmono); font-size: 0.6rem; color: var(--dim); border: 1px solid rgba(255,255,255,0.1); padding: 3px 8px; transition: var(--t); }
.lang-btn.active, .lang-btn:hover { color: var(--red); border-color: var(--red); }

/* LAYOUT & UTILS */
.sw { position: relative; z-index: 10; padding: 5rem 2rem; }
.sw.alt { background: rgba(5, 3, 3, 0.6); }
.sw.dkbg { background: rgba(2, 2, 4, 0.8); }
.inner { max-width: 1200px; margin: 0 auto; }
.divider { position: relative; z-index: 10; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--borderH), transparent); }

/* TYPOGRAPHY */
.slbl { font-family: var(--fmono); font-size: 0.65rem; letter-spacing: 4px; color: var(--red); text-transform: uppercase; margin-bottom: 0.5rem; }
.sttl { font-family: var(--fhd); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; margin-bottom: 1rem; }
.sttl em { color: var(--red); font-style: normal; text-shadow: 0 0 20px rgba(255,30,39,0.4); }
.sline { width: 60px; height: 3px; background: var(--red); margin-bottom: 3rem; box-shadow: 0 0 10px var(--red); }

/* BUTTONS */
.btn-p { display: inline-block; font-family: var(--fhd); font-size: 0.7rem; font-weight: 900; letter-spacing: 3px; color: #fff; background: var(--red); padding: 14px 30px; text-transform: uppercase; clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%); transition: var(--t); }
.btn-p:hover { box-shadow: 0 0 25px rgba(255,30,39,0.6); transform: translateY(-2px); }
.btn-o { display: inline-block; font-family: var(--fhd); font-size: 0.7rem; font-weight: 900; letter-spacing: 3px; color: var(--red); border: 1px solid var(--red); padding: 14px 30px; text-transform: uppercase; clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%); transition: var(--t); }
.btn-o:hover { background: rgba(255,30,39,0.1); box-shadow: 0 0 20px rgba(255,30,39,0.3); }

/* FADE IN */
.fi { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fi.vis { opacity: 1; transform: translateY(0); }

/* GLASS CARDS (Tech Style) */
.vc, .video-card, .zdh-card, .lcat {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.vc:hover, .video-card:hover, .zdh-card:hover, .lcat:hover {
  border-color: var(--borderH);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255,30,39,0.15), inset 0 0 20px rgba(255,30,39,0.05);
}

/* ───────── HERO ───────── */
#hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; z-index: 10; padding: 2rem; }
.hero-bg { position: absolute; font-family: var(--fhd); font-size: clamp(5rem, 18vw, 16rem); font-weight: 900; color: rgba(255,30,39,0.03); letter-spacing: 10px; pointer-events: none; }
#hero-badge { font-family: var(--fmono); font-size: 0.7rem; letter-spacing: 4px; color: var(--red); border: 1px solid var(--borderH); padding: 6px 20px; margin-bottom: 1.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 20px rgba(255,30,39,0.4); border-color: var(--red); } }
.hero-title { font-family: var(--fhd); font-weight: 900; font-size: clamp(3rem, 12vw, 8rem); line-height: 1; margin-bottom: 1rem; }
.hero-title .fl { color: var(--red); text-shadow: 0 0 30px rgba(255,30,39,0.6); animation: flicker 4s infinite; }
@keyframes flicker { 0%,100%{opacity:1} 92%{opacity:1} 93%{opacity:0.4} 94%{opacity:1} 96%{opacity:0.8} 97%{opacity:1} }
#hero-sub { font-family: var(--fmono); font-size: 0.9rem; color: var(--dim); letter-spacing: 2px; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 3rem; margin-bottom: 3rem; flex-wrap: wrap; justify-content: center; }
.stat-num { font-family: var(--fhd); font-size: 2.2rem; font-weight: 900; color: var(--red); text-shadow: 0 0 15px rgba(255,30,39,0.4); display: block; }
.stat-lbl { font-size: 0.65rem; letter-spacing: 3px; color: var(--dim); text-transform: uppercase; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ───────── GEIKO GAMES +18 ───────── */
.nsfw-bg { background: radial-gradient(circle at center, rgba(184, 0, 255, 0.08) 0%, var(--deep) 70%); }
.geiko-header { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.nsfw-badge { font-family: var(--fhd); font-size: 0.65rem; font-weight: 900; letter-spacing: 3px; background: var(--red2); color: #fff; padding: 4px 12px; box-shadow: 0 0 15px rgba(255,0,60,0.6); animation: warn 1.5s infinite; }
@keyframes warn { 50% { opacity: 0.5; } }
.geiko-container { display: flex; gap: 2rem; background: rgba(15, 10, 20, 0.7); border: 1px solid rgba(184, 0, 255, 0.4); padding: 2rem; clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px); position: relative; }
.geiko-container::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(184,0,255,0.05) 2px, rgba(184,0,255,0.05) 4px); pointer-events: none; }
.geiko-visual { width: 220px; background: #05000a; border: 1px dashed rgba(184, 0, 255, 0.6); display: flex; align-items: center; justify-content: center; text-align: center; flex-shrink: 0; }
.geiko-visual span { font-family: var(--fhd); color: var(--nsfw); font-size: 1.4rem; font-weight: 900; letter-spacing: 4px; text-shadow: 0 0 20px var(--nsfw); z-index: 2; }
.geiko-content { flex: 1; z-index: 2; display: flex; flex-direction: column; justify-content: center; }
.geiko-sub { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.geiko-content p { color: rgba(255,255,255,0.7); margin-bottom: 1rem; font-size: 0.95rem; }
.btn-nsfw { margin-top: 1.5rem; font-family: var(--fhd); font-size: 0.75rem; font-weight: 900; letter-spacing: 3px; color: #fff; border: 1px solid var(--nsfw); padding: 14px 28px; text-transform: uppercase; align-self: flex-start; transition: var(--t); }
.btn-nsfw:hover { background: var(--nsfw); box-shadow: 0 0 30px rgba(184,0,255,0.6); text-shadow: 0 0 8px #fff; }

/* ───────── OUTRAS SEÇÕES (Resumo VIP/Videos) ───────── */
.vip-grid, .videos-grid, .zdh-grid, .links-grid { display: grid; gap: 1.5rem; }
.vip-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.videos-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.zdh-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.links-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* Tags, Pills, Lists... (Aproveitando estrutura base mas com design premium) */
.pill { font-family: var(--fmono); font-size: 0.55rem; padding: 4px 10px; text-transform: uppercase; letter-spacing: 2px; }
.pvip { background: rgba(255,170,0,0.15); color: var(--gold); border: 1px solid rgba(255,170,0,0.3); }
.pon { background: rgba(255,30,39,0.15); color: var(--red); border: 1px solid rgba(255,30,39,0.3); }

/* VIDs */
.vid-box { border: 1px solid var(--border); margin-bottom: 3rem; }
.vid-bar { padding: 1rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; background: rgba(0,0,0,0.5); }
.vid-frame { aspect-ratio: 16/9; width: 100%; }
.vid-frame iframe { width: 100%; height: 100%; border: none; }

/* FOOTER */
footer { text-align: center; padding: 4rem 2rem; border-top: 1px solid var(--border); background: #000; position: relative; z-index: 10; }
.f-logo { font-family: var(--fhd); font-size: 2rem; font-weight: 900; letter-spacing: 6px; margin-bottom: 1rem; }
.f-logo em { color: var(--red); font-style: normal; }
.f-tag { font-family: var(--fmono); color: var(--dim); margin-bottom: 2rem; letter-spacing: 2px; }

@media(max-width: 860px) {
  .nav-toggle { display: flex; flex-direction: column; gap: 6px; z-index: 1001; }
  .nav-toggle span { width: 25px; height: 2px; background: #fff; transition: var(--t); }
  .nav-right { position: fixed; top: 65px; left: 0; right: 0; background: rgba(0,0,0,0.95); flex-direction: column; padding: 2rem; transform: translateY(-150%); transition: var(--t); }
  .nav-right.open { transform: translateY(0); }
  .nav-links { flex-direction: column; text-align: center; }
  .geiko-container { flex-direction: column; }
  .geiko-visual { width: 100%; height: 150px; }
}
