/* ============================================
   A1BlakeSauce — Main Stylesheet
   ============================================ */

/* --- Variables --- */
:root {
  --bg: #080a0f;
  --bg2: #0d1018;
  --bg3: #111520;
  --accent: #00f0ff;
  --accent2: #ff3c6e;
  --accent3: #a259ff;
  --text: #e8eaf0;
  --muted: #5a607a;
  --border: rgba(0,240,255,0.12);
  --glow: 0 0 20px rgba(0,240,255,0.3);
  --glow2: 0 0 20px rgba(255,60,110,0.3);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* --- Overlays --- */
body::before {
  content: '';
  position: fixed; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
  pointer-events: none; z-index: 1000;
}
body::after {
  content: '';
  position: fixed; inset: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 999;
}

/* --- Cursor --- */
.cursor {
  width: 10px; height: 10px;
  background: var(--accent); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  transition: transform 0.1s ease; mix-blend-mode: screen;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(0,240,255,0.5); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transition: all 0.15s ease; mix-blend-mode: screen;
}

/* --- Animations --- */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

/* --- Scroll Reveal --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Divider --- */
.section-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* --- Nav --- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: linear-gradient(180deg, rgba(8,10,15,0.95) 0%, transparent 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,240,255,0.05);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px;
  letter-spacing: 3px; color: var(--accent); text-shadow: var(--glow); text-decoration: none;
}
.nav-logo span { color: var(--accent2); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s, text-shadow 0.2s;
}
.nav-links a:hover { color: var(--accent); text-shadow: var(--glow); }
.nav-live {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 12px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent2); text-decoration: none;
  border: 1px solid var(--accent2); padding: 6px 16px; border-radius: 2px; transition: all 0.2s;
}
.nav-live:hover { background: var(--accent2); color: white; box-shadow: var(--glow2); }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent2); animation: pulse 1.5s infinite;
}

/* --- Buttons --- */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--bg);
  background: var(--accent); border: none; padding: 14px 32px;
  text-decoration: none; border-radius: 2px; transition: all 0.2s;
  box-shadow: 0 0 30px rgba(0,240,255,0.3);
}
.btn-primary:hover { background: white; box-shadow: 0 0 50px rgba(0,240,255,0.6); transform: translateY(-2px); }
.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--text);
  background: transparent; border: 1px solid var(--border); padding: 14px 32px;
  text-decoration: none; border-radius: 2px; transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); box-shadow: var(--glow); }
.btn-twitch {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase; color: white;
  background: #9146FF; padding: 10px 24px; text-decoration: none; border-radius: 2px; transition: all 0.2s;
}
.btn-twitch:hover { background: #a970ff; box-shadow: 0 0 20px rgba(145,70,255,0.5); }
.btn-amazon {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--bg);
  background: #FF9900; padding: 9px 16px; text-decoration: none; border-radius: 2px;
  width: 100%; transition: all 0.2s;
}
.btn-amazon:hover { background: #ffb02e; box-shadow: 0 0 20px rgba(255,153,0,0.4); }

/* --- Section Commons --- */
section { padding: 100px 48px; position: relative; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px; display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; display: block; width: 30px; height: 1px; background: var(--accent); }
.section-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 2px; line-height: 1; margin-bottom: 48px;
}

/* --- Hero --- */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 120px 48px 80px; position: relative; overflow: hidden;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,240,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,240,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow-left { position: absolute; left: -200px; top: 20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(162,89,255,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-glow-right { position: absolute; right: -100px; bottom: 10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,240,255,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(72px, 12vw, 160px);
  line-height: 0.9; letter-spacing: 4px; margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-title .line1 { color: var(--text); display: block; }
.hero-title .line2 {
  color: transparent; -webkit-text-stroke: 2px var(--accent); display: block;
  text-shadow: none; filter: drop-shadow(0 0 30px rgba(0,240,255,0.4));
}
.hero-desc {
  font-size: 16px; font-weight: 300; color: var(--muted); max-width: 480px;
  line-height: 1.7; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards; }
.hero-stats {
  position: absolute; right: 48px; bottom: 80px;
  display: flex; flex-direction: column; gap: 24px;
  opacity: 0; animation: fadeLeft 0.8s ease 1s forwards;
}
.stat { text-align: right; border-right: 2px solid var(--accent); padding-right: 16px; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--accent); line-height: 1; text-shadow: var(--glow); }
.stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* --- Stream --- */
.stream-section { background: var(--bg); }
.stream-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.stream-embed-wrapper {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; position: relative;
}
.stream-embed-wrapper::before {
  content: ''; position: absolute; inset: 0; border-radius: 4px;
  box-shadow: inset 0 0 60px rgba(0,240,255,0.04); z-index: 1; pointer-events: none;
}
.stream-embed-wrapper iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }
.stream-info { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.stream-channel { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: 1px; }
.stream-status { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.stream-sidebar { display: flex; flex-direction: column; gap: 16px; }
.stream-chat-wrapper { background: var(--bg3); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.stream-chat-wrapper iframe { width: 100%; height: 400px; display: block; border: none; }
.stream-cta { background: linear-gradient(135deg, rgba(162,89,255,0.1), rgba(0,240,255,0.1)); border: 1px solid var(--border); border-radius: 4px; padding: 20px; text-align: center; }
.stream-cta p { font-size: 13px; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }

/* --- Clips --- */
.youtube-section { background: var(--bg); }
.youtube-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.youtube-embed { position: relative; padding-top: 56.25%; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; background: var(--bg3); }
.youtube-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.youtube-info { max-width: 520px; }

.clips-section { background: var(--bg2); }
.clips-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.clip-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; transition: all 0.3s; cursor: pointer;
}
.clip-card:hover { border-color: var(--accent); box-shadow: 0 0 30px rgba(0,240,255,0.1); transform: translateY(-4px); }
.clip-thumb { width: 100%; aspect-ratio: 16/9; background: var(--bg); position: relative; overflow: hidden; }
.clip-thumb-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; transition: transform 0.3s; }
.clip-card:hover .clip-thumb-inner { transform: scale(1.08); }
.clip-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.3); opacity: 0; transition: opacity 0.3s; }
.clip-card:hover .clip-play { opacity: 1; }
.clip-play svg { width: 52px; height: 52px; fill: white; filter: drop-shadow(0 0 12px rgba(0,240,255,0.8)); }
.clip-info { padding: 14px 16px; }
.clip-title { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 6px; }
.clip-meta { font-size: 12px; color: var(--muted); letter-spacing: 1px; display: flex; gap: 12px; }
.clip-tag { background: rgba(0,240,255,0.08); color: var(--accent); font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 2px 8px; border-radius: 2px; border: 1px solid rgba(0,240,255,0.2); }

/* --- Gear --- */
.gear-section { background: var(--bg); }
.gear-intro { max-width: 560px; color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 48px; margin-top: -24px; }
.gear-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.gear-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: all 0.3s; position: relative; }
.gear-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent3)); opacity: 0; transition: opacity 0.3s; }
.gear-card:hover { border-color: rgba(0,240,255,0.3); transform: translateY(-4px); }
.gear-card:hover::before { opacity: 1; }
.gear-img { width: 100%; aspect-ratio: 4/3; background: var(--bg2); display: flex; align-items: center; justify-content: center; font-size: 52px; border-bottom: 1px solid var(--border); }
.gear-body { padding: 16px; }
.gear-cat { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.gear-name { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 8px; }
.gear-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.gear-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--text); margin-bottom: 12px; }
.gear-disclaimer { font-size: 11px; color: var(--muted); opacity: 0.6; margin-top: 32px; text-align: center; }

/* --- About --- */
.about-section { background: var(--bg2); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; display: flex; justify-content: center; }
.about-avatar-frame {
  width: min(320px, 100%);
  aspect-ratio: 320 / 380;
  position: relative;
}
.about-avatar-bg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,240,255,0.06), rgba(162,89,255,0.06));
  border: 1px solid var(--border); border-radius: 4px;
  display: flex; align-items: center; justify-content: center; font-size: 120px; position: relative; overflow: hidden;
}
.about-avatar-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,240,255,0.05) 0%, transparent 60%, rgba(162,89,255,0.08) 100%); }
.about-corner { position: absolute; width: 20px; height: 20px; border-color: var(--accent); border-style: solid; }
.about-corner.tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.about-corner.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.about-corner.bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.about-corner.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.about-name-tag {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--bg); border: 1px solid var(--accent); padding: 6px 20px;
  font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 3px;
  color: var(--accent); white-space: nowrap; box-shadow: var(--glow);
}
.about-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; letter-spacing: 2px; line-height: 1; margin-bottom: 24px; }
.about-text h2 span { color: var(--accent); }
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.about-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text); border: 1px solid var(--border); padding: 6px 14px; border-radius: 2px; transition: all 0.2s; }
.about-tag:hover { border-color: var(--accent); color: var(--accent); }
.socials { display: flex; gap: 12px; margin-top: 32px; }
.social-btn { display: flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); text-decoration: none; border: 1px solid var(--border); padding: 8px 16px; border-radius: 2px; transition: all 0.2s; }
.social-btn:hover { color: var(--accent); border-color: var(--accent); }

/* --- Footer --- */
footer {
  background: var(--bg); border-top: 1px solid var(--border); padding: 48px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 3px; color: var(--accent); }
.footer-logo span { color: var(--accent2); }
.footer-copy { font-size: 12px; color: var(--muted); letter-spacing: 1px; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 60px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-stats { display: none; }
  .stream-layout { grid-template-columns: 1fr; }
  .youtube-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; }
}
