/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color System */
  --primary: #8B0000;      /* Deep Burgundy */
  --primary-light: #A52A2A; /* Lighter Burgundy */
  --primary-dark: #5D0000;  /* Darker Burgundy */
  
  --secondary: #FFD700;     /* Royal Gold */
  --secondary-light: #FFF8DC; /* Light Gold */
  --secondary-dark: #DAA520; /* Dark Gold */
  
  --accent: #4682B4;        /* Steel Blue */
  --accent-light: #87CEEB;  /* Light Steel Blue */
  --accent-dark: #2F4F4F;   /* Dark Slate Gray */
  
  --success: #228B22;       /* Forest Green */
  --warning: #FF8C00;       /* Dark Orange */
  --error: #DC143C;         /* Crimson */
  
  --neutral-100: #F8F9FA;   /* Near White */
  --neutral-200: #E9ECEF;   /* Light Gray */
  --neutral-300: #DEE2E6;   /* Gray */
  --neutral-400: #CED4DA;   /* Medium Gray */
  --neutral-500: #6C757D;   /* Dark Gray */
  --neutral-600: #495057;   /* Darker Gray */
  --neutral-700: #343A40;   /* Dark Charcoal */
  --neutral-800: #212529;   /* Near Black */
  --neutral-900: #000000;   /* Black */
  
  /* Typography */
  --font-primary: 'Cinzel', serif;
  --font-secondary: 'Inter', sans-serif;
  
  /* Spacing System (8px base) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base Typography */
body {
  font-family: var(--font-secondary);
  line-height: 1.5;
  color: var(--neutral-800);
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  line-height: 1.2;
  margin-bottom: var(--space-2);
  color: var(--secondary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }
h5 { font-size: 1.125rem; font-weight: 500; }
h6 { font-size: 1rem; font-weight: 500; }

p {
  margin-bottom: var(--space-2);
  color: var(--neutral-200);
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--secondary-light);
}

/* Floating Particles Background */
.floating-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255, 215, 0, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(139, 0, 0, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(70, 130, 180, 0.3), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 215, 0, 0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: float-particles 20s linear infinite;
  z-index: -1;
}

@keyframes float-particles {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-200px); }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--primary);
  z-index: 1000;
  transition: var(--transition-normal);
}

.header.secondary {
  position: relative;
  background: var(--neutral-800);
}

.navbar {
  padding: var(--space-2) 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.logo {
  display: flex;
  align-items: center;
}

.shield-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  transition: var(--transition-normal);
}

.shield-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.crossed-swords {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  clip-path: polygon(0% 20%, 20% 20%, 20% 0%, 80% 0%, 80% 20%, 100% 20%, 100% 80%, 80% 80%, 80% 100%, 20% 100%, 20% 80%, 0% 80%);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-4);
  align-items: center;
}

.nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--neutral-200);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
  background: rgba(255, 215, 0, 0.1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--secondary);
  margin: 3px 0;
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  height: 120vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: linear-gradient(
    135deg,
    rgba(139, 0, 0, 0.7) 0%,
    rgba(45, 24, 16, 0.7) 100%
  ),
  url('/assets/banner.jpg');
  background-size: cover;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(139, 0, 0, 0.8) 0%,
    rgba(45, 24, 16, 0.9) 50%,
    rgba(26, 26, 26, 0.8) 100%
  ),
  url('https://images.pexels.com/photos/161105/castle-china-chinese-wind-161105.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop') center/cover;
  z-index: -1;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-3);
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--space-3);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  animation: hero-title-glow 3s ease-in-out infinite alternate;
  line-height: 1.1;
}

@keyframes hero-title-glow {
  0% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 215, 0, 0.3); }
  100% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.6); }
}

.hero-description {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: var(--space-5);
  color: var(--neutral-100);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.cta-button {
  position: relative;
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--secondary);
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 600;
  border: 2px solid var(--secondary);
  border-radius: var(--radius-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-normal);
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
  color: var(--neutral-100);
}

.button-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition-slow);
}

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

/* Sections */
section {
  padding: var(--space-10) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-8);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -var(--space-2);
  left: 50%;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: translateX(-50%);
  border-radius: var(--radius-sm);
}

/* Our Creed Section */
.creed {
  background: rgba(45, 24, 16, 0.3);
  backdrop-filter: blur(5px);
}

.creed-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.creed-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: var(--space-3);
}

.creed-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-shield {
  position: relative;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  animation: shield-float 6s ease-in-out infinite;
}

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

.shield-emblem {
  width: 150px;
  height: 150px;
  background: var(--secondary);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  position: relative;
}

.shield-emblem::after {
  content: '⚔️';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
}

/* Arena Section */
.arena {
  background: rgba(26, 26, 26, 0.5);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.game-card {
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(45, 24, 16, 0.2) 100%);
  border: 2px solid transparent;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
  position: relative;
}

.game-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--secondary);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.game-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.game-card:hover .game-image img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(45, 24, 16, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.play-icon {
  font-size: 3rem;
  animation: play-icon-pulse 2s ease-in-out infinite;
}

@keyframes play-icon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.game-info {
  padding: var(--space-3);
  text-align: center;
}

.game-title {
  color: var(--secondary);
  margin-bottom: var(--space-2);
  font-size: 1.25rem;
}

.game-button {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--secondary);
  font-family: var(--font-primary);
  font-weight: 600;
  border: 1px solid var(--secondary);
  border-radius: var(--radius-lg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.game-button:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Features Section */
.features {
  background: rgba(45, 24, 16, 0.2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.feature-card {
  background: rgba(26, 26, 26, 0.6);
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--space-3);
  display: block;
  animation: feature-icon-bounce 3s ease-in-out infinite;
}

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

.feature-card h3 {
  color: var(--secondary);
  margin-bottom: var(--space-2);
}

.feature-card p {
  color: var(--neutral-300);
  line-height: 1.6;
}

/* Royal Decree Section */
.decree {
  background: rgba(139, 0, 0, 0.1);
  padding: var(--space-8) 0;
}

.decree-scroll {
  background: linear-gradient(135deg, rgba(245, 245, 220, 0.95) 0%, rgba(255, 248, 220, 0.9) 100%);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 3px solid var(--secondary);
  box-shadow: var(--shadow-xl);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.decree-scroll::before,
.decree-scroll::after {
  content: '';
  position: absolute;
  top: -10px;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  border-radius: 50%;
}

.decree-scroll::before {
  left: var(--space-3);
}

.decree-scroll::after {
  right: var(--space-3);
}

.decree-title {
  text-align: center;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: var(--space-3);
  text-shadow: none;
}

.decree-text {
  color: var(--neutral-800);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  font-style: italic;
}

/* Footer */
.footer {
  background: var(--neutral-800);
  padding: var(--space-5) 0;
  border-top: 2px solid var(--primary);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.copyright {
  color: var(--neutral-300);
  font-family: var(--font-primary);
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: var(--space-4);
}

.footer-links a {
  color: var(--neutral-400);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--secondary);
}

/* Game Pages */
.game-page {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 100%);
  min-height: 100vh;
}

.game-header {
  background: rgba(26, 26, 26, 0.95);
  padding: var(--space-3) 0;
  border-bottom: 2px solid var(--primary);
}

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

.back-button {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--secondary);
  font-family: var(--font-primary);
  font-weight: 500;
  border: 1px solid var(--secondary);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.back-button:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateX(-3px);
}

.game-page-title {
  color: var(--secondary);
  text-align: center;
  flex: 1;
  margin: 0;
}

.game-main {
  padding: var(--space-6) 0;
}

.game-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-6);
  align-items: start;
}

.game-frame {
  background: rgba(26, 26, 26, 0.8);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--secondary);
  box-shadow: var(--shadow-xl);
}

.game-frame iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

.game-info-panel {
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(45, 24, 16, 0.2) 100%);
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
}

.game-info-panel h2 {
  color: var(--secondary);
  margin-bottom: var(--space-3);
  font-size: 1.5rem;
}

.game-info-panel p {
  color: var(--neutral-200);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.game-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2);
  background: rgba(26, 26, 26, 0.4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-item .feature-icon {
  font-size: 1.25rem;
  animation: none;
}

.feature-item span:last-child {
  color: var(--neutral-300);
  font-size: 0.9rem;
}

/* Contact Page Styles */
.page-main {
  padding: var(--space-8) 0;
  min-height: calc(100vh - 200px);
}

.page-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.page-title {
  color: var(--secondary);
  margin-bottom: var(--space-2);
}

.page-subtitle {
  color: var(--neutral-300);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-top: var(--space-6);
}

.contact-info h2 {
  color: var(--secondary);
  margin-bottom: var(--space-3);
}

.contact-info p {
  color: var(--neutral-200);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-method {
  display: flex;
  align-items: start;
  gap: var(--space-3);
  padding: var(--space-3);
  background: rgba(26, 26, 26, 0.4);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.method-icon {
  font-size: 1.5rem;
  margin-top: var(--space-1);
}

.method-info h3 {
  color: var(--secondary);
  font-size: 1.125rem;
  margin-bottom: var(--space-1);
}

.method-info p {
  color: var(--neutral-300);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.contact-form {
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(45, 24, 16, 0.2) 100%);
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 215, 0, 0.3);
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  color: var(--secondary);
  margin-bottom: var(--space-4);
  text-align: center;
}

.form-group {
  margin-bottom: var(--space-3);
}

.form-group label {
  display: block;
  color: var(--secondary);
  font-family: var(--font-primary);
  font-weight: 500;
  margin-bottom: var(--space-1);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-2);
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-md);
  color: var(--neutral-200);
  font-family: var(--font-secondary);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  position: relative;
  width: 100%;
  padding: var(--space-3);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--secondary);
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 600;
  border: 2px solid var(--secondary);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition-normal);
  overflow: hidden;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Policy Pages */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(45, 24, 16, 0.1) 100%);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 215, 0, 0.2);
  backdrop-filter: blur(10px);
}

.policy-section {
  margin-bottom: var(--space-6);
}

.policy-section h2 {
  color: var(--secondary);
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: var(--space-1);
}

.policy-section h3 {
  color: var(--secondary-light);
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
  margin-top: var(--space-3);
}

.policy-section p {
  color: var(--neutral-200);
  line-height: 1.6;
  margin-bottom: var(--space-2);
}

.policy-section ul {
  margin-left: var(--space-3);
  margin-bottom: var(--space-3);
}

.policy-section li {
  color: var(--neutral-200);
  line-height: 1.6;
  margin-bottom: var(--space-1);
}

.policy-footer {
  text-align: center;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 215, 0, 0.3);
  margin-top: var(--space-6);
}

.policy-footer p {
  color: var(--neutral-400);
  font-style: italic;
  margin-bottom: var(--space-2);
}

.policy-footer strong {
  color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .game-container {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .game-info-panel {
    order: -1;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .creed-content {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-content {
    padding: 0 var(--space-2);
  }
  
  .games-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .game-header .container {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  .game-page-title {
    text-align: center;
  }
  
  .banner-shield {
    width: 200px;
    height: 200px;
  }
  
  .shield-emblem {
    width: 100px;
    height: 100px;
  }
  
  .contact-methods {
    gap: var(--space-3);
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
    --space-6: 40px;
    --space-8: 56px;
    --space-10: 64px;
  }
  
  .hero {
    height: 80vh;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: var(--space-2) var(--space-4);
    font-size: 1rem;
  }
  
  .game-frame iframe {
    height: 400px;
  }
  
  .decree-scroll {
    padding: var(--space-4);
  }
  
  .policy-content {
    padding: var(--space-4);
  }
}

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

/* Print Styles */
@media print {
  .floating-particles,
  .header,
  .footer,
  .back-button,
  .cta-button,
  .game-button,
  .submit-button {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .policy-content,
  .contact-content {
    background: white !important;
    border: 1px solid #ccc !important;
  }
}