/* ---------------- */
/* BODY + BACKGROUND */
/* ---------------- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  text-align: center;
  overflow-x: hidden;
  position: relative;
  perspective: none; /* CHANGE THIS from 1000px to none */

  background: linear-gradient(135deg, #6a11cb, #2575fc);
  background-size: 200% 200%;
  animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* This forces the cursor to stay hidden even on buttons and links */
a, button, .btn, .secondary, .discord-btn, [role="button"] {
  cursor: none !important;
}

/* Also apply it to the whole page as a backup */
* {
  cursor: none !important;
}
/* ---------------- */
/* TOP LEFT TITLE */
/* ---------------- */
.corner-title {
  position: fixed;
  top: 15px;
  left: 20px;
  font-weight: bold;
  font-size: 30px;
  opacity: 0.95;
  text-shadow: 0 0 15px rgba(255,255,255,0.5);
  z-index: 10;
}

/* ---------------- */
/* HERO SECTION */
/* ---------------- */
.hero {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 5;
  
  /* THE CENTERING POWERHOUSE */
  display: flex;
  flex-direction: column;
  align-items: center;    /* Centers children horizontally */
  justify-content: center; /* Centers children vertically */
  width: 100%;
  max-width: 1200px;       /* Keeps it from getting too wide on ultra-wide monitors */
  margin: 0 auto;          /* Centers the container itself */
}
/* 2. HERO SECTION (CONSOLIDATED & SHARPENED) */
.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff4b1f, #ff9068, #2575fc, #ff4b1f);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* Use ONE unified animation string */
  animation: shimmer 4s linear infinite, pulse 3s ease-in-out infinite, heroTitle 1s ease forwards;

  /* PERFORMANCE LOCKS - This stops the 'blur' during movement */
  filter: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  /* Force hardware acceleration without raster blur */
  transform: translateZ(0); 
  backface-visibility: hidden;
  will-change: transform, opacity;
}

/* OPTIMIZED PULSE - Subtler scale prevents pixel stretching */
@keyframes pulse {
  0%, 100% { 
    transform: scale(1); 
    /* Use drop-shadow instead of text-shadow for clipped text */
    filter: drop-shadow(0 0 8px rgba(255, 75, 31, 0.3));
  }
  50% { 
    transform: scale(1.02); 
    filter: drop-shadow(0 0 18px rgba(255, 144, 104, 0.6));
  }
}

.hero p {
  font-size: 1.6rem;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(-20px);
  animation: heroSub 1s ease forwards;
  animation-delay: 0.5s;
}

/* ----------------------------------------- */
/* MASSIVE TYPING TEXT STYLE                 */
/* ----------------------------------------- */
.typing-text {
  display: inline-block;
  font-size: 4.5rem;       /* 1. HUGE SCALE */
  font-weight: 800;         /* 2. EXTRA THICK */
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 50px;
  letter-spacing: -2px;     /* 3. TIGHT & MODERN */
  line-height: 1.1;
  
  /* Soul Glow Effect */
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 
               0 0 40px rgba(37, 117, 252, 0.5);
  
  /* Thicker Blinking Cursor */
  border-right: 8px solid #ff4b1f; 
  padding-right: 12px;
  white-space: normal;      /* Allows wrapping if text is too long for mobile */
}

/* ----------------------------------------- */
/* SUMRANDOMDUDE SLIDE-UP ANIMATIONS        */
/* ----------------------------------------- */
@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Applying the slide-up to major sections */
.menu-card, 
.image-section, 
.about {
  opacity: 0;
  animation: slideUpFade 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Staggering them so they appear one after another */
.menu-card      { animation-delay: 0.6s; }
.image-section  { animation-delay: 1.0s; }
.about          { animation-delay: 1.4s; }
/* ---------------- */
/* HERO ANIMATIONS */
/* ---------------- */
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes heroTitle { to { opacity: 1; transform: translateY(0); } }
@keyframes heroSub { to { opacity: 1; transform: translateY(0); } }
@keyframes heroButtons { to { opacity: 1; transform: translateY(0); } }

/* ---------------- */
/* BUTTONS + MENU CARDS */
/* ---------------- */
.buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroButtons 1s ease forwards;
  animation-delay: 0.8s;
}

/* Base styles for card and button containers */
.btn, .menu-card {
  position: relative;
  border-radius: 20px;
  background-clip: padding-box;
  box-shadow: 0 0 15px rgba(255,75,31,0.4), 0 0 30px rgba(255,144,104,0.3);
}

/* Neon animated border */
.btn::before, .menu-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, #ff4b1f, #2575fc, #ff9068, #ff4b1f);
  border-radius: inherit;
  z-index: -1;
  background-size: 300% 300%;
  animation: neonBorder 4s linear infinite;
}

@keyframes neonBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* --- THE ULTIMATE BUTTON --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 70px;
  font-size: 22px;
  min-width: 280px;
  border-radius: 18px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  background: linear-gradient(45deg, #ff4b1f, #ff9068, #ff4b1f);
  background-size: 200% 200%;
  animation: gradientMove 4s ease infinite;
  box-shadow: 0 0 15px #ff4b1f50;
  overflow: hidden; /* Clips the Soul Pulse ring */
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* "Boing" effect */
  z-index: 1;
}

.btn:hover {
  transform: translateY(-12px) scale(1.08);
  letter-spacing: 2px;
  filter: brightness(1.2);
  box-shadow: 0 0 50px rgba(255, 75, 31, 0.8), 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* The Soul Pulse Ring (Invisible until click) */
.btn::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
}

/* Expands the ring when button is pressed */
.btn:active::after {
  width: 450px;
  height: 450px;
  opacity: 1;
  transition: 0s;
}

.btn.secondary {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px #fff3;
}

/* Glass menu card container */
.menu-card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px 50px;
  margin-top: 30px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
}
/* ---------------- */
/* FLOATING MINI ICONS - FIXED */
/* ---------------- */
.float-icon {
  position: fixed; /* Fixed prevents them from clumping at the top */
  font-size: 32px;
  opacity: 0.6;
  z-index: 1;      /* Keeps them behind the text/buttons */
  pointer-events: none; /* Allows users to click buttons 'through' them */
  animation: floatIcons 6s ease-in-out infinite alternate;
}

/* Spread them across the viewport */
.icon1 { top: 10%; left: 10%; animation-delay: 0s; }
.icon2 { top: 20%; right: 10%; animation-delay: 1s; }
.icon3 { bottom: 20%; left: 15%; animation-delay: 2s; }
.icon4 { top: 50%; left: 5%; animation-delay: 3s; }
.icon5 { bottom: 10%; right: 20%; animation-delay: 4s; }
.icon6 { top: 70%; right: 5%; animation-delay: 1.5s; }

@keyframes floatIcons {
  0% { transform: translateY(0) rotate(-10deg); }
  100% { transform: translateY(-40px) rotate(10deg); }
}
/* ---------------- */
/* FLOATING DOTS DECORATION */
/* ---------------- */
.float-dot {
  position: absolute;
  width: 10px; height: 10px;
  background: #ff4b1f;
  border-radius: 50%;
  opacity: 0.8;
  animation: floatDots 3s ease-in-out infinite alternate;
}
.dot1 { top: -10px; left: 20%; animation-delay: 0s; }
.dot2 { top: 50%; right: -10px; animation-delay: 0.5s; }
.dot3 { bottom: -10px; left: 60%; animation-delay: 1s; }

@keyframes floatDots {
  0% { transform: translateY(0) scale(1); opacity: 0.8; }
  50% { transform: translateY(-15px) scale(1.2); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 0.8; }
}
/* ----------------------------------------- */
/* 1. GLOBAL SETTINGS & BACKGROUND           */
/* ----------------------------------------- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  text-align: center;
  overflow-x: hidden;
  position: relative;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  background-attachment: fixed;
  background-size: 200% 200%;
  animation: gradientMove 8s ease infinite;
  perspective: none;
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ----------------------------------------- */
/* 2. HERO SECTION & SHARP TEXT              */
/* ----------------------------------------- */
.hero {
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff4b1f, #ff9068, #2575fc, #ff4b1f);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite, pulse 3s ease-in-out infinite, heroTitle 1s ease forwards;
  
  /* Sharpness Fixes */
  -webkit-font-smoothing: antialiased;
  transform: translateZ(0);
  will-change: transform, opacity;
}

.hero p {
  font-size: 1.6rem;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(-20px);
  animation: heroSub 1s ease forwards;
  animation-delay: 0.5s;
}

/* ----------------------------------------- */
/* 3. BUTTONS (Standard & Discord)           */
/* ----------------------------------------- */
.buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroButtons 1s ease forwards;
  animation-delay: 0.8s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 50px;
  font-size: 20px;
  min-width: 220px;
  border-radius: 18px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  background: linear-gradient(45deg, #ff4b1f, #ff9068);
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 0 15px rgba(255, 75, 31, 0.4);
}

/* Special Discord Button */
.discord-btn {
  background: linear-gradient(45deg, #5865F2, #4752C4) !important;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.4) !important;
  gap: 12px;
}

.discord-icon {
  width: 24px;
  height: 24px;
  fill: white;
}

.btn:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 75, 31, 0.6);
  filter: brightness(1.2);
}

.discord-btn:hover {
  box-shadow: 0 15px 35px rgba(88, 101, 242, 0.6) !important;
}
.corner-title {
    background: linear-gradient(90deg, #fff, #ff9068, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    font-family: 'Courier New', Courier, monospace; /* Makes it look like code */
    letter-spacing: 2px;
}

@keyframes shine {
    to { background-position: 200% center; }
}
/* ---------------- */
/* IMAGE SLIDER SECTION */
/* ---------------- */
.image-section {
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
}

.image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Adjust gap to pull side images behind the middle one slightly */
  gap: -40px; 
  perspective: 1500px; 
}

.slide {
  width: 380px; /* Adjust this size to fit your images */
  height: auto;
  border-radius: 20px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  
  /* SHARPNESS LOCKS */
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

/* SIDE IMAGES (Left and Right) */
.slide.left {
  transform: translateX(80px) rotateY(30deg) scale(0.8);
  opacity: 0.4;
  z-index: 1;
  filter: blur(2px) grayscale(50%);
}

.slide.right {
  transform: translateX(-80px) rotateY(-30deg) scale(0.8);
  opacity: 0.4;
  z-index: 1;
  filter: blur(2px) grayscale(50%);
}

/* MIDDLE IMAGE (The Star) */
.slide.middle {
  transform: scale(1.1);
  z-index: 10;
  opacity: 1;
  filter: drop-shadow(0 0 30px rgba(37, 117, 252, 0.6));
  border: 1px solid rgba(255, 144, 104, 0.5);
}

/* INTERACTIVE HOVER */
.slide:hover {
  opacity: 1 !important;
  transform: scale(1.15) rotateY(0) translateX(0) !important;
  z-index: 100 !important;
  filter: blur(0) grayscale(0) !important;
  cursor: pointer;
}

/* Label for the showcase */
.gallery-label {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: bold;
  background: linear-gradient(90deg, #ffffff, #ff9068);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 4px;
}
/* ---------------- */
/* FLOATING SHAPES BEHIND HERO */
/* ---------------- */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}
.hero::before {
  width: 250px; height: 250px;
  top: -50px; left: -50px;
  background: radial-gradient(circle, #ff4b1f55, transparent);
}
.hero::after {
  width: 300px; height: 300px;
  top: 50px; right: -100px;
  background: radial-gradient(circle, #2575fc55, transparent);
  animation-delay: 3s;
}

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(20px) rotate(10deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* --- BACKGROUND & CANVAS --- */
#bgParticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Keep particles BEHIND everything */
  pointer-events: none;
}

/* 1. GLOBAL SETTINGS */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  text-align: center;
  overflow-x: hidden;
  position: relative;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  background-attachment: fixed; /* Necessary for Mouse Glow */
  background-size: 200% 200%;
  animation: gradientMove 8s ease infinite;
  perspective: none;
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* 2. HERO SECTION (CENTERALIZED) */
.hero {
  padding: 120px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff4b1f, #ff9068, #2575fc, #ff4b1f);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite, pulse 2s ease-in-out infinite, heroTitle 1s ease forwards;
  /* Sharpness Fix */
  -webkit-font-smoothing: antialiased;
}

/* 3. THE GLASS MENU (STUNNING DECOR) */
.menu-card {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 40px 50px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden; /* Clips the shine sweep */
  border: 1px solid rgba(255,255,255,0.1);
}

/* The Sweep Shine Effect */
.menu-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-25deg);
  animation: sweep 6s infinite;
}

@keyframes sweep {
  0% { left: -100%; }
  20%, 100% { left: 150%; }
}

/* 4. BUTTONS */
.btn {
  padding: 24px 70px;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
  color: white;
  background: linear-gradient(45deg, #ff4b1f, #ff9068);
  border-radius: 18px;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 75, 31, 0.6);
  filter: brightness(1.2);
}

/* 5. FLOATING ICONS (NO CLUMPING) */
.float-icon {
  position: absolute; /* Keeps them spread out relative to the screen */
  font-size: 32px;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
  animation: floatIcons 6s ease-in-out infinite alternate;
}

.icon1 { top: 10%; left: 10%; }
.icon2 { top: 20%; right: 10%; }
.icon3 { bottom: 20%; left: 15%; }
.icon4 { top: 50%; left: 5%; }
.icon5 { bottom: 10%; right: 20%; }
.icon6 { top: 70%; right: 5%; }

@keyframes floatIcons {
  0% { transform: translateY(0) rotate(-10deg); }
  100% { transform: translateY(-40px) rotate(10deg); }
}

.search-container {
    max-width: 800px;
    margin: 40px auto; /* Centers it and gives it space */
    padding: 0 20px;
}

#cmdSearch {
    width: 100%;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05); /* Transparent glass look */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px; /* Rounded pill shape */
    color: white;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Glow effect when clicking into the search bar */
#cmdSearch:focus {
    border-color: #ff4b1f;
    box-shadow: 0 0 20px rgba(255, 75, 31, 0.2);
    background: rgba(255, 255, 255, 0.1);
}
/* BASE BADGE STYLE */
.badge {
  font-size: 0.65rem;
  padding: 4px 10px;
  border-radius: 6px;
  margin-right: 12px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid transparent;
}

/* ECONOMY: Deep Blue Glow */
.economy {
  background: rgba(37, 117, 252, 0.15);
  color: #2575fc;
  border-color: rgba(37, 117, 252, 0.4);
  box-shadow: 0 0 10px rgba(37, 117, 252, 0.2);
}
.action {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}
/* GAMBLING: Soul Orange Glow */
.gambling {
  background: rgba(255, 75, 31, 0.15);
  color: #ff4b1f;
  border-color: rgba(255, 75, 31, 0.4);
  box-shadow: 0 0 10px rgba(255, 75, 31, 0.2);
}

/* ADMIN: Danger Red Glow */
.admin-badge {
  background: rgba(255, 0, 0, 0.15);
  color: #ff3333;
  border-color: rgba(255, 0, 0, 0.4);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

/* UTILITY/SHOP: Purple Glow */
.utility {
  background: rgba(106, 17, 203, 0.15);
  color: #a18cd1;
  border-color: rgba(106, 17, 203, 0.4);
}
/* --- FIX FOR THE NEW LEGAL BUTTONS --- */
.legal-menu {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%; /* Ensures it spans the width of the card */
}

.legal-btn {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.legal-btn:hover {
    color: #ff9068;
    text-shadow: 0 0 8px #ff9068;
}

/* Fix for the footer legal links */
.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    margin: 0 8px;
    font-size: 0.8rem;
}
/* ----------------------------------------- */
/* TERMINAL CONSOLE ABOUT SECTION            */
/* ----------------------------------------- */
.about {
  max-width: 900px;
  margin: 100px auto;
  padding: 40px;
  background: rgba(10, 10, 15, 0.6); /* Darker "Terminal" feel */
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

/* The Glowing Top Border */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2575fc, #ff4b1f, transparent);
}

/* The "Live" Status Indicator */
.about::after {
  content: '● SYSTEM ONLINE';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 10px;
  font-family: 'Courier New', monospace;
  color: #00ff88; /* Cyber Green */
  letter-spacing: 1px;
  font-weight: bold;
  animation: statusBlink 2s step-start infinite;
}

@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.about h2 {
  margin-top: 10px;
  color: #ff9068;
  text-transform: uppercase;
  letter-spacing: 3px;
}
/* ---------------- */
/* COMMAND CARDS */
/* ---------------- */
.cmd-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 20px 28px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(30px);
  animation: cardSlide 0.6s ease forwards;
  transition: 0.25s;
}

@keyframes cardSlide {
  to { opacity: 1; transform: translateY(0); }
}

/* Specific tweak for the Commands page title */
.commands-title {
    font-size: 3.5rem !important; /* Slightly smaller than home page */
    margin-top: -40px;
}

.command-list h2 {
    margin-top: 50px;
    color: #ff9068;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(
    90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent
  );
  transform: skewX(-25deg);
  animation: sweep 6s infinite;
}

@keyframes sweep {
  0% { left: -100%; }
  20% { left: 150%; }
  100% { left: 150%; }
}
/* SUMRANDOMDUDE STYLE ENTRANCE */
@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply this to the Slider and Buttons */
.image-section, .buttons, .menu-card {
  animation: slideUpFade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0; /* Starts hidden until animation kicks in */
}

/* STAGGERED DELAYS (The secret to the "flow") */
.hero h1 { animation-delay: 0.1s; }
.hero p  { animation-delay: 0.3s; }
.buttons { animation-delay: 0.5s; }
.image-section { animation-delay: 0.7s; }
.btn:hover {
  transform: translateY(-12px) scale(1.08);
  box-shadow: 0 20px 40px rgba(255, 75, 31, 0.4);
  filter: brightness(1.2);
  /* The "Ding" effect */
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.discord-btn:hover {
  box-shadow: 0 20px 40px rgba(88, 101, 242, 0.5) !important;
}
/* ----------------------------------------- */
/* ENHANCED SCROLL INDICATOR (LOWER & BIG)   */
/* ----------------------------------------- */
.scroll-indicator {
  position: absolute;
  /* Moved to 20px to sit closer to the bottom edge */
  bottom: 15px; 
  left: 47%; 
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: heroSub 1s ease forwards;
  animation-delay: 1.2s;
  z-index: 5;
}

.mouse {
  width: 35px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  position: relative;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.wheel {
  width: 6px;
  height: 10px;
  background: white;
  border-radius: 3px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 25px); }
}

.scroll-text {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.8;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
/* ----------------------------------------- */
/* CYBER-PULSE BACKDROP                      */
/* ----------------------------------------- */
.image-section::before, 
.image-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  z-index: -1; /* Sits behind the images */
  filter: blur(80px); /* Creates the soft glow effect */
  opacity: 0.4;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

/* The Blue Orb (Top Left) */
.image-section::before {
  top: 10%;
  left: 10%;
  background: radial-gradient(circle, #2575fc, transparent);
}

/* The Orange Orb (Bottom Right) */
.image-section::after {
  bottom: 10%;
  right: 10%;
  background: radial-gradient(circle, #ff4b1f, transparent);
  animation-delay: -4s; /* Offsets the pulse for a natural look */
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
  50% { transform: scale(1.2) translate(20px, -20px); opacity: 0.5; }
  100% { transform: scale(1) translate(0, 0); opacity: 0.3; }
}
/* ----------------------------------------- */
/* GLITCH HEADING EFFECT                     */
/* ----------------------------------------- */
.about h2, .gallery-label {
  position: relative;
  display: inline-block;
  transition: color 0.3s;
}

.about h2:hover, .gallery-label:hover {
  animation: textGlitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes textGlitch {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); color: #ff4b1f; }
  40% { transform: translate(-2px, -2px); color: #2575fc; }
  60% { transform: translate(2px, 2px); color: #ff4b1f; }
  80% { transform: translate(2px, -2px); color: #2575fc; }
  100% { transform: translate(0); }
}

/* Optional: Add a "Scanline" effect to the About box */
.about::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
              linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
  background-size: 100% 4px, 3px 100%;
  pointer-events: none; /* Let clicks pass through */
  z-index: 1;
}
/* ----------------------------------------- */
/* EXTREME SYSTEM MALFUNCTION GLITCH         */
/* ----------------------------------------- */
.glitch-word {
  display: inline-block;
  color: #fff;
  font-weight: 900;
  position: relative;
  /* Shaking + Fading + Color Flicker */
  animation: 
    extremeShake 0.1s infinite, 
    glitchFadeIn 0.5s ease-out forwards,
    colorFlicker 0.2s infinite;
  
  /* The "RGB Split" effect */
  text-shadow: 2px 0 #ff4b1f, -2px 0 #2575fc;
}

/* VIOLENT SHAKE */
@keyframes extremeShake {
  0% { transform: translate(0); }
  25% { transform: translate(-3px, 3px); }
  50% { transform: translate(3px, -3px); }
  75% { transform: translate(-3px, -3px); }
  100% { transform: translate(3px, 3px); }
}

/* FADE IN FROM NOTHING */
@keyframes glitchFadeIn {
  from { opacity: 0; filter: blur(10px); }
  to { opacity: 1; filter: blur(0); }
}

/* RAPID COLOR FLICKER */
@keyframes colorFlicker {
  0% { text-shadow: 2px 0 #ff4b1f, -2px 0 #2575fc; }
  50% { text-shadow: -3px 0 #2575fc, 3px 0 #ff4b1f; filter: hue-rotate(90deg); }
  100% { text-shadow: 2px 0 #ff4b1f, -2px 0 #2575fc; }
}
/* ----------------------------------------- */
/* CUSTOM SOUL CURSOR - FINAL VERSION        */
/* ----------------------------------------- */

/* 1. Hide the real mouse cursor everywhere */
html, body {
  cursor: none !important;
}

/* 2. Shared Properties for both cursor parts */
.cursor-dot, .cursor-outline {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  /* REMOVE top: 0 and left: 0 from here */
}

/* 3. The Center White Dot */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #fff;
  /* Centering: half of width (8/2 = 4) */
  margin-left: -4px; 
  margin-top: -4px;
  box-shadow: 0 0 10px #fff, 0 0 20px #2575fc;
}

/* 4. The Outer Orange Ring */
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid #ff4b1f;
  /* Centering: half of width (40/2 = 20) */
  margin-left: -20px;
  margin-top: -20px;
  /* Creates the smooth "Soul" following effect */
  transition: transform 0.1s ease-out, border-color 0.3s ease; 
}

/* 5. Animation when you click something */
/* We use 'scale' only so it doesn't fight the JavaScript movement */
/* Animation when you click something */
.cursor-clicked.cursor-dot {
  /* No transform! Only scale and color */
  scale: 0.5; 
  background-color: #ff4b1f;
}

.cursor-clicked.cursor-outline {
  /* No transform! Only scale and color */
  scale: 1.4;
  border-color: #fff;
}
/* Centers the command list nicely */
.command-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Styling for the Admin Section Header */
.admin-header {
  margin-top: 60px;
  margin-bottom: 30px;
  color: #ff4b1f;
  text-shadow: 0 0 10px rgba(255, 75, 31, 0.5);
  font-size: 2rem;
}

/* Makes Admin cards stand out with a subtle red tint */
.cmd-card.admin {
  border-left: 5px solid #ff4b1f;
  background: rgba(255, 75, 31, 0.05);
}
/* ----------------------------------------- */
/* CYBER-SCANLINE OVERLAY                    */
/* ----------------------------------------- */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Creates the horizontal line pattern */
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%, 
        rgba(0, 0, 0, 0.1) 50%
    ), 
    linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.02));
    background-size: 100% 4px, 3px 100%;
    z-index: 999; /* Sits just below the cursor but above everything else */
    pointer-events: none; /* VERY IMPORTANT: lets you click through it */
}

/* The moving "sweep" line */
.scanlines::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(37, 117, 252, 0.05), transparent);
    animation: scanlineSweep 8s linear infinite;
}

@keyframes scanlineSweep {
    0% { top: -100px; }
    100% { top: 100%; }
}
/* ----------------------------------------- */
/* MOBILE RESPONSIVENESS                     */
/* ----------------------------------------- */
@media screen and (max-width: 768px) {
    /* 1. Shrink the Hero section so it doesn't take the whole screen */
    .commands-title {
        font-size: 2.2rem !important;
        margin-top: 20px;
    }

    .commands-sub {
        font-size: 0.9rem;
        padding: 0 20px;
    }

    /* 2. Adjust the Search Bar */
    .search-container {
        margin: 20px auto;
    }
    
    #cmdSearch {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* 3. Make the Cards fit small screens */
    .cmd-card {
        padding: 15px;
        font-size: 14px; /* Smaller text for long descriptions */
        margin-bottom: 10px;
        border-radius: 10px;
    }

    /* 4. Handle the Badge positioning */
    .badge {
        font-size: 0.6rem;
        padding: 2px 6px;
        margin-bottom: 5px; /* Put badge above the command on mobile */
        display: block; 
        width: fit-content;
    }

    /* 5. Fix the Admin Header */
    .admin-header {
        font-size: 1.5rem;
        letter-spacing: 5px;
        margin-top: 40px;
    }

    /* 6. Back Button adjustment */
    .btn {
        width: 100%; /* Full width button is easier to tap with thumbs */
        text-align: center;
    }

    /* 7. Hide the custom cursor on mobile (it's buggy with touch) */
    .cursor-dot, .cursor-outline {
        display: none !important;
    }
    
    * {
        cursor: auto !important; /* Bring back the default touch cursor */
    }
}
/* ---------------- */
/* FOOTER */
/* ---------------- */
footer {
  margin-top: 80px;
  padding: 20px;
  background: rgba(0,0,0,0.25);
  font-size: 0.9rem;
  position: relative;
}

.back-to-top {
  display: block;
  margin-top: 10px;
  color: white;
  text-decoration: none;
  opacity: 0.8;
}
.back-to-top:hover {
  opacity: 1;
  text-shadow: 0 0 10px #fff;
}
