/* Hero Title Styling (no logo) */
/* Modern Luxury Hero Title */
.hero-title {
  font-family: 'Orbitron', 'Rajdhani', 'Inter', sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 0.7rem;
  line-height: 1.08;
  text-shadow: 0 6px 32px rgba(0,0,0,0.22), 0 1px 0 #fff2;
}
.hero-title-gradient {
  background: linear-gradient(90deg, #f8fafc 0%, #d7dde8 35%, #c7a86a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.hero-title-sub {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  margin-left: 0.7rem;
  color: #c7a86a;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
  font-family: 'Rajdhani', 'Orbitron', 'Inter', sans-serif;
}
.hero-title-underline {
  width: 120px;
  height: 5px;
  margin: 0.5rem auto 1.2rem auto;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(199, 168, 106, 0.95) 0%, rgba(215, 221, 232, 0.75) 100%);
  opacity: 0.85;
}
/* Hero Logo Bar Styling */
.hero-logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  border-radius: 2.5rem;
  padding: 0.7rem 2.2rem 0.7rem 1.2rem;
  margin: 0 auto 2rem auto;
  max-width: 420px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-logo-small {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-right: 1.1rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.hero-logo-bar-text {
  color: #1e293b;
  font-family: 'Orbitron', 'Rajdhani', 'Inter', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(255,255,255,0.08);
  display: flex;
  align-items: baseline;
}
.hero-logo-bar-sub {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  margin-left: 0.4rem;
  color: #64748b;
}
:root {
  /* Colors from Config - Fallbacks included, but JS will override if needed or we hardcode them here to match */
  --color-primary: #2D5016;
  --color-secondary: #D4773B;
  --color-tertiary: #475569;
  --color-dark: #0F172A;
  --color-dark-transparent: rgba(15, 23, 42, 0.9);
  --color-light: #F8FAFC;
  
  /* Fonts */
  --font-heading: 'Orbitron', 'Rajdhani', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;

  /* Transitions */
  --transition-speed: 0.3s;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-dark);
  color: var(--color-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-light);
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 8vw, 6rem); letter-spacing: 0.1em; text-transform: uppercase; }
h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: var(--spacing-lg); color: var(--color-secondary); }
h3 { font-size: 1.5rem; margin-bottom: var(--spacing-sm); }
p { margin-bottom: var(--spacing-md); color: #cbd5e1; }

a { text-decoration: none; color: inherit; transition: color var(--transition-speed); }
ul { list-style: none; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed);
  border: 2px solid transparent;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-light);
}

.btn-primary:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 119, 59, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-light);
  color: var(--color-light);
}

.btn-secondary:hover {
  background-color: var(--color-light);
  color: var(--color-dark);
  transform: translateY(-2px);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background-color: #94a3b8; /* Slate 400 - Muted Blue/Grey */
  transition: background-color var(--transition-speed), padding var(--transition-speed);
}

.navbar.scrolled {
  background-color: rgba(148, 163, 184, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 5%;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Under Construction Banner */
.site-banner {
  position: fixed;
  top: 110px; /* under navbar */
  left: 0;
  right: 0;
  z-index: 1001; /* above navbar and hero */
  background: rgba(15, 23, 42, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-dark);
}

.nav-logo img {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  color: var(--color-dark); /* Ensure links are visible on light bg */
}

.site-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-banner__text {
  margin: 0;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.site-banner__text strong {
  color: var(--color-secondary);
}

.site-banner__dismiss {
  background: transparent;
  border: 1px solid rgba(248, 250, 252, 0.5);
  color: var(--color-light);
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-speed);
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  white-space: nowrap;
}

.site-banner__dismiss:hover {
  background: rgba(248, 250, 252, 0.12);
  border-color: rgba(248, 250, 252, 0.85);
}

.site-banner.is-hidden {
  display: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--color-secondary);
  transition: width 0.3s;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--color-light);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 3.5rem 5% 0 5%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
  transform: scale(1.1); /* Initial scale for parallax */
}

.hero-content {
  max-width: 900px;
  z-index: 1;
}

.hero-logo {
  max-width: 450px;
  margin-bottom: 0;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
  color: #e2e8f0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
  40% {transform: translateX(-50%) translateY(-10px);}
  60% {transform: translateX(-50%) translateY(-5px);}
}

/* Sections General */
section {
  padding: 6rem 5%;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* About Game */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.features-list i {
  color: var(--color-secondary);
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-top: 2rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.media-container img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Key Features */
.features-section {
  background-color: #0b1120; /* Slightly darker */
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e293b' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(30, 41, 59, 0.5);
  padding: 2rem;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(71, 85, 105, 0.3);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(30, 41, 59, 0.8);
  border-color: var(--color-secondary);
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  fill: var(--color-secondary);
}

/* Visual Showcase */
.gallery-section {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* About Studio */
.studio-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.team-member {
  text-align: center;
}

.member-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
  border: 3px solid var(--color-secondary);
}

/* Newsletter */
.newsletter-section {
  background: linear-gradient(to right, #0f172a, #1e293b);
  text-align: center;
}

.newsletter-form {
  max-width: 500px;
  margin: 2rem auto;
  display: flex;
  gap: 1rem;
}

.form-input {
  flex: 1;
  padding: 1rem;
  border-radius: 4px;
  border: 1px solid var(--color-tertiary);
  background: rgba(255,255,255,0.05);
  color: white;
  font-family: var(--font-body);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-secondary);
}

/* Footer */
.footer {
  background-color: #94a3b8; /* Slate 400 */
  color: var(--color-dark);
  padding: 4rem 5% 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer h3, .footer p, .footer li, .footer a {
    color: var(--color-dark);
}

.footer a:hover {
    color: var(--color-primary); /* Darker hover for contrast */
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 200px;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--color-secondary);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
  color: var(--color-dark);
  opacity: 0.8;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

/* Utility */
.hidden { opacity: 0; transform: translateY(20px); transition: 1s all ease; }
.show { opacity: 1; transform: translateY(0); }
