/* ===================================
   ESTAÇÃO UMBRA - ESTILOS PRINCIPAIS
   =================================== */

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Paleta de Cores */
  --color-bg-primary: #0f0f1a;
  --color-bg-secondary: #1a1a2e;
  --color-bg-tertiary: #252540;
  --color-text-primary: #f0f0f5;
  --color-text-secondary: #b8b8c8;
  --color-accent: #9d7ff5;
  --color-accent-dark: #7c5fd9;
  --color-accent-light: #b89fff;
  --color-border: #3a3a52;

  /* Tipografia */
  --font-body: "Inter", sans-serif;
  --font-title: "Source Serif Pro", serif;

  /* Espaçamento */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  cursor: default;
}

/* ===================================
   EFEITO DE RUÍDO/ESTÁTICA
   =================================== */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9998;
  pointer-events: none;
  background: repeating-linear-gradient(rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.08) 1px, transparent 2px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.08) 1px, transparent 2px);
  animation: noise 0.1s infinite alternate;
  opacity: 0.3;
}

@keyframes noise {
  0% {
    transform: translate(0.5px, -0.5px);
  }
  50% {
    transform: translate(-0.5px, 0.5px);
  }
  100% {
    transform: translate(0.5px, 0.5px);
  }
}

/* ===================================
   EFEITO DE VINHETA NAS BORDAS
   =================================== */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9997;
  pointer-events: none;
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.5);
}

/* ===================================
   PRELOADER
   =================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease-in-out, visibility 1s;
}

#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  position: relative;
}

.preloader-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  animation: flicker 2s infinite alternate;
  letter-spacing: 0.1em;
}

.preloader-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  animation: pulse 2s ease-in-out infinite;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes flicker {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    opacity: 1;
    text-shadow: 0 0 20px rgba(157, 127, 245, 0.6), 0 0 40px rgba(157, 127, 245, 0.4);
  }
  20%,
  24%,
  55% {
    opacity: 0.8;
    text-shadow: none;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* ===================================
   TIPOGRAFIA
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.title-main {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.title-section {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.title-card {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.text-accent {
  color: var(--color-accent);
}

.text-glow {
  text-shadow: 0 0 15px rgba(157, 127, 245, 0.6);
}

/* ===================================
   HEADER/NAVEGAÇÃO
   =================================== */
.header {
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-text-primary);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--color-accent);
  text-shadow: 0 0 15px rgba(157, 127, 245, 0.6);
}

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

.nav-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link-special {
  color: var(--color-accent-light);
  font-weight: 600;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.nav-cta:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 0 20px rgba(157, 127, 245, 0.4);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 2rem;
  cursor: pointer;
}

/* Menu Mobile */
.nav-mobile {
  display: none;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
}

.nav-mobile.active {
  display: block;
}

.nav-mobile .nav-link {
  display: block;
  padding: 1rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

/* ===================================
   HERO SECTION
   =================================== */
.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;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 26, 0.6) 0%, rgba(15, 15, 26, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-subtitle-inline {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--color-accent-light);
  display: block;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid var(--color-accent);
}

.hero-cta:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 0 30px rgba(157, 127, 245, 0.6);
  transform: translateY(-2px);
}

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

/* ===================================
   SECTIONS
   =================================== */
.section {
  padding: var(--spacing-xl) var(--spacing-md);
  position: relative;
}

.section-dark {
  background: var(--color-bg-secondary);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================================
   CONTENT GRID (novo para Filmes, Livros, Jogos)
   =================================== */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.content-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.content-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 15px 50px rgba(157, 127, 245, 0.3);
}

.content-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.content-card:hover .content-image img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.content-body {
  padding: 1.5rem;
}

.content-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-primary);
}

.content-description {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.content-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.content-link:hover {
  color: var(--color-accent-light);
  gap: 1rem;
}

/* ===================================
   YOUTUBE SECTION
   =================================== */
.youtube-section {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--spacing-xl) var(--spacing-md);
}

.youtube-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.youtube-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  color: var(--color-accent);
  animation: pulse 2s ease-in-out infinite;
}

.youtube-title {
  margin-bottom: 1.5rem;
}

.youtube-description {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

.youtube-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.youtube-button-primary {
  background: #ff0000;
  color: white;
  border: 2px solid #ff0000;
}

.youtube-button-primary:hover {
  background: #cc0000;
  border-color: #cc0000;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
  transform: translateY(-2px);
}

.youtube-button-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.youtube-button-secondary:hover {
  background: var(--color-accent);
  color: white;
  box-shadow: 0 0 30px rgba(157, 127, 245, 0.4);
  transform: translateY(-2px);
}

/* ===================================
   SOBRE SECTION COM TYPING EFFECT
   =================================== */
.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-image-wrapper {
  width: 100%;
  max-width: 600px;
  height: 300px;
  margin: 0 auto 2rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.about-image-wrapper:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 30px rgba(157, 127, 245, 0.3);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--color-bg-tertiary);
}

.about-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-text.visible {
  opacity: 1;
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  margin-left: 2px;
  background-color: var(--color-accent);
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  from,
  to {
    visibility: visible;
  }
  50% {
    visibility: hidden;
  }
}

.about-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-link:hover {
  color: var(--color-accent-light);
  gap: 1rem;
}

/* ===================================
   DIVIDER TEMÁTICO
   =================================== */
.themed-divider {
  border: none;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-accent),
    var(--color-accent) 10px,
    transparent 10px,
    transparent 20px
  );
  opacity: 0.3;
  margin: var(--spacing-lg) auto;
  max-width: 50%;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h5 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-text-primary);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.footer-description {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  color: var(--color-accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

/* ===================================
   SCROLL REVEAL
   =================================== */
.reveal-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   MANIFESTO PAGE
   =================================== */
.manifesto-hero {
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
}

.manifesto-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.manifesto-subtitle {
  font-size: 1.5rem;
  color: var(--color-text-secondary);
  font-style: italic;
}

.manifesto-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-md);
}

.manifesto-article {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.manifesto-article h2 {
  font-size: 2rem;
  color: var(--color-accent);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.manifesto-article p {
  margin-bottom: 1.5rem;
}

.manifesto-closing {
  text-align: center;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-accent-light);
  margin-top: 3rem;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .youtube-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .youtube-button {
    width: 100%;
    justify-content: center;
  }
}

/* ===================================
   UTILITÁRIOS
   =================================== */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

/* ===================================
   FUTUROS PROJETOS / MYSTERY SECTION
   =================================== */
.section-mystery {
  background: linear-gradient(180deg, var(--color-bg-secondary) 0%, #0a0a15 100%);
  position: relative;
  overflow: hidden;
}

.section-mystery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(157, 127, 245, 0.03) 2px,
    rgba(157, 127, 245, 0.03) 4px
  );
  pointer-events: none;
  animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(20px);
  }
}

.mystery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.mystery-card {
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mystery-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(157, 127, 245, 0.1), transparent);
  transition: left 0.5s ease;
}

.mystery-card:hover::before {
  left: 100%;
}

.mystery-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 30px rgba(157, 127, 245, 0.2);
  transform: translateY(-5px);
}

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

.mystery-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: monospace;
}

.mystery-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 0.25rem;
  font-family: monospace;
}

.mystery-status-locked {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

.mystery-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-family: monospace;
  letter-spacing: 0.05em;
}

.mystery-description {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.mystery-progress {
  width: 100%;
  height: 4px;
  background: var(--color-bg-tertiary);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.mystery-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent));
  border-radius: 2px;
  position: relative;
  transition: width 0.3s ease;
}

.mystery-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.mystery-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(157, 127, 245, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.mystery-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(157, 127, 245, 0.1) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}

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

.mystery-cta-text {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.mystery-button {
  display: inline-block;
  background: var(--color-accent);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 2px solid var(--color-accent);
  position: relative;
  z-index: 1;
}

.mystery-button:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 0 30px rgba(157, 127, 245, 0.6);
  transform: translateY(-2px);
}
