/* =========================================================================
   Premium Korean Luxurious Design
   Global Environmental & Korean Grand Awards 2026
   ========================================================================= */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Noto+Serif+KR:wght@400;600;700;900&display=swap");

:root {
  /* Color Palette - Luxury Korean Theme */
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-tertiary: #050810;

  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;

  /* Korean accent — deep burgundy/red */
  --korean-red: #8b1a1a;
  --korean-red-light: #c53030;
  --korean-red-glow: rgba(139, 26, 26, 0.3);

  --text-main: #ffffff;
  --text-muted: #d1d5db;
  --text-light: #9ca3af;

  /* Gradients */
  --gold-gradient: linear-gradient(
    135deg,
    var(--amber-400) 0%,
    var(--amber-600) 100%
  );
  --gold-text-gradient: linear-gradient(
    to right,
    var(--amber-200),
    var(--amber-400),
    var(--amber-200)
  );
  --dark-gradient: linear-gradient(
    to bottom right,
    rgba(30, 41, 59, 0.9),
    rgba(15, 23, 42, 0.9)
  );
  --luxury-gradient: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    #1a1025 50%,
    var(--bg-primary) 100%
  );
  --korean-gradient: linear-gradient(
    135deg,
    var(--amber-400),
    var(--korean-red-light),
    var(--amber-500)
  );

  /* Shadows & Glassmorphism */
  --glass-bg: rgba(30, 41, 59, 0.7);
  --glass-border: 1px solid rgba(251, 191, 36, 0.2);
  --shadow-gold:
    0 10px 25px -5px rgba(251, 191, 36, 0.15),
    0 8px 10px -6px rgba(251, 191, 36, 0.1);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.5);
  --shadow-luxury:
    0 20px 60px -15px rgba(251, 191, 36, 0.2), 0 0 40px rgba(139, 26, 26, 0.1);

  /* Fonts */
  --font-sans: "Inter", sans-serif;
  --font-serif: "Playfair Display", serif;
  --font-korean: "Noto Serif KR", serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

.text-gradient {
  background: var(--gold-text-gradient);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

.text-amber {
  color: var(--amber-400);
}
.text-muted {
  color: var(--text-muted);
}
.text-light {
  color: var(--text-light);
}

/* Korean Subtitle Styling */
.korean-subtitle {
  font-family: var(--font-korean);
  color: rgba(251, 191, 36, 0.5);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 4px;
  margin-top: 0.5rem;
  opacity: 0.7;
}

/* ================================================================
   Korean Lattice Pattern Overlay
   ================================================================ */
.korean-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(251, 191, 36, 0.3) 40px,
      rgba(251, 191, 36, 0.3) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(251, 191, 36, 0.3) 40px,
      rgba(251, 191, 36, 0.3) 41px
    );
}

/* Korean Decorative Divider */
.korean-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
  position: relative;
}

.korean-divider::before,
.korean-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 200px;
  background: linear-gradient(
    to right,
    transparent,
    var(--amber-400),
    transparent
  );
}

.korean-divider-symbol {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(251, 191, 36, 0.4);
  transform: rotate(45deg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateGlow 8s linear infinite;
}

.korean-divider-symbol::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  transform: rotate(0deg);
}

/* Corner ornaments for cards */
.ornament-card {
  position: relative;
  overflow: hidden;
}

.ornament-card::before,
.ornament-card::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(251, 191, 36, 0.15);
  pointer-events: none;
  transition: all 0.5s ease;
  z-index: 2;
}

.ornament-card::before {
  top: 12px;
  left: 12px;
  border-right: none;
  border-bottom: none;
}

.ornament-card::after {
  bottom: 12px;
  right: 12px;
  border-left: none;
  border-top: none;
}

.ornament-card:hover::before,
.ornament-card:hover::after {
  width: 60px;
  height: 60px;
  border-color: rgba(251, 191, 36, 0.4);
}

/* ================================================================
   Layout & Containers
   ================================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Radial Background Accents */
.bg-glow-left {
  position: absolute;
  top: 50%;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(218, 165, 32, 0.08) 0%,
    transparent 70%
  );
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-right {
  position: absolute;
  top: 50%;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(184, 134, 11, 0.08) 0%,
    transparent 70%
  );
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

/* ================================================================
   Navigation
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: var(--glass-border);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(251, 191, 36, 0.05);
  padding: 0.5rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s ease;
}

.nav-logo:hover .logo-icon {
  transform: scale(1.1);
}

.logo-text p {
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
}

.logo-text span {
  color: var(--amber-400);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a.nav-item {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a.nav-item::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.nav-links a.nav-item:hover {
  color: var(--amber-400);
}

.nav-links a.nav-item:hover::after {
  width: 100%;
}

/* Buttons */
.btn-primary {
  background: var(--gold-gradient);
  color: var(--bg-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 15px 40px -5px rgba(251, 191, 36, 0.4),
    0 0 20px rgba(251, 191, 36, 0.2);
}

/* Ripple effect container */
.btn-primary .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple-effect 0.6s ease-out forwards;
  pointer-events: none;
}

.btn-outline {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 2px solid var(--amber-600);
  color: var(--amber-400);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-outline:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: var(--amber-400);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--amber-400);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 0;
  gap: 1rem;
  animation: fadeIn 0.3s ease;
}

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* ================================================================
   Hero Section
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--luxury-gradient);
}

/* Particle canvas */
#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-icon-wrapper {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-icon {
  width: 130px;
  height: 130px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--amber-300);
  box-shadow:
    0 0 60px rgba(251, 191, 36, 0.5),
    0 0 120px rgba(251, 191, 36, 0.2);
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.hero-icon-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gold-gradient);
  border-radius: 50%;
  filter: blur(25px);
  animation: pulse 3s infinite;
  z-index: 1;
}

/* Decorative ring around hero icon */
.hero-icon-wrapper::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px dashed rgba(251, 191, 36, 0.3);
  border-radius: 50%;
  animation: spin 20s linear infinite;
  z-index: 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease backwards;
}

/* Korean subtitle under hero title */
.hero-korean-title {
  font-family: var(--font-korean);
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(251, 191, 36, 0.5);
  letter-spacing: 6px;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-details {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  color: var(--text-light);
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-details div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    padding: 0 2rem;
  }
  .hero-details {
    flex-direction: column;
    gap: 1rem;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(251, 191, 36, 0.5);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  animation: bounce 2s infinite;
  z-index: 10;
}

.scroll-dot {
  width: 4px;
  height: 12px;
  background: var(--amber-400);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

/* ================================================================
   Scroll Reveal Animation System
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delay utilities */
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}
.delay-6 {
  transition-delay: 0.6s;
}

/* ================================================================
   Glass Cards — Premium Upgrade
   ================================================================ */
.glass-card {
  background: var(--dark-gradient);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  position: relative;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
  border-color: rgba(251, 191, 36, 0.4);
}

.glass-card-sm {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(251, 191, 36, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Card glow on hover */
.glass-card-sm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(251, 191, 36, 0.08) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
}

.glass-card-sm:hover::before {
  opacity: 1;
}

.glass-card-sm:hover {
  border-color: rgba(251, 191, 36, 0.35);
  transform: translateY(-5px);
  background: rgba(30, 41, 59, 0.8);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.3),
    0 0 15px rgba(251, 191, 36, 0.1);
}

/* ================================================================
   Section Titles
   ================================================================ */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.title-decorator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.title-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--amber-400));
}

.title-line.right {
  background: linear-gradient(to left, transparent, var(--amber-400));
}

/* ================================================================
   Specific Sections
   ================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.icon-box {
  color: var(--amber-400);
  margin-bottom: 1rem;
}

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

.theme-box {
  background: linear-gradient(
    to right,
    rgba(251, 191, 36, 0.05),
    rgba(245, 158, 11, 0.1),
    rgba(251, 191, 36, 0.05)
  );
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Animated border glow on theme box */
.theme-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(251, 191, 36, 0.2) 50%,
    transparent 70%
  );
  background-size: 300% 300%;
  border-radius: 26px;
  z-index: -1;
  animation: borderGlow 4s ease-in-out infinite;
}

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

.award-list {
  list-style: none;
  margin-top: 1.5rem;
}

.award-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.4s ease;
}

.award-list li.revealed {
  opacity: 1;
  transform: translateX(0);
}

.award-list li::before {
  content: "◆";
  color: var(--amber-400);
  font-size: 0.5rem;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ================================================================
   Animated Counter
   ================================================================ */
.counter-value {
  font-family: var(--font-korean);
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber-300);
  display: inline-block;
}

/* ================================================================
   Forms
   ================================================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-label-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: normal;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 12px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--amber-400);
  box-shadow:
    0 0 0 3px rgba(251, 191, 36, 0.15),
    0 0 20px rgba(251, 191, 36, 0.1);
  background: rgba(15, 23, 42, 0.7);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #fca5a5;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #86efac;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

/* ================================================================
   Verify Section
   ================================================================ */
.search-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.search-bar .form-control {
  padding: 1rem 1.5rem;
  border-radius: 16px;
  font-size: 1.125rem;
}

.verify-btn {
  padding: 0 2rem;
  border-radius: 16px;
}

@media (max-width: 640px) {
  .search-bar {
    flex-direction: column;
  }
  .verify-btn {
    padding: 1rem;
  }
}

.cert-card {
  border: 2px solid rgba(74, 222, 128, 0.3);
  box-shadow: 0 10px 25px rgba(74, 222, 128, 0.1);
}

.cert-not-found {
  border: 2px solid rgba(248, 113, 113, 0.3);
  box-shadow: 0 10px 25px rgba(248, 113, 113, 0.1);
}

/* ================================================================
   Admin Dashboard Elements
   ================================================================ */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--dark-gradient);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.stat-card.blue {
  border-color: rgba(96, 165, 250, 0.2);
}
.stat-card.green {
  border-color: rgba(74, 222, 128, 0.2);
}
.stat-card.red {
  border-color: rgba(248, 113, 113, 0.2);
}

.table-container {
  overflow-x: auto;
  background: var(--dark-gradient);
  border-radius: 24px;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem 1.5rem;
  text-align: left;
}

th {
  background: rgba(15, 23, 42, 0.5);
  color: var(--amber-400);
  font-weight: 600;
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

tr {
  border-bottom: 1px solid rgba(251, 191, 36, 0.1);
  transition: background 0.2s ease;
}

tr:hover {
  background: rgba(30, 41, 59, 0.5);
}
tr:last-child {
  border-bottom: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-pending {
  background: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
}
.badge-approved {
  background: rgba(74, 222, 128, 0.2);
  color: #4ade80;
}
.badge-rejected {
  background: rgba(248, 113, 113, 0.2);
  color: #f87171;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: var(--dark-gradient);
  border-radius: 24px;
  padding: 2rem;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* ================================================================
   Animations
   ================================================================ */
@keyframes shimmer {
  0%,
  100% {
    background-position: -200% 0;
  }
  50% {
    background-position: 200% 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

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

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(16px);
    opacity: 0;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateGlow {
  0% {
    transform: rotate(45deg);
    border-color: rgba(251, 191, 36, 0.4);
  }
  50% {
    border-color: rgba(251, 191, 36, 0.8);
  }
  100% {
    transform: rotate(405deg);
    border-color: rgba(251, 191, 36, 0.4);
  }
}

@keyframes borderGlow {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
  }
  50% {
    box-shadow:
      0 0 40px rgba(251, 191, 36, 0.4),
      0 0 80px rgba(251, 191, 36, 0.1);
  }
}

/* ================================================================
   Footer
   ================================================================ */
footer {
  background: var(--bg-tertiary);
  border-top: 1px solid rgba(251, 191, 36, 0.2);
  padding: 2rem 0;
  text-align: center;
  color: var(--text-light);
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--amber-400),
    transparent
  );
}

/* ================================================================
   Scrollbar
   ================================================================ */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-gradient);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--amber-500), #92400e);
}

/* ================================================================
   Extra Luxury Touches
   ================================================================ */
/* Vignette overlay on hero */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(5, 8, 16, 0.6) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Text shadow for headings */
.section-title h2 {
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.15);
}

/* Subtle parallax depth for sections */
section:nth-child(even) {
  background-color: var(--bg-secondary);
}

section:nth-child(even)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(251, 191, 36, 0.02) 60px,
      rgba(251, 191, 36, 0.02) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(251, 191, 36, 0.02) 60px,
      rgba(251, 191, 36, 0.02) 61px
    );
  pointer-events: none;
}
