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

:root {
  --radius: 0.125rem;

  --background: #000000;
  --foreground: #ffffff;
  --surface: #1e1b24;
  --surface-2: #2a2533;
  --card: #1e1b24;
  --card-foreground: #ffffff;
  --popover: #15121b;
  --popover-foreground: #ffffff;

  --primary: #c026d3;
  --primary-foreground: #ffffff;
  --primary-glow: #e879f9;

  --secondary: #2a2533;
  --secondary-foreground: #ffffff;

  --muted: #2a2533;
  --muted-foreground: #a1a1aa;

  --accent: #c026d3;
  --accent-foreground: #ffffff;

  --gold: #eab308;
  --gold-foreground: #000000;

  --destructive: #ef4444;
  --destructive-foreground: #ffffff;

  --border: rgba(255, 255, 255, 0.12);
  --input: rgba(255, 255, 255, 0.16);
  --ring: #c026d3;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-sans: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-graffiti: "Permanent Marker", cursive;

  --gradient-violet: linear-gradient(135deg, var(--primary), var(--primary-glow));
  --gradient-fade: linear-gradient(
    to top,
    #000000 0%,
    rgba(0, 0, 0, 0.75) 35%,
    rgba(0, 0, 0, 0) 100%
  );
  --shadow-violet: 0 24px 70px -30px rgba(192, 38, 211, 0.65);
  --shadow-panel: 0 30px 80px -40px rgba(0, 0, 0, 0.9);
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  border-color: var(--border);
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

::selection {
  background: var(--primary);
  color: var(--primary-foreground);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  line-height: 0.94;
  text-transform: uppercase;
  margin: 0;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--background);
}
::-webkit-scrollbar-thumb {
  background: var(--surface-2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Utilities */
.eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 500;
}

.graffiti {
  font-family: var(--font-graffiti);
  text-transform: none;
  letter-spacing: 0;
}

.text-gradient-violet {
  background: var(--gradient-violet);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.surface-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-panel);
}

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: d3-marquee 32s linear infinite;
}

.reveal-hidden {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-shown {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.9s var(--ease-lux),
    transform 0.9s var(--ease-lux);
}

.zoom-media {
  overflow: hidden;
}
.zoom-media img {
  transition: transform 0.9s var(--ease-lux);
}
.zoom-media:hover img {
  transform: scale(1.07);
}

.link-underline {
  position: relative;
  text-decoration: none;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-lux);
}
.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@keyframes d3-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes d3-rise {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.animate-rise {
  animation: d3-rise 1s var(--ease-lux) both;
}

/* Color Mapping Classes */
.bg-background { background-color: var(--background) !important; }
.bg-foreground { background-color: var(--foreground) !important; }
.bg-surface { background-color: var(--surface) !important; }
.bg-surface-2 { background-color: var(--surface-2) !important; }
.bg-card { background-color: var(--card) !important; }
.bg-popover { background-color: var(--popover) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-gold { background-color: var(--gold) !important; }

.text-foreground { color: var(--foreground) !important; }
.text-background { color: var(--background) !important; }
.text-primary { color: var(--primary) !important; }
.text-primary-foreground { color: var(--primary-foreground) !important; }
.text-gold { color: var(--gold) !important; }
.text-gold-foreground { color: var(--gold-foreground) !important; }
.text-muted-foreground { color: var(--muted-foreground) !important; }

.border-border { border-color: var(--border) !important; }
.border-gold { border-color: var(--gold) !important; }
.border-primary { border-color: var(--primary) !important; }
