:root {
  --reset-time: 10s;
  --bg-dark: #080000;
  --card-bg: rgba(24, 24, 28, 0.85);
  --accent-red: #ff0000;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Garamond", "Times New Roman", Times, serif;
}

body, html {
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

/* Mouse Laser Sight Indicator */
.laser-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: var(--accent-red);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--accent-red), 0 0 20px var(--accent-red);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Hide laser dot on mobile screens for cleaner touch interaction */
@media (max-width: 768px) {
  .laser-dot {
    display: none;
  }
}

/* Floating Gun Particles */
.gun-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}

.gun-particle {
  position: absolute;
  bottom: -50px;
  width: 32px;
  height: auto;
  opacity: 0.25;
  animation: floatUp 5s linear forwards;
}

@keyframes floatUp {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

/* Background Scene Layout */
.uiverse-title-pattern {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  user-select: none;
  padding: 2rem 1rem;
}

.uiverse-title-pattern .bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(18rem, 40vw, 32rem);
  height: clamp(18rem, 40vw, 32rem);
  background: radial-gradient(circle, rgba(180, 0, 0, 0.25) 0%, transparent 62%);
  transform: translate(-50%, -50%);
  animation: glowBreathing 6s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

.uiverse-title-pattern .bg-noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 0, 0, 0.1) 1px, transparent 1px),
    radial-gradient(rgba(255, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px, 15px 15px;
  opacity: 0.3;
  z-index: 2;
  pointer-events: none;
  animation: noiseJitter 0.4s infinite;
}

.uiverse-title-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, #000 100%);
  pointer-events: none;
  z-index: 3;
}

/* Main Container Layout */
.horizontal-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  gap: 3rem;
}

.left-section, .right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Title & Animated Letters */
.title-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
  width: 100%;
}

.main-title {
  display: flex;
  justify-content: center;
  align-items: baseline;
  text-transform: uppercase;
  color: transparent;
  line-height: 0.9;
  font-size: clamp(3rem, 10vw, 6rem);
}

.letter {
  position: relative;
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transform: translate(var(--x), var(--y)) rotate(var(--r)) scale(1.5);
  -webkit-text-stroke: 2px var(--accent-red);
  text-shadow: 0 0 5px rgba(255, 0, 0, 0.8), 0 0 15px rgba(255, 0, 0, 0.6);
  animation: letterIntro var(--reset-time) cubic-bezier(0.2, 0.8, 0.2, 1) infinite,
    neonFlicker var(--reset-time) linear infinite;
  animation-delay: var(--d), 0s;
}

.neon-line {
  position: relative;
  width: 0%;
  height: 2px;
  background: transparent;
  margin: 0.5em 0;
  display: flex;
  animation: lineReveal var(--reset-time) cubic-bezier(0.8, 0, 0.2, 1) infinite;
}

.neon-line-inner {
  width: 100%;
  height: 100%;
  border-top: 1px solid var(--accent-red);
  border-bottom: 1px solid var(--accent-red);
  box-shadow: 0 0 5px var(--accent-red), 0 0 10px var(--accent-red);
}

/* Kick Live Banner */
.kick-status-card {
  width: 100%;
  max-width: 420px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  background-color: rgba(12, 12, 15, 0.9);
  border: 2px solid #333333;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.kick-status-card.is-live {
  border-color: #53fc18;
  background: linear-gradient(135deg, rgba(83, 252, 24, 0.15), rgba(12, 12, 15, 0.95));
  box-shadow: 0 0 25px rgba(83, 252, 24, 0.6);
  transform: scale(1.02);
}

.kick-status-card.is-offline {
  border-color: var(--accent-red);
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(12, 12, 15, 0.95));
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.kick-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.badge-status {
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  width: fit-content;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.status-live {
  background-color: #53fc18;
  color: #000000;
  box-shadow: 0 0 12px #53fc18;
  animation: livePulse 1.5s infinite alternate;
}

.status-offline {
  background-color: var(--accent-red);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6);
}

.status-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.kick-brand {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #53fc18;
}

/* Custom Red & White Reveal Buttons */
.social-links {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn2 {
  position: relative;
  display: block;
  width: 100%;
  padding: 12px 24px;
  border: 2px solid var(--accent-red);
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: 0.3s ease;
  background-color: transparent;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.btn2::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-color: #080000;
  border: 2px solid var(--accent-red);
  transition: 0.3s ease-out;
  transform: scaleY(1);
  z-index: 1;
}

.btn2::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-color: #080000;
  transition: 0.3s ease-out;
  transform: scaleY(1);
  z-index: 2;
}

.btn2:hover::before {
  transform: translateY(-100%);
  height: 0;
}

.btn2:hover::after {
  transform: scaleX(0);
  transition-delay: 0.15s;
}

.btn2:hover {
  border: 2px solid var(--accent-red);
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
  color: #ffffff;
}

.btn2 .spn2 {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Audio Player Card & Artwork */
.music-card-horizontal {
  width: 100%;
  max-width: 480px;
  background-color: var(--card-bg);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.cover-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cover-link {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
}

.cover-link:hover {
  transform: scale(1.02);
}

.cover-art {
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.35);
}

.track-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  font-size: 0.85rem;
  color: #ff3333;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.track-details h3 {
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
  color: #ffffff;
}

.artist {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.audio-player {
  width: 100%;
  height: 54px;
  accent-color: var(--accent-red);
  border-radius: 8px;
  background-color: #121215;
  outline: none;
}

/* Animation Definitions */
@keyframes letterIntro { 
  0% { opacity: 0; filter: blur(12px); transform: translate(var(--x), var(--y)) scale(1.5); } 
  30%, 68% { opacity: 1; filter: blur(0); transform: translate(0, 0) scale(1); } 
  92%, 100% { opacity: 0; filter: blur(12px); } 
}

@keyframes lineReveal { 
  0%, 16% { width: 0%; } 
  36%, 68% { width: 100%; } 
  84%, 100% { width: 0%; } 
}

@keyframes glowBreathing { 
  0% { opacity: 0.7; } 
  100% { opacity: 1; } 
}

@keyframes neonFlicker { 
  0%, 30%, 62%, 100% { opacity: 1; } 
  20%, 64% { opacity: 0.35; } 
}

@keyframes noiseJitter { 
  0% { background-position: 0 0; } 
  100% { background-position: -2px 2px; } 
}

@keyframes livePulse { 
  0% { transform: scale(1); box-shadow: 0 0 8px #53fc18; } 
  100% { transform: scale(1.05); box-shadow: 0 0 18px #53fc18; } 
}

/* Mobile Breakpoint Adjustments */
@media (max-width: 850px) {
  .uiverse-title-pattern {
    padding: 3rem 1rem;
    align-items: flex-start;
  }

  .horizontal-container { 
    flex-direction: column; 
    align-items: center; 
    gap: 2.5rem;
  }

  .music-card-horizontal {
    padding: 1.25rem;
  }

  .track-details h3 {
    font-size: 1.8rem;
  }
}