:root {
  --aurora-cyan: #00fff7;
  --frozen-violet: #6e44ff;
  --shadow-black: #0b0e1c;
  --mystic-gray: #1a1f2e;
  --runic-gold: #f9cc00;
  --glass-bg: rgba(26, 31, 46, 0.3);
  --glass-border: rgba(0, 255, 247, 0.2);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--shadow-black);
  color: #ffffff;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

/* Enhanced Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, var(--mystic-gray), var(--shadow-black));
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vault-loader {
  text-align: center;
  animation: loaderPulse 2s ease-in-out infinite;
}

.runic-circle {
  width: 100px;
  height: 100px;
  border: 4px solid transparent;
  border-top: 4px solid var(--aurora-cyan);
  border-right: 4px solid var(--runic-gold);
  border-bottom: 4px solid var(--frozen-violet);
  border-radius: 50%;
  animation: enhancedSpin 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  margin: 0 auto 20px;
  box-shadow: 
    0 0 30px var(--aurora-cyan),
    inset 0 0 30px rgba(0, 255, 247, 0.3);
  position: relative;
}

.runic-circle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  border: 2px solid var(--runic-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: counterSpin 1.5s linear infinite;
}

.loading-text {
  color: var(--aurora-cyan);
  font-size: 1.4rem;
  font-weight: 600;
  animation: textGlow 2s ease-in-out infinite alternate;
  text-shadow: 0 0 20px var(--aurora-cyan);
}

@keyframes enhancedSpin {
  0% { 
    transform: rotate(0deg) scale(1);
    filter: hue-rotate(0deg);
  }
  50% { 
    transform: rotate(180deg) scale(1.1);
    filter: hue-rotate(180deg);
  }
  100% { 
    transform: rotate(360deg) scale(1);
    filter: hue-rotate(360deg);
  }
}

@keyframes counterSpin {
  0% { transform: translate(-50%, -50%) rotate(360deg); }
  100% { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes textGlow {
  from { 
    text-shadow: 0 0 20px var(--aurora-cyan);
    transform: translateY(0px);
  }
  to { 
    text-shadow: 0 0 40px var(--aurora-cyan), 0 0 60px var(--runic-gold);
    transform: translateY(-5px);
  }
}

/* Enhanced Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 25px;
  height: 25px;
  background: radial-gradient(circle, var(--aurora-cyan) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: cursorPulse 2s ease-in-out infinite;
}

.cursor-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--runic-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.8;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: trailFloat 3s ease-in-out infinite;
}

@keyframes cursorPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 20px var(--aurora-cyan);
  }
  50% { 
    transform: scale(1.2);
    box-shadow: 0 0 40px var(--aurora-cyan), 0 0 60px var(--runic-gold);
  }
}

@keyframes trailFloat {
  0%, 100% { transform: scale(1) rotate(0deg); }
  33% { transform: scale(1.1) rotate(120deg); }
  66% { transform: scale(0.9) rotate(240deg); }
}

/* Enhanced Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 6px;
  background: linear-gradient(90deg, var(--aurora-cyan), var(--runic-gold), var(--frozen-violet));
  z-index: 9997;
  transition: width 0.1s ease;
  box-shadow: 0 0 20px rgba(0, 255, 247, 0.6);
  animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 247, 0.6); }
  50% { box-shadow: 0 0 30px rgba(0, 255, 247, 0.8), 0 0 40px rgba(249, 204, 0, 0.4); }
}

/* Enhanced Aurora Background */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.aurora-layer {
  position: absolute;
  width: 120%;
  height: 120%;
  opacity: 0.6;
  filter: blur(2px);
}

.layer1 {
  background: linear-gradient(45deg, transparent 30%, var(--aurora-cyan) 50%, transparent 70%);
  animation: enhancedAurora1 12s ease-in-out infinite;
}

.layer2 {
  background: linear-gradient(-45deg, transparent 20%, var(--frozen-violet) 60%, transparent 80%);
  animation: enhancedAurora2 15s ease-in-out infinite;
}

.layer3 {
  background: radial-gradient(ellipse at center, transparent 40%, var(--runic-gold) 60%, transparent 80%);
  animation: enhancedAurora3 18s ease-in-out infinite;
}

@keyframes enhancedAurora1 {
  0%, 100% { 
    transform: translateX(-20%) translateY(-10%) rotate(0deg) scale(0.8);
    opacity: 0.4;
  }
  33% { 
    transform: translateX(10%) translateY(5%) rotate(120deg) scale(1.1);
    opacity: 0.7;
  }
  66% { 
    transform: translateX(30%) translateY(-5%) rotate(240deg) scale(0.9);
    opacity: 0.5;
  }
}

@keyframes enhancedAurora2 {
  0%, 100% { 
    transform: translateY(-30%) translateX(10%) rotate(0deg) scale(1.2);
    opacity: 0.3;
  }
  50% { 
    transform: translateY(20%) translateX(-20%) rotate(180deg) scale(0.8);
    opacity: 0.6;
  }
}

@keyframes enhancedAurora3 {
  0%, 100% { 
    transform: translate(-10%, -10%) scale(0.7) rotate(0deg);
    opacity: 0.5;
  }
  25% { 
    transform: translate(20%, 10%) scale(1.3) rotate(90deg);
    opacity: 0.3;
  }
  50% { 
    transform: translate(-5%, 25%) scale(1.1) rotate(180deg);
    opacity: 0.7;
  }
  75% { 
    transform: translate(15%, -15%) scale(0.9) rotate(270deg);
    opacity: 0.4;
  }
}

/* Enhanced Particles */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--aurora-cyan);
  border-radius: 50%;
  animation: enhancedFloat 8s linear infinite;
  box-shadow: 0 0 10px var(--aurora-cyan);
}

@keyframes enhancedFloat {
  0% {
    transform: translateY(100vh) translateX(0px) scale(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) translateX(10px) scale(0.5) rotate(36deg);
  }
  50% {
    transform: translateY(50vh) translateX(-20px) scale(1) rotate(180deg);
    opacity: 0.8;
  }
  90% {
    opacity: 1;
    transform: translateY(10vh) translateX(30px) scale(0.7) rotate(324deg);
  }
  100% {
    transform: translateY(-10vh) translateX(0px) scale(0) rotate(360deg);
    opacity: 0;
  }
}

/* Enhanced Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 14, 28, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 2px solid var(--glass-border);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: headerFloat 6s ease-in-out infinite;
}

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

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  animation: brandPulse 4s ease-in-out infinite;
}

@keyframes brandPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.logo-rune {
  color: var(--runic-gold);
  animation: runeRotate 8s linear infinite;
  text-shadow: 0 0 20px var(--runic-gold);
}

@keyframes runeRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.brand-text {
  color: var(--aurora-cyan);
  text-shadow: 0 0 15px var(--aurora-cyan);
}

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

.nav-link {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--aurora-cyan);
  background: rgba(0, 255, 247, 0.1);
  transform: translateY(-2px);
  text-shadow: 0 0 15px var(--aurora-cyan);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aurora-cyan), var(--runic-gold));
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
  box-shadow: 0 0 10px var(--aurora-cyan);
}

/* Enhanced Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 2rem 0;
  animation: heroBreath 8s ease-in-out infinite;
}

@keyframes heroBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.hero-content {
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: contentRise 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
  transform: translateY(50px);
}

@keyframes contentRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.title-line {
  display: block;
  opacity: 0;
  animation: titleWave 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.title-line:nth-child(2) {
  animation-delay: 0.5s;
}

.mystic-text {
  background: linear-gradient(45deg, var(--aurora-cyan), var(--runic-gold), var(--frozen-violet));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes titleWave {
  0% {
    opacity: 0;
    transform: translateY(30px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

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

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: subtitleFade 1.5s ease forwards 1s;
}

@keyframes subtitleFade {
  to {
    opacity: 0.9;
  }
}

.cta-button {
  background: linear-gradient(45deg, var(--aurora-cyan), var(--frozen-violet));
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: buttonAppear 1s ease forwards 1.5s;
  box-shadow: 0 10px 30px rgba(0, 255, 247, 0.3);
}

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

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 255, 247, 0.5);
  background: linear-gradient(45deg, var(--runic-gold), var(--aurora-cyan));
}

.button-text {
  margin-right: 0.5rem;
}

.button-rune {
  display: inline-block;
  animation: runeFloat 3s ease-in-out infinite;
}

@keyframes runeFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-3px) rotate(90deg); }
  50% { transform: translateY(-5px) rotate(180deg); }
  75% { transform: translateY(-3px) rotate(270deg); }
}

/* Enhanced Floating Animals */
.hero-animals {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-animal {
  position: absolute;
  font-size: 3rem;
  animation: animalOrbit 25s linear infinite;
  filter: drop-shadow(0 0 20px rgba(0, 255, 247, 0.5));
}

.tiger {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.elephant {
  top: 60%;
  right: 15%;
  animation-delay: -8s;
}

.parrot {
  top: 30%;
  right: 20%;
  animation-delay: -16s;
}

@keyframes animalOrbit {
  0% { 
    transform: rotate(0deg) translateX(200px) rotate(0deg) scale(1);
    filter: drop-shadow(0 0 20px rgba(0, 255, 247, 0.5));
  }
  25% { 
    transform: rotate(90deg) translateX(200px) rotate(-90deg) scale(1.1);
    filter: drop-shadow(0 0 30px rgba(249, 204, 0, 0.7));
  }
  50% { 
    transform: rotate(180deg) translateX(200px) rotate(-180deg) scale(0.9);
    filter: drop-shadow(0 0 25px rgba(110, 68, 255, 0.6));
  }
  75% { 
    transform: rotate(270deg) translateX(200px) rotate(-270deg) scale(1.05);
    filter: drop-shadow(0 0 35px rgba(0, 255, 247, 0.8));
  }
  100% { 
    transform: rotate(360deg) translateX(200px) rotate(-360deg) scale(1);
    filter: drop-shadow(0 0 20px rgba(0, 255, 247, 0.5));
  }
}

/* Enhanced Game Cards */
.games-section {
  padding: 6rem 0;
  background: rgba(26, 31, 46, 0.5);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--aurora-cyan);
  animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
  0%, 100% { 
    text-shadow: 0 0 20px var(--aurora-cyan);
    transform: scale(1);
  }
  50% { 
    text-shadow: 0 0 40px var(--aurora-cyan), 0 0 60px var(--runic-gold);
    transform: scale(1.02);
  }
}

.title-rune {
  color: var(--runic-gold);
  margin: 0 1rem;
  animation: runeSparkle 3s ease-in-out infinite;
}

@keyframes runeSparkle {
  0%, 100% { 
    text-shadow: 0 0 15px var(--runic-gold);
    transform: rotate(0deg);
  }
  50% { 
    text-shadow: 0 0 30px var(--runic-gold), 0 0 40px var(--aurora-cyan);
    transform: rotate(180deg);
  }
}

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

.game-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(15px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: cardFloat 6s ease-in-out infinite;
}

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

.card-glow {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, var(--aurora-cyan), var(--runic-gold), var(--frozen-violet), var(--aurora-cyan));
  background-size: 400% 400%;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  animation: gradientRotate 4s linear infinite;
}

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

.game-card:hover .card-glow {
  opacity: 0.8;
}

.game-card:hover {
  transform: translateY(-15px) scale(1.03) rotateY(5deg);
  box-shadow: 0 25px 60px rgba(0, 255, 247, 0.4);
  border-color: var(--aurora-cyan);
}

.game-image {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  animation: imageFloat 8s ease-in-out infinite;
  transition: all 0.4s ease;
}

@keyframes imageFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    filter: brightness(1);
  }
  25% { 
    transform: translateY(-8px) rotate(1deg);
    filter: brightness(1.1);
  }
  50% { 
    transform: translateY(-12px) rotate(0deg);
    filter: brightness(1.2);
  }
  75% { 
    transform: translateY(-8px) rotate(-1deg);
    filter: brightness(1.1);
  }
}

.game-card:hover .game-image {
  transform: scale(1.05) rotateY(10deg);
  filter: brightness(1.3) saturate(1.2);
}

.game-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--aurora-cyan);
  text-align: center;
  animation: titleShimmer 3s ease-in-out infinite;
}

@keyframes titleShimmer {
  0%, 100% { text-shadow: 0 0 10px var(--aurora-cyan); }
  50% { text-shadow: 0 0 20px var(--aurora-cyan), 0 0 30px var(--runic-gold); }
}

.game-animals {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 1rem;
  animation: animalDance 4s ease-in-out infinite;
}

@keyframes animalDance {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(5deg); }
  50% { transform: scale(1.05) rotate(0deg); }
  75% { transform: scale(1.1) rotate(-5deg); }
}

/* Enhanced Features Section */
.features-section {
  padding: 6rem 0;
}

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

.feature-card {
  text-align: center;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  backdrop-filter: blur(15px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: featureFloat 7s ease-in-out infinite;
}

@keyframes featureFloat {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  50% { transform: translateY(-8px) rotateY(2deg); }
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--aurora-cyan);
  box-shadow: 0 20px 50px rgba(0, 255, 247, 0.3);
  background: rgba(26, 31, 46, 0.6);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: iconSpin 6s ease-in-out infinite;
  filter: drop-shadow(0 0 20px var(--aurora-cyan));
}

@keyframes iconSpin {
  0%, 100% { 
    transform: rotate(0deg) scale(1);
    filter: drop-shadow(0 0 20px var(--aurora-cyan));
  }
  25% { 
    transform: rotate(90deg) scale(1.1);
    filter: drop-shadow(0 0 30px var(--runic-gold));
  }
  50% { 
    transform: rotate(180deg) scale(1.05);
    filter: drop-shadow(0 0 25px var(--frozen-violet));
  }
  75% { 
    transform: rotate(270deg) scale(1.1);
    filter: drop-shadow(0 0 30px var(--aurora-cyan));
  }
}

/* Enhanced Footer */
.footer {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2rem;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(0, 255, 247, 0.2),
    rgba(0, 255, 247, 0.5),
    rgba(0, 255, 247, 0.2),
    transparent
  );
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  text-align: left;
}

.footer-logo {
  font-size: 2rem;
  color: #00fff7;
  text-shadow: 0 0 15px rgba(0, 255, 247, 0.3);
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.footer-tagline {
  color: #fff;
  font-size: 1.1rem;
  opacity: 0.8;
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-links-column h4 {
  color: #00fff7;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 255, 247, 0.2);
}

.footer-links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-column ul li {
  margin-bottom: 0.8rem;
}

.footer-links-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1.2rem;
}

.footer-links-column ul li a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-links-column ul li a:hover {
  opacity: 1;
  color: #00fff7;
  padding-left: 1.5rem;
}

.footer-links-column ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-social {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 255, 247, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 255, 247, 0.2);
}

.social-icon:hover {
  transform: translateY(-5px);
  background: rgba(0, 255, 247, 0.2);
  box-shadow: 0 5px 15px rgba(0, 255, 247, 0.2);
}

.social-icon .icon {
  font-size: 1.5rem;
}

.footer-bottom {
  text-align: center;
}

.footer-disclaimer {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(0, 255, 247, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 247, 0.1);
}

.footer-disclaimer p {
  color: #fff;
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

.copyright {
  color: #fff;
  font-size: 1rem;
  margin: 0;
  opacity: 0.7;
}

.crown {
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

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

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links-column ul li a {
    padding-left: 0;
  }

  .footer-links-column ul li a::before {
    display: none;
  }

  .social-icons {
    gap: 1rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon .icon {
    font-size: 1.2rem;
  }
}

/* Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Enhanced High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --aurora-cyan: #00ffff;
    --frozen-violet: #8080ff;
    --runic-gold: #ffff00;
  }
}

/* Enhanced Print Styles */
@media print {
  .aurora-bg,
  .custom-cursor,
  .cursor-trail,
  .loading-screen,
  .particles {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

.brand-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-link:hover {
    opacity: 0.9;
}

.about-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-rune {
    font-size: 2rem;
    color: #00fff7;
    text-shadow: 0 0 10px rgba(0, 255, 247, 0.5);
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 255, 247, 0.3);
    margin: 0;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-text-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 255, 247, 0.1);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 247, 0.1);
    border-color: rgba(0, 255, 247, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    color: #00fff7;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 247, 0.3);
}

.feature-item p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 3rem auto 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-text {
        font-size: 1.1rem;
    }
}

.disclaimer-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    position: relative;
    overflow: hidden;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.disclaimer-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.disclaimer-icon {
    font-size: 2.5rem;
    animation: pulse 2s infinite;
}

.disclaimer-title {
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 255, 247, 0.3);
    margin: 0;
    font-weight: 700;
    letter-spacing: 2px;
}

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

.disclaimer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 247, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.disclaimer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00fff7, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.disclaimer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 247, 0.1);
    border-color: rgba(0, 255, 247, 0.3);
}

.disclaimer-card:hover::before {
    opacity: 1;
}

.disclaimer-icon-container {
    width: 70px;
    height: 70px;
    background: rgba(0, 255, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(0, 255, 247, 0.2);
}

.disclaimer-feature-icon {
    font-size: 2rem;
}

.disclaimer-card h3 {
    color: #00fff7;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 247, 0.3);
}

.disclaimer-card p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.disclaimer-footer {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0, 255, 247, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 247, 0.1);
}

.disclaimer-footer p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.disclaimer-link {
    color: #00fff7;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.disclaimer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #00fff7;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.disclaimer-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 255, 247, 0.5);
}

.disclaimer-link:hover::after {
    transform: scaleX(1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .disclaimer-text-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 3rem;
    }

    .disclaimer-title {
        font-size: 1.8rem;
    }

    .disclaimer-footer {
        padding: 1.5rem;
    }

    .disclaimer-footer p {
        font-size: 1rem;
    }
}