@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700;900&family=Inter:wght@400;600;700;900&display=swap');

:root {
  --bg: #060608;
  --bg-card: #0e0e12;
  --bg-card-hover: #16161c;
  
  --border: rgba(220, 179, 0, 0.35);
  --border-hover: #dcb300;
  
  --text: #ffffff;
  --text-muted: #888894;
  --text-sub: #d0d0d8;
  
  --hazard-yellow: #dcb300;
  --hazard-yellow-bright: #ebd000;
  --hazard-yellow-dark: #b89500;
  --hazard-yellow-glow: rgba(220, 179, 0, 0.3);
  
  --accent-soundcloud: #ff5500;
  --accent-spotify: #1ed760;
  --accent-apple: #fa243c;
  --accent-youtube: #ff4444;
  --accent-vk: #0077ff;
  
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-card: 0px;
  --radius-btn: 0px;
  --max-w: 680px;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.25rem 4rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
  
  /* Aggressive Industrial Hazard Mesh Backdrop */
  background-image: 
    linear-gradient(
      -45deg, 
      rgba(220, 179, 0, 0.05) 25%, 
      transparent 25%, 
      transparent 50%, 
      rgba(220, 179, 0, 0.05) 50%, 
      rgba(220, 179, 0, 0.05) 75%, 
      transparent 75%, 
      transparent
    );
  background-size: 40px 40px;
}

/* Top Industrial Hazard Bar Banner */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--hazard-yellow),
    var(--hazard-yellow) 15px,
    #000 15px,
    #000 30px
  );
  z-index: 100;
  box-shadow: 0 0 15px rgba(220, 179, 0, 0.5);
}

/* Gritty Industrial Film Grain Overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Container */
.page-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

/* Header Logo */
.header-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.5rem;
}

.index .artist-logo {
  margin-top: 0;
}

.artist-logo {
  height: 85px;
  max-width: 90%;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 0 10px rgba(220, 179, 0, 0.25));
  margin-top: 30px;
}

@media (max-width: 600px) {
  .artist-logo {
    height: 65px;
  }
}

/* Page Load Chromatic Disintegrating Glitch Animation */
.glitch-load {
  animation: glitchIntro 0.55s steps(4, end) both;
}

/* 
   PREVIOUS WOBBLE ANIMATION (For Rollback Reference):
   @keyframes glitchIntroPrevious {
     0% { transform: translate(0); filter: drop-shadow(0 0 0 transparent); }
     15% { transform: translate(-4px, 2px); filter: drop-shadow(-4px 0 0 var(--hazard-yellow)) drop-shadow(4px 0 0 #ffffff); }
     30% { transform: translate(4px, -2px); filter: drop-shadow(4px 0 0 var(--hazard-yellow)) drop-shadow(-4px 0 0 #000000); }
     50% { transform: translate(-2px, 1px); filter: drop-shadow(-2px 0 0 #ffffff) drop-shadow(2px 0 0 var(--hazard-yellow)); }
     100% { transform: translate(0); filter: drop-shadow(0 0 10px rgba(220, 179, 0, 0.25)); }
   }
*/

@keyframes glitchIntro {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translate(0, 0);
    filter: drop-shadow(0 0 0 transparent);
  }
  20% {
    /* Horizontal slice tearing left and right with Red Shift */
    clip-path: polygon(0 0, 100% 0, 100% 25%, 0 25%, 0 65%, 100% 65%, 100% 100%, 0 100%);
    transform: translate(-10px, 3px) skewX(-5deg);
    filter: drop-shadow(-10px 0 0 #ff0033) drop-shadow(8px 0 0 var(--hazard-yellow)) drop-shadow(4px 0 0 #ffffff);
  }
  40% {
    /* Middle horizontal slice tear shift with Red Shift offset */
    clip-path: polygon(0 20%, 100% 20%, 100% 50%, 0 50%, 0 85%, 100% 85%, 100% 100%, 0 100%);
    transform: translate(12px, -4px) skewX(6deg);
    filter: drop-shadow(10px 0 0 #ff0033) drop-shadow(-8px 0 0 var(--hazard-yellow));
  }
  60% {
    /* Jagged diagonal fracture */
    clip-path: polygon(0 0, 85% 0, 85% 35%, 0 35%, 15% 75%, 100% 75%, 100% 100%, 0 100%);
    transform: translate(-6px, 2px) skewX(-3deg);
    filter: drop-shadow(-6px 0 0 #ff0033) drop-shadow(4px 0 0 #ffffff);
  }
  80% {
    clip-path: inset(0 0 0 0);
    transform: translate(3px, -1px);
    filter: drop-shadow(-3px 0 0 rgba(255, 0, 51, 0.4));
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0, 0);
    filter: drop-shadow(0 0 10px rgba(220, 179, 0, 0.25));
  }
}

/* Logo Glitch on Hover */
.artist-logo:hover {
  opacity: 1;
  animation: logoGlitchHover 0.3s steps(2, start) infinite;
}

@keyframes logoGlitchHover {
  0% { transform: translate(0, 0) skew(0deg); filter: drop-shadow(-3px 0 0 var(--hazard-yellow)) drop-shadow(3px 0 0 #ffffff); }
  33% { transform: translate(-3px, 1px) skew(-2deg); filter: drop-shadow(3px 0 0 var(--hazard-yellow)) drop-shadow(-3px 0 0 #ffffff); }
  66% { transform: translate(2px, -2px) skew(2deg); filter: drop-shadow(-2px 0 0 #000) drop-shadow(2px 0 0 var(--hazard-yellow)); }
  100% { transform: translate(0, 0) skew(0deg); filter: drop-shadow(0 0 15px rgba(220, 179, 0, 0.4)); }
}

/* Top Navigation Actions Bar */
.top-actions {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: calc(var(--max-w) + 1rem);
  margin: 0 auto;
  z-index: 10;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #000000;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.85rem;
  border-radius: 0px;
  background: var(--hazard-yellow);
  border: 1px solid var(--hazard-yellow);
  transition: all 0.2s ease;
}

.back-link:hover {
  color: #000;
  background: var(--hazard-yellow-bright);
  border-color: var(--hazard-yellow-bright);
  transform: translateX(-2px);
  box-shadow: 0 0 15px var(--hazard-yellow-glow);
}

.share-btn {
  background: var(--hazard-yellow);
  border: 1px solid var(--hazard-yellow);
  color: #000000;
  width: 36px;
  height: 36px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: auto;
  font-weight: 900;
}

.share-btn:hover {
  background: var(--hazard-yellow-bright);
  color: #000;
  border-color: var(--hazard-yellow-bright);
  box-shadow: 0 0 15px var(--hazard-yellow-glow);
}

/* Main Profile Header (Homepage) */
.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  margin-top: 1rem;
}

.profile-avatar-box {
  width: 120px;
  height: 120px;
  border-radius: 0px;
  overflow: hidden;
  border: 3px solid var(--hazard-yellow);
  box-shadow: 0 0 25px rgba(220, 179, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-avatar-box:hover {
  transform: scale(1.04);
  box-shadow: 0 0 35px rgba(220, 179, 0, 0.5);
}

.profile-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px;
}

.profile-title-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.profile-bio {
  color: var(--text-sub);
  font-size: 0.95rem;
  max-width: 440px;
  font-weight: 500;
}

/* Feed Section (Releases & Sets) */
.feed-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

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

.feed-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--hazard-yellow);
  background: #000;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--hazard-yellow);
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* Sharp Industrial Cards */
.feed-card, .link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 0px;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--text);
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* REAL DISINTEGRATING / FRACTURING SLICE GLITCH ON HOVER */
.feed-card:hover, .link-row:hover, .artist-card:hover, .artwork-box:hover {
  background: var(--bg-card-hover);
  border-color: var(--hazard-yellow);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.9), 0 0 20px var(--hazard-yellow-glow);
  animation: disintegrateSlice 0.35s steps(3, end);
}

/* INSTANT CLICK FIX: Reset clip-path and animation immediately on click/press so links open 100% instantly without waiting */
.feed-card:active, .link-row:active, .artist-card:active, .artwork-box:active {
  animation: none !important;
  clip-path: none !important;
  transform: translateY(0) !important;
  filter: none !important;
}

@keyframes disintegrateSlice {
  0% {
    clip-path: inset(0 0 0 0);
    transform: translate(0, 0);
    filter: drop-shadow(0 0 0 transparent);
  }
  20% {
    /* Top & bottom slice tear left and right with Red Shift */
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 30%, 0 70%, 100% 70%, 100% 100%, 0 100%);
    transform: translate(-8px, 2px) skewX(-4deg);
    filter: drop-shadow(-8px 0 0 #ff0033) drop-shadow(6px 0 0 var(--hazard-yellow)) drop-shadow(4px 0 0 #ffffff);
  }
  40% {
    /* Middle horizontal slice tear shift with Red Shift offset */
    clip-path: polygon(0 25%, 100% 25%, 100% 55%, 0 55%, 0 80%, 100% 80%, 100% 100%, 0 100%);
    transform: translate(9px, -3px) skewX(5deg);
    filter: drop-shadow(8px 0 0 #ff0033) drop-shadow(-6px 0 0 var(--hazard-yellow));
  }
  60% {
    /* Jagged diagonal fracture with Red Shift shadow */
    clip-path: polygon(0 0, 90% 0, 90% 40%, 0 40%, 10% 60%, 100% 60%, 100% 100%, 0 100%);
    transform: translate(-4px, 1px) skewX(-2deg);
    filter: drop-shadow(-5px 0 0 #ff0033) drop-shadow(3px 0 0 #ffffff);
  }
  80% {
    clip-path: inset(0 0 0 0);
    transform: translate(2px, -1px);
    filter: drop-shadow(-2px 0 0 rgba(255, 0, 51, 0.4));
  }
  100% {
    clip-path: inset(0 0 0 0);
    transform: translate(0, -2px);
    filter: drop-shadow(0 0 0 transparent);
  }
}

/* Expandable Bootleg Card Styles */
.feed-card.expandable {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  transition: all 0.25 ease;
}

.feed-card-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.bootleg-expanded-actions {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(220, 179, 0, 0.3);
  animation: fadeIn 0.25s ease-out;
}

.feed-card.expandable.open .bootleg-expanded-actions {
  display: grid;
}

.feed-card.expandable #bootlegChevron {
  transition: transform 0.25s ease;
}

.feed-card.expandable.open #bootlegChevron {
  transform: rotate(180deg);
}

.bootleg-sub-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 0px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}

.bootleg-sub-btn.soundcloud {
  background: rgba(255, 85, 0, 0.15);
  border: 2px solid rgba(255, 85, 0, 0.5);
  color: var(--accent-soundcloud);
}

.bootleg-sub-btn.soundcloud:hover {
  background: var(--accent-soundcloud);
  color: #fff;
  border-color: var(--accent-soundcloud);
  box-shadow: 0 0 15px rgba(255, 85, 0, 0.4);
}

.bootleg-sub-btn.youtube {
  background: rgba(255, 0, 0, 0.15);
  border: 2px solid rgba(255, 0, 0, 0.5);
  color: var(--accent-youtube);
}

.bootleg-sub-btn.youtube:hover {
  background: var(--accent-youtube);
  color: #fff;
  border-color: var(--accent-youtube);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

@media (max-width: 480px) {
  .bootleg-expanded-actions {
    grid-template-columns: 1fr;
  }
}

.feed-card-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.feed-thumb {
  width: 52px;
  height: 52px;
  border-radius: 0px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.feed-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 0px;
  background: rgba(220, 179, 0, 0.08);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  color: var(--text);
}

.feed-card.youtube .feed-icon-box {
  color: var(--accent-youtube);
  background: rgba(255, 0, 0, 0.12);
  border-color: rgba(255, 0, 0, 0.3);
}

.feed-card.bootleg .feed-icon-box {
  color: var(--accent-soundcloud);
  background: rgba(255, 85, 0, 0.12);
  border-color: rgba(255, 85, 0, 0.3);
}

.feed-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.feed-item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.feed-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hazard Yellow Block Badges (Sharp 0px) */
.badge-tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 900;
  padding: 0.15rem 0.5rem;
  border-radius: 0px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-tag.new {
  background: var(--hazard-yellow);
  color: #000;
}

.badge-tag.set {
  background: rgba(255, 0, 0, 0.2);
  color: var(--accent-youtube);
  border: 1px solid rgba(255, 0, 0, 0.4);
}

.badge-tag.bootleg {
  background: rgba(255, 85, 0, 0.2);
  color: var(--accent-soundcloud);
  border: 1px solid rgba(255, 85, 0, 0.4);
}

/* Sharp Solid Industrial Action Buttons */
.feed-action, .link-action {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  background: var(--hazard-yellow);
  border: 2px solid var(--hazard-yellow);
  color: #000000;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.feed-card:hover .feed-action, .link-row:hover .link-action {
  background: var(--hazard-yellow-bright);
  border-color: var(--hazard-yellow-bright);
  box-shadow: 0 0 15px var(--hazard-yellow-glow);
}

/* YouTube Watch Set Button Specific Branding */
.feed-action.btn-youtube i.fa-youtube {
  font-size: 0.95rem;
  color: #000000;
  margin-right: 0.15rem;
  transition: color 0.2s ease;
}

.feed-card.youtube:hover .feed-action {
  background: var(--accent-youtube);
  border-color: var(--accent-youtube);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}

.feed-card.youtube:hover .feed-action i.fa-youtube {
  color: #ffffff;
}

/* Release Card Main (Bonjour Page) */
.release-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 1rem;
}

.artwork-box {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.85),
    0 0 0 3px var(--hazard-yellow);
  margin-bottom: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artwork-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px;
}

.track-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.track-subtitle {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #000;
  background: var(--hazard-yellow);
  padding: 0.2rem 0.6rem;
}

.track-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  margin-top: 15px;
}

.artist-name {
  font-size: 1.1rem;
  color: var(--text-sub);
  font-weight: 600;
}

/* Links Stack */
.links-section {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.link-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-icon {
  font-size: 1.4rem;
  width: 32px;
  display: flex;
  justify-content: center;
  color: var(--text);
  transition: color 0.2s ease;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Featured SoundCloud Free Download Row */
.link-row.featured-soundcloud {
  background: linear-gradient(135deg, rgba(220, 179, 0, 0.2) 0%, rgba(14, 14, 18, 0.9) 100%);
  border-color: var(--hazard-yellow);
}

.link-row.featured-soundcloud:hover {
  background: linear-gradient(135deg, rgba(220, 179, 0, 0.3) 0%, rgba(22, 22, 28, 0.95) 100%);
  border-color: var(--hazard-yellow-bright);
  box-shadow: 0 8px 30px rgba(220, 179, 0, 0.35);
}

.link-row.featured-soundcloud .brand-icon {
  color: var(--hazard-yellow);
}

.free-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 0.15rem 0.4rem;
  background: var(--hazard-yellow);
  color: #000;
  border-radius: 0px;
  margin-left: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Brand Icon Hover Highlights */
.link-row.spotify:hover .brand-icon { color: var(--accent-spotify); }
.link-row.apple:hover .brand-icon { color: var(--accent-apple); }
.link-row.youtube:hover .brand-icon { color: var(--accent-youtube); }
.link-row.deezer:hover .brand-icon { color: #a238ff; }
.link-row.amazon:hover .brand-icon { color: #00a8e1; }
.link-row.vk:hover .brand-icon { color: var(--accent-vk); }

/* Artist Card */
.artist-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 0px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

@media (max-width: 500px) {
  .artist-card {
    flex-direction: column;
    text-align: center;
  }
}

.artist-photo {
  width: 80px;
  height: 80px;
  border-radius: 0px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--hazard-yellow);
}

.artist-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.artist-bio {
  font-size: 0.9rem;
  color: var(--text-sub);
}

.social-bar {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

@media (max-width: 580px) {
  .feed-card, .link-row, .feed-card-main {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .feed-card, .link-row {
    padding: 1rem;
  }

  .feed-action, .link-action {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.65rem;
  }

  .feed-card-left {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .social-bar {
    justify-content: center;
  }
}

.social-icon {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: var(--hazard-yellow);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.toast {
  background: #141416;
  border: 2px solid var(--hazard-yellow);
  color: #fff;
  padding: 0.65rem 1.2rem;
  border-radius: 0px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 15px var(--hazard-yellow-glow);
  animation: fadeIn 0.2s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
