/* RADDRIFF - GLASSMORPHIC GRUNGE */
/* Frosted glass floating over industrial textures */

:root {
  --dark-bg: #0a0a0a;
  --dark-gray: #1a1a1a;
  --cyan: #00D9FF;
  --hot-pink: #FF0080;
  --white: #ffffff;
  --light-gray: #e0e0e0;
  
  /* Glass properties */
  --glass-bg: rgba(26, 26, 26, 0.4);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --glass-blur: 12px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--dark-bg);
  color: var(--light-gray);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* GRUNGE TEXTURES */
.texture-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
  background-image: 
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,.03) 2px, rgba(255,255,255,.03) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.03) 2px, rgba(255,255,255,.03) 4px);
  background-size: 100px 100px;
  pointer-events: none;
}

.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.05;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)"/></svg>');
  pointer-events: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* GLASS PANEL BASE */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.panel-content {
  padding: 3rem;
  position: relative;
  z-index: 2;
}

.panel-content.centered {
  text-align: center;
}

/* Panel Glows */
.panel-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.panel-glow.cyan {
  background: var(--cyan);
  top: -150px;
  right: -150px;
}

.panel-glow.pink {
  background: var(--hot-pink);
  bottom: -150px;
  left: -150px;
}

/* HEADER - Frosted Glass */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 60px;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
  transition: all 0.3s ease;
}

.logo:hover {
  filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.7));
  transform: scale(1.05);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--light-gray);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(135deg, var(--cyan), var(--hot-pink));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

nav a:hover::before {
  opacity: 1;
}

nav a:hover {
  color: var(--cyan);
  background: rgba(0, 217, 255, 0.1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--hot-pink));
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding-top: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
}

.mobile-menu nav ul {
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.mobile-menu nav a {
  font-size: 1.5rem;
  display: block;
  padding: 1rem;
}

/* HERO GLASS */
.hero-glass {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 4rem;
  position: relative;
}

.hero-content-glass {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hero-text {
  min-height: 600px;
}

.hero-text .panel-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
}

.glitch-text {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--cyan), var(--hot-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 300;
}

/* Social Glass Grid */
.social-glass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: auto;
}

.glass-social-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.glass-social-btn .icon {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--cyan), var(--hot-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-social-btn:hover {
  background: rgba(0, 217, 255, 0.1);
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 217, 255, 0.2);
}

/* Video Panel */
.video-panel {
  min-height: 600px;
}

.video-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan), var(--hot-pink));
  color: var(--dark-bg);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.video-container-glass {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.video-container-glass iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-title-glass {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

/* Section Styling */
.roulette-glass,
.next-drop-glass,
.email-glass {
  padding: 4rem 0;
  position: relative;
}

.roulette-panel,
.countdown-panel,
.email-panel {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--cyan), var(--hot-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 2rem;
}

/* Glass Buttons */
.glass-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.glass-button span {
  position: relative;
  z-index: 2;
}

.glass-button.primary span {
  background: linear-gradient(135deg, var(--cyan), var(--hot-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-button.secondary {
  background: linear-gradient(135deg, var(--cyan), var(--hot-pink));
  color: var(--dark-bg);
  border: none;
}

.button-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0,217,255,0.3), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.glass-button:hover .button-glow {
  width: 300px;
  height: 300px;
}

.glass-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
}

/* Countdown Glass */
.countdown-glass {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}

.time-glass-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  min-width: 140px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.time-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--hot-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.time-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--light-gray);
  font-weight: 600;
  letter-spacing: 1px;
}

.time-separator {
  font-size: 3rem;
  font-weight: 900;
  color: var(--cyan);
}

/* Featured Drop */
.featured-drop {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.drop-thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

.drop-title {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  font-weight: 700;
  color: var(--white);
}

/* Email Form Glass */
.email-form-glass {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.glass-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 1.25rem 2rem;
  font-size: 1rem;
  color: var(--white);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.glass-input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.email-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 12px;
  display: none;
}

.email-message.success {
  display: block;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid rgba(0, 255, 0, 0.3);
  color: #00ff00;
}

.email-message.error {
  display: block;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  color: #ff0000;
}

/* Footer Glass */
.footer-glass {
  padding: 2rem 0;
  margin-top: 4rem;
}

.footer-panel {
  padding: 2rem;
}

.footer-panel p {
  margin-bottom: 1rem;
  color: var(--light-gray);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--cyan);
}

/* Roulette Overlay Glass */
.roulette-overlay-glass {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.player-panel {
  max-width: 900px;
  width: 100%;
  position: relative;
}

.close-glass {
  position: absolute;
  top: -60px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.close-glass:hover {
  background: rgba(255, 0, 128, 0.3);
  border-color: var(--hot-pink);
  transform: rotate(90deg);
}

#playerContainer {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-content-glass {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .social-glass-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .countdown-glass {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0.75rem 0;
  }
  
  .header-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .logo {
    height: 50px;
  }
  
  .header-content nav {
    display: none !important;
  }
  
  .hamburger {
    display: flex !important;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .glitch-text {
    font-size: 2.5rem;
  }
  
  .hero-glass {
    padding-top: 120px;
  }
  
  .panel-content {
    padding: 2rem;
  }
  
  .social-glass-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .time-glass-box {
    min-width: 100px;
    padding: 1.5rem 1.5rem;
  }
  
  .time-number {
    font-size: 2.5rem;
  }
  
  .email-form-glass {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .header-content {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .social-glass-grid {
    grid-template-columns: 1fr;
  }
  
  .countdown-glass {
    gap: 0.5rem;
  }
  
  .time-separator {
    font-size: 2rem;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.glass-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(0, 217, 255, 0.2);
}

/* INTEGRATED LAYOUT STYLES */
.main-content {
  min-height: 100vh;
  padding: 140px 0 4rem;
}

.glass-section {
  margin-bottom: 3rem;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--cyan), var(--hot-pink));
  color: var(--dark-bg);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.video-title-main {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.publish-date {
  color: var(--light-gray);
  font-size: 0.9rem;
  font-weight: 600;
}

.tagline {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--cyan), var(--hot-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 2rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.social-btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.social-btn-glass .icon {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--cyan), var(--hot-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-btn-glass:hover {
  background: rgba(0, 217, 255, 0.1);
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 217, 255, 0.2);
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--cyan), var(--hot-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 2rem;
}

/* Countdown Timer Styles */
.countdown-glass {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.time-glass-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  min-width: 140px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.time-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--hot-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.time-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--light-gray);
  font-weight: 600;
  letter-spacing: 1px;
}

.time-separator {
  font-size: 3rem;
  font-weight: 900;
  color: var(--cyan);
}

.featured-drop {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.drop-thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

.drop-title {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  font-weight: 700;
  color: var(--white);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .tagline {
    font-size: 2.5rem;
  }
  
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .time-glass-box {
    min-width: 100px;
    padding: 1.5rem 1.5rem;
  }
  
  .time-number {
    font-size: 2.5rem;
  }
  
  .time-separator {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
}

/* ROULETTE PORTRAIT OVERLAY (9:16 SHORTS FORMAT) */
.roulette-overlay-glass {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.close-glass {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 0, 128, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid rgba(255, 0, 128, 0.5);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.close-glass:hover {
  background: var(--hot-pink);
  transform: rotate(90deg);
  box-shadow: 0 0 30px rgba(255, 0, 128, 0.6);
}

.roulette-video-container-portrait {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 9/16;
  max-height: 90vh;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 0 60px rgba(0, 217, 255, 0.4),
    0 0 120px rgba(255, 0, 128, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

#rouletteVideoEmbed {
  width: 100%;
  height: 100%;
}

#rouletteVideoEmbed iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .roulette-video-container-portrait {
    max-width: 90vw;
  }
  
  .close-glass {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    top: 1rem;
    right: 1rem;
  }
}

/* ROULETTE SPINNER (DICE ANIMATION) */
.roulette-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}

.spinner-wheel {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spinner-wheel.spinning {
  animation: spin 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes spin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(720deg) scale(1.2); }
  100% { transform: rotate(1440deg) scale(1); }
}

.wheel-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
}

.spinner-text {
  font-size: 3rem;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(255, 0, 128, 0.8));
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}


/* LYRIC ROULETTE WIDGET */
.lyric-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.8;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  min-height: 100px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.lyric-quote.loading {
  opacity: 0.5;
  font-style: normal;
}

.lyric-song {
  color: var(--light-gray);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-style: normal;
}

.lyric-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px) {
  .lyric-quote {
    font-size: 1.2rem;
    padding: 1.5rem;
  }
  
  .lyric-buttons {
    flex-direction: column;
  }
  
  .lyric-buttons .glass-button {
    width: 100%;
  }
}

/* MOOD & MAYHEM FILTERS */
.filter-chips {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem;
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.chip {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.chip:hover {
  background: rgba(0, 217, 255, 0.1);
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
}

.chip.active {
  background: linear-gradient(135deg, var(--cyan), var(--hot-pink));
  color: var(--dark-bg);
  border-color: transparent;
  font-weight: 700;
}

.chip.active:hover {
  transform: translateY(-2px) scale(1.05);
}

@media (max-width: 768px) {
  .filter-chips {
    gap: 0.5rem;
    padding: 0.75rem;
  }
  
  .chip {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* STATS GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  padding: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--hot-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* RELEASE TIMELINE */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--hot-pink));
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.timeline-item {
  position: relative;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.timeline-item:hover {
  padding-left: 1rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3.5rem;
  top: 2rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  border: 3px solid var(--dark-bg);
  box-shadow: 0 0 20px var(--cyan);
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-item:hover::before {
  transform: scale(1.3);
  box-shadow: 0 0 30px var(--cyan);
}

.timeline-date {
  color: var(--light-gray);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-family: 'Courier New', monospace;
}

.timeline-type {
  display: inline-block;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  color: var(--cyan);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-right: 0.75rem;
}

.timeline-title {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.timeline-title:hover {
  color: var(--cyan);
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .timeline {
    padding-left: 2rem;
  }
  
  .timeline-item::before {
    left: -2.5rem;
  }
  
  .timeline-title {
    font-size: 1rem;
  }
}

/* NETFLIX-STYLE LYRICS DISPLAY */
.lyrics-netflix {
  position: relative;
  overflow: hidden;
}

.lyrics-netflix .lyrics-content {
  max-height: 300px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
}

.lyrics-netflix.expanded .lyrics-content {
  max-height: 10000px;
}

.lyrics-netflix .lyrics-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, rgba(10, 10, 10, 0.98));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lyrics-netflix.expanded .lyrics-content::after {
  opacity: 0;
}

.lyrics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.lyrics-header h2 {
  font-size: 1.75rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--hot-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.lyrics-toggle {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lyrics-toggle:hover {
  background: rgba(0, 217, 255, 0.2);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.lyrics-netflix .collapse-text {
  display: none;
}

.lyrics-netflix.expanded .expand-text {
  display: none;
}

.lyrics-netflix.expanded .collapse-text {
  display: inline;
}

.lyrics-line {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 2;
  margin: 0.5rem 0;
  font-family: 'Courier New', monospace;
  transition: all 0.3s ease;
}

.lyrics-line:hover {
  color: var(--cyan);
  transform: translateX(5px);
}

.lyrics-break {
  height: 1.5rem;
}

@media (max-width: 768px) {
  .lyrics-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .lyrics-toggle {
    width: 100%;
    justify-content: center;
  }
}

/* CREATOR PACK SECTION */
.creator-video {
  max-width: 400px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.creator-video iframe {
  width: 100%;
  height: 700px;
  display: block;
}

.hook-text {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--hot-pink);
  margin-bottom: 2rem;
}

.hook-text strong {
  color: var(--hot-pink);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.75rem;
}

.hook-text blockquote {
  color: var(--white);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.creator-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.permission-notice {
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  padding: 1.25rem;
  border-radius: 12px;
  color: var(--cyan);
  font-weight: 600;
  text-align: center;
  margin-top: 2rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .creator-video iframe {
    height: 500px;
  }
  
  .creator-links {
    flex-direction: column;
  }
  
  .creator-links .glass-button {
    width: 100%;
  }
}
