*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0c0c10;
  --bg-darker: #08080b;
  --bg-card: #16161c;
  --accent: #c8ff00;
  --accent-dim: rgba(200, 255, 0, 0.15);
  --accent-glow: rgba(200, 255, 0, 0.3);
  --twitch: #9146ff;
  --twitch-glow: rgba(145, 70, 255, 0.3);
  --youtube: #ff0033;
  --youtube-glow: rgba(255, 0, 51, 0.25);
  --text: #eaeaea;
  --text-dim: #6a6a78;
  --text-mid: #9a9aac;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(200, 255, 0, 0.3);
  --radius: 6px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(12, 12, 16, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }

.logo-mark {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  letter-spacing: 1px;
  font-family: 'Oswald', sans-serif;
  border: 2px solid var(--accent);
  background-image: url('https://i.imgur.com/e6OWBkC.png');
  background-size: cover;
  background-position: center;
}

.logo-text { font-family: 'Oswald', sans-serif; font-size: 18px; letter-spacing: 2px; font-weight: 600; }

.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: 15px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }

.nav-socials { display: flex; gap: 8px; }
.nav-btn { padding: 7px 16px; border-radius: 4px; font-size: 13px; font-weight: 600; text-decoration: none; text-transform: uppercase; letter-spacing: 0.5px; transition: transform 0.2s, box-shadow 0.2s; font-family: 'Oswald', sans-serif; }
.youtube-btn { background: var(--youtube); color: #fff; }
.youtube-btn2 { background: #b3001b; color: #fff; }
.twitch-btn { background: var(--twitch); color: #fff; }
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px var(--accent-glow); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.menu-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

.mobile-menu { display: none; flex-direction: column; padding: 0 24px 16px; }
.mobile-menu a { color: var(--text-dim); text-decoration: none; padding: 10px 0; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; }
.mobile-menu.open { display: flex; }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 16, 0.75) 0%, rgba(12, 12, 16, 0.85) 50%, rgba(12, 12, 16, 0.95) 100%),
    radial-gradient(ellipse at 25% 35%, rgba(200, 255, 0, 0.04), transparent 50%),
    url('https://i.imgur.com/e6OWBkC.png') center/cover no-repeat;
  background-attachment: fixed;
}

.hero-content { position: relative; z-index: 2; padding: 0 24px; max-width: 760px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200, 255, 0, 0.05);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 6px 16px; border-radius: 4px;
  font-size: 12px; font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 2px;
  font-family: 'Oswald', sans-serif;
}

.live-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title { font-family: 'Oswald', sans-serif; font-size: clamp(50px, 11vw, 120px); line-height: 0.9; letter-spacing: 6px; margin-bottom: 24px; font-weight: 700; color: var(--text); }
.hero-title span { display: block; color: var(--accent); }

.hero-subtitle { font-size: clamp(15px, 2vw, 18px); color: var(--text-dim); margin-bottom: 40px; font-weight: 400; letter-spacing: 1px; }

.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 4px; font-size: 14px; font-weight: 600; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; border: none; text-transform: uppercase; letter-spacing: 1px; font-family: 'Oswald', sans-serif; }
.btn-twitch { background: var(--twitch); color: #fff; }
.btn-twitch:hover { transform: translateY(-2px); box-shadow: 0 6px 24px var(--twitch-glow); }
.btn-youtube { background: var(--youtube); color: #fff; }
.btn-youtube:hover { transform: translateY(-2px); box-shadow: 0 6px 24px var(--youtube-glow); }
.btn-youtube2 { background: #b3001b; color: #fff; }
.btn-youtube2:hover { transform: translateY(-2px); box-shadow: 0 6px 24px var(--youtube-glow); }

.section-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }

.scroll-indicator { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); width: 24px; height: 38px; border: 2px solid var(--text-dim); border-radius: 12px; display: flex; justify-content: center; padding-top: 7px; }
.scroll-indicator span { width: 3px; height: 7px; background: var(--accent); border-radius: 2px; animation: scroll-bounce 1.5s infinite; }
@keyframes scroll-bounce { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0.3; } }

section { padding: 90px 0; }

.section-title { font-family: 'Oswald', sans-serif; font-size: clamp(32px, 5vw, 46px); letter-spacing: 4px; text-align: center; margin-bottom: 12px; font-weight: 600; text-transform: uppercase; }
.section-title-left { font-family: 'Oswald', sans-serif; font-size: clamp(32px, 5vw, 46px); letter-spacing: 4px; margin-bottom: 22px; font-weight: 600; text-transform: uppercase; }
.section-desc { text-align: center; color: var(--text-dim); font-size: 16px; margin-bottom: 40px; }
.section-header { text-align: center; margin-bottom: 46px; }
.section-header .btn { margin-top: 10px; }

.about { background: var(--bg-darker); }
.about-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: start; }
.about-text p { color: var(--text-mid); font-size: 17px; margin-bottom: 18px; }
.about-text strong { color: var(--accent); font-weight: 600; }
.about-text strong.fan-name { color: #ff3344; text-shadow: 0 0 12px rgba(255, 51, 68, 0.4); font-weight: 700; }

.about-stats { display: flex; flex-direction: column; gap: 12px; }
.stat-item { background: var(--bg-card); border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: var(--radius); padding: 18px 20px; display: flex; flex-direction: column; gap: 4px; transition: border-color 0.3s; }
.stat-item:hover { border-left-color: var(--twitch); }
.stat-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 2px; font-family: 'Oswald', sans-serif; }
.stat-value { font-size: 17px; font-weight: 600; color: var(--text); }

.youtube-section { background: var(--bg-dark); }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.video-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s, border-color 0.3s; text-decoration: none; color: var(--text); display: block; }
.video-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }
.video-thumb { position: relative; width: 100%; padding-top: 56.25%; background: #000; overflow: hidden; }
.video-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.video-card:hover .video-thumb img { transform: scale(1.04); }
.video-thumb::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50px; height: 50px; background: rgba(255, 0, 51, 0.85); border-radius: 4px; opacity: 0; transition: opacity 0.3s; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 22px; }
.video-card:hover .video-thumb::after { opacity: 1; }
.video-info { padding: 14px 16px; }
.video-title { font-size: 15px; font-weight: 600; margin-bottom: 5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; }
.video-date { font-size: 13px; color: var(--text-dim); }
.video-placeholder { grid-column: 1 / -1; text-align: center; padding: 60px; color: var(--text-dim); }
.video-error { grid-column: 1 / -1; text-align: center; padding: 40px; color: var(--text-dim); }
.video-error a { color: var(--youtube); text-decoration: none; font-weight: 600; }

.twitch-section { background: var(--bg-darker); }
.twitch-embed-wrapper { max-width: 840px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.twitch-embed { position: relative; width: 100%; padding-top: 56.25%; }
.twitch-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.twitch-fallback { position: relative; width: 100%; padding-top: 56.25%; background: var(--bg-card); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; }
.twitch-fallback-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 16px; text-align: center; padding: 24px; }
.twitch-fallback-inner p { color: var(--text-dim); font-size: 16px; }
.twitch-fallback-inner .btn { background: var(--twitch); color: #fff; }
.twitch-fallback-inner .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px var(--twitch-glow); }

.schedule { background: var(--bg-dark); }
.schedule-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; max-width: 680px; margin: 0 auto; }
.schedule-card { background: var(--bg-card); border: 1px solid var(--border); border-top: 3px solid var(--accent); border-radius: var(--radius); padding: 20px 14px; display: flex; flex-direction: column; gap: 6px; text-align: center; transition: border-color 0.3s, transform 0.3s; }
.schedule-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.schedule-card.off { opacity: 0.35; border-top-color: var(--text-dim); }
.schedule-card .day { font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 1px; font-family: 'Oswald', sans-serif; }
.schedule-card .time { font-size: 15px; color: var(--accent); font-weight: 600; }
.schedule-card.off .time { color: var(--text-dim); }
.schedule-card .game { font-size: 12px; color: var(--text-dim); }
.schedule-note { text-align: center; margin-top: 24px; padding: 14px 24px; background: rgba(200, 255, 0, 0.06); border: 1px solid rgba(200, 255, 0, 0.2); border-radius: 6px; max-width: 680px; margin-left: auto; margin-right: auto; color: var(--accent); font-size: 14px; font-weight: 500; }

.musique { background: var(--bg-darker); }
.audio-player-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.audio-track { background: var(--bg-card); border: 1px solid var(--border); border-left: 3px solid var(--accent); border-radius: var(--radius); padding: 14px 18px; display: flex; align-items: center; gap: 14px; transition: border-color 0.3s, transform 0.2s; }
.audio-track:hover { border-left-color: #ff3344; transform: translateX(4px); }
.audio-track.playing { border-left-color: #ff3344; background: rgba(255, 51, 68, 0.08); }
.audio-play-btn { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; border: none; background: var(--accent); color: #000; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s; }
.audio-play-btn:hover { transform: scale(1.1); }
.audio-track.playing .audio-play-btn { background: #ff3344; color: #fff; }
.audio-track-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.audio-track-title { font-size: 15px; font-weight: 600; color: var(--text); }
.audio-track-meta { font-size: 12px; color: var(--text-dim); }
.audio-progress { flex-shrink: 0; width: 80px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.audio-progress-fill { height: 100%; width: 0%; background: var(--accent); border-radius: 2px; transition: width 0.2s; }
.audio-track.playing .audio-progress-fill { background: #ff3344; }

.contact { background: var(--bg-darker); }
.social-row { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.social-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 44px; text-align: center; text-decoration: none; color: var(--text); transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; min-width: 200px; }
.social-card:hover { transform: translateY(-5px); }
.social-card.youtube:hover { border-color: var(--youtube); box-shadow: 0 6px 28px var(--youtube-glow); }
.social-card.twitch:hover { border-color: var(--twitch); box-shadow: 0 6px 28px var(--twitch-glow); }
.social-icon { margin-bottom: 12px; display: flex; justify-content: center; }
.social-card.youtube .social-icon { color: var(--youtube); }
.social-card.twitch .social-icon { color: var(--twitch); }
.social-card h3 { font-size: 18px; margin-bottom: 4px; font-family: 'Oswald', sans-serif; letter-spacing: 1px; }
.social-card p { color: var(--text-dim); font-size: 14px; }

.footer { padding: 36px 0; text-align: center; border-top: 1px solid var(--border); background: var(--bg-darker); }
.footer-logo { font-family: 'Oswald', sans-serif; font-size: 18px; letter-spacing: 3px; color: var(--text-mid); margin-bottom: 6px; }
.footer-copy { color: var(--text-dim); font-size: 13px; }

@media (max-width: 768px) {
  .nav-links, .nav-socials { display: none; }
  .menu-toggle { display: flex; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }
  section { padding: 64px 0; }
  .about-layout { grid-template-columns: 1fr; gap: 30px; }
  .hero-bg { background-attachment: scroll; }
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}
