/* Devil Revenant MMO - Main Styles */

:root {
  /* Colors */
  --primary-color: #ff6b35;
  --primary-dark: #e55a2b;
  --secondary-color: #ffd700;
  --accent-color: #8b5cf6;
  
  --bg-primary: #0a0a0f;
  --bg-secondary: #1a1a2e;
  --bg-tertiary: #16213e;
  --bg-card: rgba(255, 255, 255, 0.05);
  
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;
  
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.3);
  
  /* Typography */
  --font-primary: 'Cinzel', serif;
  --font-secondary: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  
  /* Borders */
  --border-radius: 8px;
  --border-radius-lg: 16px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-content {
  text-align: center;
}

.loading-title {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.loading-subtitle {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  font-size: 1.1rem;
}

.loading-bar {
  width: 300px;
  height: 4px;
  background: var(--bg-tertiary);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  width: 0%;
  animation: loadingProgress 3s ease-in-out forwards;
}

@keyframes loadingProgress {
  to { width: 100%; }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.98);
  box-shadow: 0 4px 20px var(--shadow-color);
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo-img {
  width: 35px;
  height: 35px;
}

.logo-text {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-item {
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color var(--transition-fast);
  padding: 0.5rem 0.75rem;
  display: inline-block;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language Selector */
.language-selector {
  position: relative;
}

.language-selector .btn {
  padding: 8px 16px;
  font-size: 0.85rem;
  min-width: auto;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(20, 20, 30, 0.95);
  border-radius: 8px;
  margin-top: 0.5rem;
  min-width: 150px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  overflow: hidden;
}

.lang-option {
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background 0.2s;
  font-size: 0.9rem;
  text-align: left;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  width: 44px;
  height: 44px;
  z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger {
  top: 50%;
  transform: translate(-50%, -50%);
}

.hamburger::before {
  content: '';
  top: -8px;
}

.hamburger::after {
  content: '';
  top: 8px;
}

.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 10px 20px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: inherit;
  font-size: 0.85rem;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-card);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-video,
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Fallback image inside video tag */
.hero-bg-video img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 15, 0.8) 0%,
    rgba(26, 26, 46, 0.6) 50%,
    rgba(10, 10, 15, 0.9) 100%
  );
  z-index: 1;
}

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-play-btn {
  margin-top: 2rem;
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-family: var(--font-primary);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 50px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  opacity: 0.75;
}

.hero-play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
  opacity: 0.85;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  text-align: center;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-line {
  display: block;
}

.title-line.highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: var(--spacing-xs);
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-xl);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.scroll-indicator {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid var(--text-secondary);
  border-radius: 12px;
  margin: 0 auto var(--spacing-xs);
  position: relative;
  animation: scrollFloat 2s ease-in-out infinite;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--text-secondary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

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

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: var(--spacing-xl) 0;
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  font-size: 2rem;
  color: white;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Worlds Section */
.worlds {
  padding: var(--spacing-xl) 0;
  background: var(--bg-primary);
}

.worlds-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.world-card {
  position: relative;
  height: 600px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.world-card:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.world-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.world-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.world-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.world-content {
  position: relative;
  height: 100%;
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  z-index: 2;
}

.world-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  font-size: 2rem;
  color: var(--primary-color);
}

.world-title {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.world-description {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.world-features {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.world-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.world-btn {
  align-self: center;
  min-width: 200px;
}

/* Download Section */
.download {
  padding: var(--spacing-xl) 0;
  background: var(--bg-tertiary);
  text-align: center;
}

.alpha-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(var(--primary-rgb, 180, 0, 0), 0.15), rgba(var(--secondary-rgb, 255, 100, 0), 0.15));
  border: 1px solid var(--primary-color);
  border-radius: 2rem;
  padding: 0.4rem 1.2rem;
  margin-bottom: var(--spacing-md);
}

.alpha-badge .badge-label {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.alpha-badge .badge-date {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.download-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  gap: 0.5rem;
}

.download-title {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.download-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.platform {
  background: var(--bg-card);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-normal);
}

.platform:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.platform-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.platform h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
}

.platform p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
}

.platform-btn {
  width: 100%;
}

.system-requirements {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.system-requirements h3 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
}

.req-column {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
}

.req-column h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
}

.req-column ul {
  list-style: none;
}

.req-column li {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xs);
  padding-left: var(--spacing-sm);
  position: relative;
}

.req-column li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

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

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

.footer-section h3 {
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-logo span {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

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

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: var(--spacing-md);
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--primary-color);
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-header {
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--primary-color);
}

.modal-body {
  padding: var(--spacing-md);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.form-group label {
  color: var(--text-primary);
  font-weight: 500;
}

.form-group input {
  padding: 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-primary);
  font-family: inherit;
  transition: border-color var(--transition-fast);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  align-items: center;
}

.form-actions .btn {
  width: 100%;
}

.forgot-password {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.forgot-password:hover {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
  :root {
    --spacing-xl: 3rem;
  }
  
  .nav-container {
    padding: 0 var(--spacing-md);
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: 2rem;
    --spacing-xl: 2.5rem;
  }
  
  /* Mobile Navigation */
  .nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu .nav-item {
    width: 100%;
    text-align: center;
  }
  
  .nav-menu .nav-link {
    display: block;
    padding: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  /* Touch-friendly font sizes */
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .worlds-container {
    grid-template-columns: 1fr;
  }
  
  .world-features {
    flex-direction: column;
    align-items: center;
  }
  
  .download-platforms {
    grid-template-columns: 1fr;
  }
  
  .requirements-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .nav-container {
    padding: 0 var(--spacing-sm);
  }
  
  .hero-content {
    padding: 0 var(--spacing-sm);
  }
  
  .modal-content {
    width: 95%;
  }
  
  /* Touch-friendly button sizes (min 44px) */
  .btn,
  .hero-play-btn,
  .toggle-audio-btn {
    min-height: 44px;
    min-width: 44px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .nav-link {
    min-height: 44px;
    padding: 0.875rem 1rem;
  }
  
  /* Hero section optimizations */
  .hero {
    min-height: -webkit-fill-available;
    min-height: 100vh;
  }
  
  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2;
  }
  
  .audio-controls-wrapper {
    bottom: 60px;
    width: 90%;
    left: 5%;
    transform: none;
  }
  
  .volume-control {
    width: 100%;
  }
  
  .volume-slider {
    width: 100%;
  }
  
  /* Improved spacing */
  section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
}

/* Utility Classes for Navigation and Layout */
.nav-centered {
  justify-content: center;
  gap: 2rem;
}

.language-selector {
  margin-right: 1rem;
  position: relative;
}

.lang-btn {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-chevron {
  font-size: 0.8rem;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(20, 20, 30, 0.95);
  border-radius: 8px;
  margin-top: 0.5rem;
  min-width: 150px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.lang-dropdown.active {
  display: block;
}

.lang-option {
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}

.lang-option:hover {
  background: rgba(255, 215, 0, 0.1);
}

/* Hero Section Utilities */
.hero-relative {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg-image {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.audio-permission-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}

.audio-title {
  font-size: 2rem;
  font-family: 'Cinzel', serif;
  color: #ffd700;
  text-align: center;
  margin-bottom: 1rem;
}

.audio-subtitle {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  max-width: 600px;
  padding: 0 2rem;
}

.enable-audio-btn {
  padding: 1.2rem 3rem;
  font-size: 1.3rem;
  background: linear-gradient(90deg, #ffd700 0%, #ff4500 100%);
  color: #222;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.enable-audio-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.skip-audio-btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  background: transparent;
  color: #aaa;
  border: 2px solid #555;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s;
}

.skip-audio-btn:hover {
  border-color: #888;
  color: #ddd;
}

.hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
  color: #ffd700;
  text-shadow: 0 2px 12px #000, 0 0 40px #ff4500;
  margin-bottom: 2rem;
}

.hero-play-btn {
  padding: 1rem 2.5rem;
  font-size: 1.5rem;
  background: linear-gradient(90deg, #ffd700 0%, #ff4500 100%);
  color: #222;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s;
}

.hero-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
}

.audio-controls {
  margin-top: 2rem;
}

.toggle-audio-btn {
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  border-radius: 20px;
  border: none;
  background: #222;
  color: #ffd700;
  cursor: pointer;
  transition: background 0.2s;
}

.toggle-audio-btn:hover {
  background: #333;
}

/* Worlds Section Styles */
.hero-worlds-container {
  width: 100%;
  max-width: 700px;
  margin: 2rem auto;
  background: #222226;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.6);
  padding: 2rem;
}

.worlds-title {
  font-family: 'Cinzel', serif;
  color: #ffd700;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.worlds-list {
  list-style: disc;
  margin-left: 2rem;
  font-size: 1.15rem;
  color: #fff;
}

.world-item-title {
  font-size: 1.2rem;
  font-family: 'Cinzel', serif;
}

.worlds-explore-section {
  text-align: center;
  margin-top: 2rem;
}

.worlds-grid-container {
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.world-card {
  border-radius: 22px;
  box-shadow: 0 6px 36px rgba(0, 0, 0, 0.6);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.world-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.8);
}

.world-card-angel {
  background: linear-gradient(135deg, #18181c 60%, #23233a 100%);
  border: 2px solid #29294a;
}

.world-card-demon {
  background: linear-gradient(135deg, #18181c 60%, #2a1a1a 100%);
  border: 2px solid #3a2323;
}

.world-card-hybrid {
  background: linear-gradient(135deg, #18181c 60%, #1a2a2a 100%);
  border: 2px solid #23403a;
}

.world-card-human {
  background: linear-gradient(135deg, #18181c 60%, #23231a 100%);
  border: 2px solid #404023;
}

.world-icon {
  font-size: 2.7rem;
  margin-bottom: 1.2rem;
}

.world-icon-angel {
  background: linear-gradient(90deg, #ffd700 0%, #ff4500 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

.world-icon-demon {
  background: linear-gradient(90deg, #ff4500 0%, #ffd700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(255, 69, 0, 0.4));
}

.world-icon-hybrid {
  background: linear-gradient(90deg, #00ffe7 0%, #ffd700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 255, 231, 0.4));
}

.world-icon-human {
  background: linear-gradient(90deg, #ffd700 0%, #00ffe7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
}

.world-card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
}

.world-card-title-angel {
  color: #ffd700;
}

.world-card-title-demon {
  color: #ff4500;
}

.world-card-title-hybrid {
  color: #00ffe7;
}

.world-card-title-human {
  color: #ffd700;
}

.world-card-description {
  font-size: 1.12rem;
  line-height: 1.6;
}

.world-card-description-angel {
  color: #e6e6fa;
}

.world-card-description-demon {
  color: #ffd6d6;
}

.world-card-description-hybrid {
  color: #d6fff6;
}

.world-card-description-human {
  color: #fffbe6;
}

/* Characters Section */
.characters-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

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

.section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #aaa;
}

/* Character Filters */
.character-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.char-filter {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #888;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}

.char-filter-all {
  border-color: rgba(255, 255, 255, 0.12);
}

.char-filter.active,
.char-filter:hover {
  color: #fff;
}

.char-filter-protagonists {
  border-color: rgba(255, 255, 255, 0.12);
}

.char-filter-protagonists.active {
  background: rgba(255, 215, 0, 0.15);
  border-color: #ffd700;
  color: #ffd700;
}

.char-filter-angel {
  border-color: rgba(255, 255, 255, 0.12);
}

.char-filter-angel.active {
  background: rgba(79, 195, 247, 0.2);
  border-color: #4fc3f7;
  color: #4fc3f7;
}

.char-filter-demon {
  border-color: rgba(255, 255, 255, 0.12);
}

.char-filter-demon.active {
  background: rgba(255, 77, 28, 0.2);
  border-color: #ff4d1c;
  color: #ff7055;
}

.char-filter-hybrid {
  border-color: rgba(255, 255, 255, 0.12);
}

.char-filter-hybrid.active {
  background: rgba(245, 158, 11, 0.2);
  border-color: #f59e0b;
  color: #f59e0b;
}

.char-filter-human {
  border-color: rgba(255, 255, 255, 0.12);
}

.char-filter-human.active {
  background: rgba(74, 222, 128, 0.2);
  border-color: #4ade80;
  color: #4ade80;
}

.char-filter-all.active {
  background: linear-gradient(135deg, #444, #333);
  border-color: #666;
}

.char-filter:hover {
  border-color: rgba(255, 255, 255, 0.24);
}

/* Characters Grid */
.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 0;
}

.characters-section .char-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  cursor: default;
  transition: all 0.3s;
  position: relative;
}

.characters-section .char-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 77, 28, 0.4);
}

.characters-section .char-banner {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.characters-section .char-banner--angelic {
  background: rgba(79, 195, 247, 0.15);
}

.characters-section .char-banner--demonic {
  background: rgba(255, 77, 28, 0.15);
}

.characters-section .char-banner--human {
  background: rgba(74, 222, 128, 0.1);
}

.characters-section .char-banner--hybrid {
  background: rgba(245, 158, 11, 0.12);
}

.characters-section .char-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.characters-section .char-banner .char-emoji {
  position: absolute;
  font-size: 60px;
}

.characters-section .char-emoji--hidden {
  display: none;
}

.characters-section .char-rarity {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.characters-section .rarity-Mythic {
  background: rgba(255, 77, 28, 0.3);
  color: #ff7055;
  border: 1px solid rgba(255, 77, 28, 0.5);
}

.characters-section .rarity-Legendary {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.4);
}

.characters-section .rarity-Epic {
  background: rgba(139, 43, 226, 0.2);
  color: #c084fc;
  border: 1px solid rgba(139, 43, 226, 0.4);
}

.characters-section .rarity-Rare {
  background: rgba(79, 195, 247, 0.2);
  color: #4fc3f7;
  border: 1px solid rgba(79, 195, 247, 0.4);
}

.characters-section .char-body {
  padding: 16px;
}

.characters-section .char-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}

.characters-section .char-title {
  font-size: 11px;
  color: #888;
  margin-bottom: 10px;
}

.characters-section .char-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.characters-section .tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
}

.characters-section .tag-Angelic {
  background: rgba(79, 195, 247, 0.15);
  color: #4fc3f7;
  border: 1px solid rgba(79, 195, 247, 0.3);
}

.characters-section .tag-Demonic {
  background: rgba(255, 77, 28, 0.15);
  color: #ff7055;
  border: 1px solid rgba(255, 77, 28, 0.3);
}

.characters-section .tag-Human {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.characters-section .tag-Hybrid {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.characters-section .tag-ai {
  background: rgba(139, 43, 226, 0.15);
  color: #c084fc;
  border: 1px solid rgba(139, 43, 226, 0.3);
}

.characters-section .stats-mini {
  display: flex;
  gap: 10px;
}

.characters-section .stat-mini {
  flex: 1;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 8px 4px;
}

.characters-section .stat-mini-val {
  font-size: 14px;
  font-weight: 700;
  color: #ff8c00;
}

.characters-section .stat-mini-lbl {
  font-size: 9px;
  color: #555;
  text-transform: uppercase;
  margin-top: 2px;
}

.characters-section .ai-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(139, 43, 226, 0.8);
  color: #fff;
  padding: 3px 9px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
}

.characters-section .role-protagonist {
  color: #ffd700;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.characters-empty-state {
  color: #999;
  text-align: center;
  grid-column: 1 / -1;
}

/* Gameplay Section */
.gameplay-section {
  padding: 80px 20px;
  background: #0f0c29;
}

.gameplay-video-container {
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.gameplay-video-link {
  text-decoration: none;
  display: block;
}

.gameplay-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
  border: 3px solid rgba(255, 215, 0, 0.4);
  background: #000;
  cursor: pointer;
  transition: all 0.3s;
}

.gameplay-video-wrapper:hover {
  box-shadow: 0 15px 60px rgba(255, 215, 0, 0.5);
  transform: scale(1.02);
}

.gameplay-video-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.gameplay-play-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.gameplay-video-title {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: 'Cinzel', serif;
}

.gameplay-video-subtitle {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.gameplay-video-badge {
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  background: rgba(255, 215, 0, 0.2);
  border: 2px solid #ffd700;
  border-radius: 25px;
  display: inline-block;
}

.gameplay-video-description {
  text-align: center;
  margin-top: 15px;
  color: #ffd700;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Gameplay Features Grid */
.gameplay-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.gameplay-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  overflow: hidden;
}

.gameplay-feature-card-angel {
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.gameplay-feature-card-demon {
  border: 2px solid rgba(255, 68, 68, 0.3);
}

.gameplay-feature-card-hybrid {
  border: 2px solid rgba(155, 89, 182, 0.3);
}

.gameplay-feature-card-human {
  border: 2px solid rgba(180, 160, 120, 0.3);
}

.gameplay-feature-visual {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 6rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gameplay-feature-visual-angel {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gameplay-feature-visual-demon {
  background: linear-gradient(135deg, #ff0000 0%, #8b0000 100%);
}

.gameplay-feature-visual-hybrid {
  background: linear-gradient(135deg, #9b59b6 0%, #e91e63 100%);
}

.gameplay-feature-visual-human {
  background: linear-gradient(135deg, #b4a078 0%, #64748b 100%);
}

.gameplay-feature-content {
  padding: 20px;
}

.gameplay-feature-title {
  margin-bottom: 10px;
}

.gameplay-feature-title-angel {
  color: #ffd700;
}

.gameplay-feature-title-demon {
  color: #ff4444;
}

.gameplay-feature-title-hybrid {
  color: #9b59b6;
}

.gameplay-feature-title-human {
  color: #b4a078;
}

.gameplay-feature-description {
  color: #ccc;
}

/* Xandors Boss Section */
.xandors-section {
  padding: 0;
  background: #0a0a0f;
  position: relative;
  overflow: hidden;
}

.xandors-content-wrapper {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.xandors-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.xandors-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.xandors-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.9) 100%);
}

.xandors-bg-overlay-vertical {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
}

.xandors-hero-container {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.xandors-content-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 80px 20px;
}

.xandors-content-inner {
  max-width: 700px;
}

.xandors-title-section {
  margin-bottom: 30px;
}

.xandors-badge {
  display: inline-block;
  background: rgba(220,20,60,0.2);
  padding: 8px 20px;
  border-radius: 20px;
  border: 2px solid #ff4444;
  margin-bottom: 20px;
}

.xandors-badge-text {
  color: #ff4444;
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.xandors-main-title {
  font-family: 'Cinzel', serif;
  font-size: 4.5rem;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255,68,68,0.8), 0 0 60px rgba(255,68,68,0.4);
  line-height: 1.1;
}

.xandors-subtitle {
  font-size: 2rem;
  color: #ff4444;
  margin-bottom: 30px;
  font-family: 'Cinzel', serif;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.xandors-description-box {
  background: rgba(0,0,0,0.7);
  border-left: 4px solid #ff4444;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.xandors-desc-primary {
  color: #ddd;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.xandors-desc-secondary {
  color: #aaa;
  font-size: 1.1rem;
  line-height: 1.8;
}

.xandors-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.xandors-stat-card {
  background: rgba(255,68,68,0.1);
  padding: 20px;
  border-radius: 12px;
  border: 2px solid rgba(255,68,68,0.3);
}

.xandors-stat-label {
  color: #ff4444;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.xandors-stat-value-large {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: 'Cinzel', serif;
}

.xandors-stat-value-medium {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  font-family: 'Cinzel', serif;
}

.xandors-stat-value {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: 'Cinzel', serif;
}

.xandors-abilities-box {
  background: rgba(0,0,0,0.7);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 2px solid rgba(255,68,68,0.2);
}

.xandors-abilities-title {
  color: #ff4444;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
}

.xandors-abilities-list {
  display: grid;
  gap: 12px;
}

.xandors-ability {
  display: flex;
  align-items: start;
  gap: 15px;
}

.xandors-ability-icon {
  color: #ff4444;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.xandors-ability-name {
  color: #fff;
  font-size: 1.1rem;
}

.xandors-ability-desc {
  color: #aaa;
  font-size: 0.95rem;
  margin-top: 5px;
}

.xandors-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.xandors-btn-primary {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(90deg, #ff4444 0%, #8b0000 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s;
  box-shadow: 0 4px 20px rgba(255,68,68,0.5);
  font-family: 'Cinzel', serif;
}

.xandors-btn-primary:hover {
  transform: scale(1.05);
}

.xandors-btn-secondary {
  display: inline-block;
  padding: 18px 40px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.2rem;
  border: 2px solid rgba(255,68,68,0.5);
  transition: all 0.3s;
}

.xandors-btn-secondary:hover {
  background: rgba(255,68,68,0.2);
  border-color: #ff4444;
}

/* Legendary Weapons Section */
.legendary-weapons {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0f0c29 0%, #302b63 100%);
}

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

.legendary-weapons-header {
  text-align: center;
  margin-bottom: 60px;
}

.legendary-weapons-title {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: #ffd700;
  margin-bottom: 20px;
}

.legendary-weapons-subtitle {
  font-size: 1.3rem;
  color: #aaa;
}

.legendary-weapons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.legendary-weapon-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255,68,68,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.legendary-weapon-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255,68,68,0.5);
}

.legendary-weapon-img-container {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: linear-gradient(135deg, #ff0000 0%, #8b0000 100%);
}

.legendary-weapon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legendary-weapon-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,68,68,0.9);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  color: white;
  border: 2px solid #fff;
}

.legendary-weapon-content {
  padding: 30px;
}

.legendary-weapon-name {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: #ff4444;
  margin-bottom: 15px;
}

.legendary-weapon-desc {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.legendary-weapon-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.legendary-weapon-stat {
  background: rgba(255,68,68,0.1);
  padding: 12px;
  border-radius: 10px;
  border-left: 3px solid #ff4444;
}

.legendary-weapon-stat-label {
  color: #ff4444;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.legendary-weapon-stat-value {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}

.legendary-weapon-stat-value-text {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

.legendary-weapon-abilities {
  background: rgba(255,68,68,0.1);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.legendary-weapon-abilities-title {
  color: #ff4444;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.legendary-weapon-abilities-list {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-left: 20px;
}

.legendary-weapon-buy {
  text-align: center;
}

.legendary-weapon-btn {
  padding: 12px 30px;
  background: linear-gradient(90deg, #ff4444 0%, #8b0000 100%);
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.2s;
}

.legendary-weapon-btn:hover {
  transform: scale(1.05);
}

/* Audio Permission Modal */
.audio-permission-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  display: none; /* Hidden by default */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.audio-title {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  text-align: center;
}

.audio-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  text-align: center;
  max-width: 500px;
}

.enable-audio-btn {
  padding: 1rem 2.5rem;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border: 2px solid var(--secondary-color);
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.enable-audio-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
}

.skip-audio-btn {
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.skip-audio-btn:hover {
  color: var(--text-secondary);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Audio Controls */
.audio-controls-wrapper {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.audio-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 1.5rem;
  border-radius: 15px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.toggle-audio-btn {
  padding: 0.8rem 1.5rem;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toggle-audio-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.volume-slider {
  width: 150px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--secondary-color);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.volume-percentage {
  min-width: 45px;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Characters Grid */
.characters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .characters-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .audio-controls-wrapper {
    bottom: 60px;
  }
  
  .audio-controls {
    padding: 1rem;
    gap: 0.8rem;
  }
  
  .audio-title {
    font-size: 2rem;
  }
  
  .audio-subtitle {
    font-size: 1rem;
  }
}

/* Footer Logo Banner */
.footer-logo-banner {
  width: 100%;
  max-width: 700px;
  margin: 2rem auto 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.footer-banner-img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(255, 68, 0, 0.4);
  transition: all 0.3s ease;
}

.footer-logo-banner:hover .footer-banner-img {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(255, 68, 0, 0.6);
}

@media (max-width: 768px) {
  .footer-logo-banner {
    max-width: 95%;
    margin: 1.5rem auto 1rem;
  }
  
  .footer-banner-img {
    max-height: 400px;
  }
}

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.9) 100%);
}

/* =====================
   Roadmap Utilities
   ===================== */
.roadmap-progress-label {
  color: rgba(255, 255, 255, 0.6);
}

.progress-fill--100 { width: 100%; }
.progress-fill--35  { width: 35%;  }
.progress-fill--0   { width: 0%;   }

.mt-lg { margin-top: var(--spacing-lg); }
.mt-sm { margin-top: var(--spacing-sm); }