/* Dailysmile.fun - Gaming Forum CSS Variables */
:root {
  --gaming-blue: #1e3a8a;
  --gaming-cyan: #06b6d4;
  --gaming-green: #10b981;
  --gaming-orange: #f59e0b;
  --gaming-purple: #8b5cf6;
  --gaming-red: #ef4444;
  --gaming-yellow: #eab308;
  --gaming-white: #ffffff;
  --gaming-black: #1f2937;
  --gaming-gray: #6b7280;
  --gaming-shadow: rgba(0, 0, 0, 0.2);
  --gaming-gradient: linear-gradient(
    135deg,
    var(--gaming-blue),
    var(--gaming-purple)
  );
  --gaming-accent-gradient: linear-gradient(
    45deg,
    var(--gaming-cyan),
    var(--gaming-green)
  );
  --body-bg-light: #f8fafc;
  --body-bg-dark: #1e293b;
  --border-light: #e2e8f0;
  --success-green: #10b981;
  --success-green-dark: #059669;
  --hover-blue: #3b82f6;
  --overlay-dark: rgba(0, 0, 0, 0.8);
  --overlay-light: rgba(255, 255, 255, 0.95);
  --overlay-lighter: rgba(255, 255, 255, 0.9);
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.3);
  --shadow-dark: rgba(0, 0, 0, 0.6);
  --gaming-blue-transparent: rgba(30, 58, 138, 0.3);
  --gaming-purple-transparent: rgba(139, 92, 246, 0.8);
  --gaming-cyan-transparent: rgba(6, 182, 212, 0.8);
}

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

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--gaming-black);
  min-height: 100vh;
}

/* Gaming Header Styles */
.royal-header {
  background: var(--gaming-gradient);
  box-shadow: 0 4px 20px var(--gaming-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.royal-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gaming-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.royal-logo:hover {
  color: var(--gaming-yellow);
  transform: scale(1.05);
}

.crown-icon {
  font-size: 2rem;
}

.logo-text {
  text-shadow: 2px 2px 4px var(--gaming-shadow);
}

/* Navigation Styles */
.royal-navigation .nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--gaming-white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-link:hover {
  background: var(--gaming-white);
  color: var(--gaming-cyan);
}

/* Main Content Styles */
.royal-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--gaming-purple);
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px var(--gaming-shadow);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gaming-accent-gradient);
  border-radius: 2px;
}

/* Hero Section */
.pixel-arena-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80vh;
  background: var(--gaming-accent-gradient);
  border-radius: 30px;
  padding: 4rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.game-title {
  font-size: 4rem;
  color: var(--gaming-white);
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px var(--gaming-shadow);
}

.game-slogan {
  font-size: 1.5rem;
  color: var(--gaming-white);
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 2px 2px 4px var(--gaming-shadow);
}

.start-run-button {
  background: var(--gaming-yellow);
  color: var(--gaming-black);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--gaming-shadow);
  text-decoration: none;
  display: inline-block;
}

.start-run-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px var(--gaming-shadow);
  background: var(--crown-yellow);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
}

/* Royal Features Grid */
.royal-features {
  margin-bottom: 4rem;
}

.royal-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.royal-feature-card {
  background: var(--gaming-white);
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.royal-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gaming-accent-gradient);
}

.royal-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--gaming-shadow);
  border-color: var(--gaming-cyan);
}

.royal-feature-title {
  font-size: 1.8rem;
  color: var(--gaming-purple);
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px var(--gaming-shadow);
}

.royal-feature-description {
  color: var(--gaming-black);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.royal-feature-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.royal-feature-tag {
  background: var(--gaming-accent-gradient);
  color: var(--gaming-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 8px var(--gaming-shadow);
  transition: all 0.3s ease;
}

.royal-feature-tag:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px var(--gaming-shadow);
}

/* Princess Guide Section */
.princess-guide {
  margin-bottom: 4rem;
}

.royal-controls-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.royal-control-item {
  background: linear-gradient(var(--overlay-light), var(--overlay-lighter)),
    url("../public/princess-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2.5rem;
  border-radius: 25px;
  text-align: center;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.royal-control-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gaming-accent-gradient);
}

.royal-control-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--gaming-shadow);
  border-color: var(--gaming-cyan);
}

.royal-control-title {
  color: var(--gaming-purple);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 1px 1px 2px var(--gaming-shadow);
  position: relative;
  z-index: 2;
}

.royal-control-description {
  color: var(--gaming-black);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.royal-control-tips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.royal-tip {
  background: var(--gaming-accent-gradient);
  color: var(--gaming-white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 2px 8px var(--gaming-shadow);
  transition: all 0.3s ease;
}

.royal-tip:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px var(--gaming-shadow);
}

/* Royal Testimonials */
.royal-testimonials {
  margin-bottom: 4rem;
}

.royal-testimonials-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.royal-testimonial-card {
  background: var(--gaming-accent-gradient);
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.royal-testimonial-card::before {
  content: '"';
  position: absolute;
  top: -15px;
  left: 25px;
  font-size: 5rem;
  color: var(--gaming-white);
  opacity: 0.2;
  font-family: serif;
}

.royal-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--gaming-shadow);
  border-color: var(--gaming-yellow);
}

.royal-testimonial-text {
  color: var(--gaming-white);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.royal-testimonial-author {
  color: var(--gaming-yellow);
  font-weight: 700;
  text-align: right;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px var(--gaming-shadow);
  position: relative;
  z-index: 2;
}

/* Royal Wardrobe Collection */
.royal-wardrobe-collection {
  margin-bottom: 4rem;
}

.royal-wardrobe-layout {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.royal-wardrobe-cards {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.royal-wardrobe-card {
  background: var(--gaming-white);
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--gaming-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.royal-wardrobe-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gaming-accent-gradient);
}

.royal-wardrobe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--gaming-shadow);
  border-color: var(--gaming-cyan);
}

.royal-wardrobe-title {
  color: var(--gaming-purple);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px var(--gaming-shadow);
}

.royal-wardrobe-effect {
  color: var(--gaming-black);
  line-height: 1.4;
  font-size: 0.85rem;
  margin: 0;
  font-weight: 500;
}

.royal-wardrobe-info {
  flex: 0 0 60%;
  background: var(--gaming-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.royal-wardrobe-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gaming-accent-gradient);
}

.royal-wardrobe-info-title {
  color: var(--gaming-purple);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px var(--gaming-shadow);
}

.royal-wardrobe-info-text {
  color: var(--gaming-black);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.royal-wardrobe-info-text:last-child {
  margin-bottom: 0;
}

/* Royal Progress & Charisma Hub */
.royal-progress-charisma {
  margin-bottom: 4rem;
}

.royal-stats-container {
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.royal-stat-card {
  background: linear-gradient(var(--overlay-light), var(--overlay-lighter)),
    url("../public/princess-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  flex: 1;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.royal-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gaming-accent-gradient);
}

.royal-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--gaming-shadow);
  border-color: var(--gaming-cyan);
}

.royal-stat-number {
  font-size: 2.5rem;
  color: var(--charisma-glow);
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px var(--gaming-shadow);
  position: relative;
  z-index: 2;
}

.royal-stat-label {
  color: var(--gaming-purple);
  font-size: 1.3rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px var(--gaming-shadow);
  position: relative;
  z-index: 2;
}

/* Gaming Footer Styles */
.footer-royal {
  background: var(--gaming-gradient);
  color: var(--gaming-white);
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer-royal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
  opacity: 0.5;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 0;
  position: relative;
  z-index: 2;
}

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

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gaming-white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-tagline {
  font-size: 1.2rem;
  color: var(--gaming-cyan);
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

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

.footer-section {
  min-width: 200px;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--gaming-cyan);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gaming-accent-gradient);
  border-radius: 1px;
}

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

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

.footer-link {
  color: var(--gaming-white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gaming-cyan);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--gaming-cyan);
  transform: translateX(5px);
}

.footer-link:hover::before {
  width: 100%;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
}

.contact-icon {
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
}

.footer-contact-link {
  color: var(--gaming-white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-contact-link:hover {
  color: var(--gaming-cyan);
  transform: translateX(3px);
}

.footer-contact-text {
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
}

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

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright-text {
  color: var(--gaming-white);
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 0.95rem;
  margin: 0;
}

.footer-tagline-bottom {
  color: var(--gaming-cyan);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Footer Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

  .footer-main {
    gap: 2.5rem;
  }

  .footer-navigation {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-logo {
    font-size: 2rem;
  }

  .footer-tagline {
    font-size: 1.1rem;
  }

  .footer-description {
    font-size: 0.95rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 2.5rem 1rem 0;
  }

  .footer-logo {
    font-size: 1.8rem;
  }

  .footer-tagline {
    font-size: 1rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-title {
    font-size: 1.2rem;
  }

  .footer-link {
    font-size: 0.95rem;
  }

  .footer-contact-item {
    padding: 0.6rem 0;
  }

  .footer-copyright-text {
    font-size: 0.9rem;
  }

  .footer-tagline-bottom {
    font-size: 0.85rem;
  }
}

/* Form Styles */
.royal-contact-form {
  background: var(--gaming-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gaming-purple);
  font-weight: 600;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-light);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-textarea {
  resize: none;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gaming-cyan);
  box-shadow: 0 0 10px var(--princess-pink-transparent);
}

.submit-button {
  background: var(--gaming-accent-gradient);
  color: var(--gaming-white);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--gaming-shadow);
}

/* Map Container */
.map-container {
  background: var(--gaming-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--gaming-shadow);
}

/* Removed all animations - keeping only transitions and hover effects */

/* Utility Classes */
.dress-sprint {
  transition: all 0.3s ease;
}

.dress-sprint:hover {
  transform: translateY(-2px);
}

.charisma-hub {
  background: var(--gaming-accent-gradient);
  color: var(--gaming-white);
}

.mud-dodge {
  background: var(--mud-brown);
  color: var(--gaming-white);
}

.royal-runway {
  background: var(--gaming-gradient);
  color: var(--gaming-white);
}

/* Processing Overlay */
.processing-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.processing-overlay.show {
  opacity: 1;
  visibility: visible;
}

.processing-dots {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.processing-dot {
  width: 20px;
  height: 20px;
  background: var(--gaming-cyan);
  border-radius: 50%;
  animation: processingPulse 1.5s infinite ease-in-out;
}

.processing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.processing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes processingPulse {
  0%,
  60%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  30% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.processing-text {
  color: var(--gaming-white);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

/* Simple Notification System */
.simple-notification {
  position: fixed;
  bottom: 30px;
  left: 20px;
  right: 20px;
  transform: translateY(100px);
  background: linear-gradient(
    45deg,
    var(--success-green),
    var(--success-green-dark)
  );
  color: var(--gaming-white);
  padding: 1rem 2rem;
  border-radius: 25px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  z-index: 10001;
  opacity: 0;
  transition: all 0.3s ease;
  max-width: none;
  text-align: center;
  font-weight: 700;
  text-shadow: 2px 2px 4px var(--shadow-medium);
}

.simple-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Floating Sparkles - Animation removed */

/* Improvement and Diary Cards */
.improvement-card,
.diary-card {
  background: var(--gaming-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.improvement-card:hover,
.diary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--gaming-shadow);
}

.improvement-title,
.diary-title {
  color: var(--gaming-purple);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.improvement-date,
.diary-date {
  color: var(--gaming-cyan);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.improvement-description,
.diary-story {
  color: var(--gaming-black);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.diary-author {
  color: var(--sprint-vibe);
  font-style: italic;
  font-weight: 500;
}

/* Contact Detail Items */
.contact-detail-item {
  background: var(--gaming-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-detail-item .contact-icon {
  font-size: 2rem;
  color: var(--gaming-cyan);
}

.contact-detail-item .contact-info h3 {
  color: var(--gaming-purple);
  margin-bottom: 0.5rem;
}

.contact-detail-item .contact-info p {
  color: var(--gaming-black);
  margin: 0;
}

.contact-detail-item .contact-info a {
  color: var(--gaming-cyan);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-item .contact-info a:hover {
  color: var(--charisma-glow);
}

.contact-detail-item .contact-description {
  color: var(--gaming-black);
  font-size: 0.9rem;
  margin-top: 0.8rem;
  opacity: 0.8;
  line-height: 1.4;
}

/* Responsive adjustments for cookie banner */
@media (max-width: 767px) {
  .royal-notification {
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }

  .royal-notification.show {
    transform: translateY(0);
  }
}

/* Legal Pages Styling */
.disclaimer-content,
.cookies-content,
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-content h1,
.cookies-content h1,
.privacy-content h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--gaming-purple);
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px var(--gaming-shadow);
}

.disclaimer-text,
.cookies-text,
.privacy-text {
  background: var(--gaming-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  line-height: 1.8;
}

.disclaimer-text h2,
.cookies-text h2,
.privacy-text h2 {
  color: var(--gaming-purple);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.disclaimer-text h3,
.cookies-text h3,
.privacy-text h3 {
  color: var(--gaming-cyan);
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  border-bottom: 2px solid var(--gaming-yellow);
  padding-bottom: 0.5rem;
}

.disclaimer-text h4,
.cookies-text h4,
.privacy-text h4 {
  color: var(--sprint-vibe);
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem 0;
}

.disclaimer-text p,
.cookies-text p,
.privacy-text p {
  margin-bottom: 1rem;
  color: var(--gaming-black);
}

.disclaimer-text ul,
.cookies-text ul,
.privacy-text ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.disclaimer-text li,
.cookies-text li,
.privacy-text li {
  margin-bottom: 0.5rem;
  color: var(--gaming-black);
}

.disclaimer-text strong,
.cookies-text strong,
.privacy-text strong {
  color: var(--gaming-purple);
  font-weight: 600;
}

.disclaimer-date,
.cookies-date,
.privacy-date {
  text-align: center;
  font-style: italic;
  color: var(--gaming-cyan);
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gaming-yellow);
}

/* Cookie Types Grid */
.cookie-types {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.cookie-type {
  background: var(--gaming-white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--gaming-shadow);
  flex: 1;
  min-width: 250px;
  border-left: 4px solid var(--gaming-cyan);
}

.cookie-type h4 {
  color: var(--gaming-purple);
  margin-bottom: 0.5rem;
}

.cookie-type p {
  color: var(--gaming-black);
  margin: 0;
}

/* Info Collection Grid */
.info-collection {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.collection-type {
  background: var(--gaming-white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--gaming-shadow);
  flex: 1;
  min-width: 250px;
  border-left: 4px solid var(--sprint-vibe);
}

.collection-type h4 {
  color: var(--gaming-purple);
  margin-bottom: 0.5rem;
}

.collection-type p {
  color: var(--gaming-black);
  margin: 0;
}

/* Responsive adjustments for legal pages */
@media (max-width: 767px) {
  .disclaimer-text,
  .cookies-text,
  .privacy-text {
    padding: 1.5rem;
  }

  .cookie-types,
  .info-collection {
    flex-direction: column;
  }

  .cookie-type,
  .collection-type {
    min-width: 100%;
  }
}

/* Gaming Hero Section Styles */
.gaming-hero {
  background: linear-gradient(135deg, #1e3a8a69, #8b5cf6ab),
    url("../public/hero.webp");
  padding: 4rem 2rem;
  margin-bottom: 4rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* .gaming-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
} */

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--gaming-white);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gaming-cyan);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.join-community-btn {
  background: var(--gaming-accent-gradient);
  color: var(--gaming-white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.join-community-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: var(--gaming-white);
}

.learn-more-btn {
  background: transparent;
  color: var(--gaming-white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--gaming-white);
}

.learn-more-btn:hover {
  background: var(--gaming-white);
  color: var(--gaming-blue);
  transform: translateY(-3px);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gaming-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 300px;
}

.icon-item {
  font-size: 3rem;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.icon-item:nth-child(2) {
  animation-delay: 0.5s;
}

.icon-item:nth-child(3) {
  animation-delay: 1s;
}

.icon-item:nth-child(4) {
  animation-delay: 1.5s;
}

.icon-item:nth-child(5) {
  animation-delay: 2s;
}

.icon-item:nth-child(6) {
  animation-delay: 2.5s;
}

.icon-item:hover {
  transform: scale(1.1) translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .gaming-icons {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .gaming-hero {
    padding: 3rem 1.5rem;
    min-height: 70vh;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .join-community-btn,
  .learn-more-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .gaming-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 200px;
  }

  .icon-item {
    font-size: 2rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .gaming-hero {
    padding: 2rem 1rem;
    min-height: 60vh;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .gaming-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-width: 150px;
  }

  .icon-item {
    font-size: 1.5rem;
    padding: 0.8rem;
  }
}

/* Features Section Styles */
.features-section {
  padding: 6rem 2rem;
  background: var(--gaming-white);
  margin: 2rem 0;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gaming-blue);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.features-subtitle {
  font-size: 1.3rem;
  color: var(--gaming-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: var(--gaming-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gaming-accent-gradient);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--gaming-cyan);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gaming-blue);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--gaming-black);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.feature-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-benefits li {
  color: var(--gaming-gray);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.feature-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gaming-green);
  font-weight: bold;
}

.features-cta {
  text-align: center;
  background: var(--gaming-gradient);
  padding: 3rem 2rem;
  border-radius: 20px;
  color: var(--gaming-white);
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: var(--gaming-accent-gradient);
  color: var(--gaming-white);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--gaming-white);
}

/* Responsive Design for Features */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .features-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 4rem 1.5rem;
  }

  .features-title {
    font-size: 2.2rem;
  }

  .features-subtitle {
    font-size: 1.1rem;
  }

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

  .feature-card {
    padding: 2rem;
  }

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

  .cta-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .features-section {
    padding: 3rem 1rem;
  }

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

  .features-subtitle {
    font-size: 1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .feature-title {
    font-size: 1.3rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Community Stats Section Styles */
.community-stats-section {
  background: var(--gaming-gradient);
  padding: 6rem 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.community-stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stats-header {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--gaming-white);
}

.stats-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.stat-item {
  text-align: center;
  color: var(--gaming-white);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gaming-cyan);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 1rem;
  opacity: 0.8;
}

/* Testimonials Section Styles */
.testimonials-section {
  background: var(--gaming-white);
  padding: 6rem 2rem;
  margin: 2rem 0;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gaming-blue);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonials-subtitle {
  font-size: 1.3rem;
  color: var(--gaming-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--gaming-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gaming-accent-gradient);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--gaming-cyan);
}

.testimonial-content {
  margin-bottom: 2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gaming-black);
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: var(--gaming-cyan);
  position: absolute;
  top: -1rem;
  left: -1rem;
  opacity: 0.3;
  font-family: serif;
}

.testimonial-author {
  border-top: 2px solid var(--gaming-gray);
  padding-top: 1.5rem;
}

.author-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gaming-blue);
  margin-bottom: 0.5rem;
}

.author-role {
  font-size: 1rem;
  color: var(--gaming-gray);
  font-style: italic;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

  .stats-title,
  .testimonials-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .community-stats-section,
  .testimonials-section {
    padding: 4rem 1.5rem;
  }

  .stats-title,
  .testimonials-title {
    font-size: 2.2rem;
  }

  .stats-subtitle,
  .testimonials-subtitle {
    font-size: 1.1rem;
  }

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

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

  .stat-item {
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .stat-number {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .community-stats-section,
  .testimonials-section {
    padding: 3rem 1rem;
  }

  .stats-title,
  .testimonials-title {
    font-size: 1.8rem;
  }

  .stats-subtitle,
  .testimonials-subtitle {
    font-size: 1rem;
  }

  .stat-item {
    padding: 1.2rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .author-name {
    font-size: 1.1rem;
  }
}

/* Join Community CTA Section Styles */
.join-community-section {
  background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-purple));
  padding: 6rem 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.join-community-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="10,2 18,6 18,14 10,18 2,14 2,6" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
  opacity: 0.3;
}

.join-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.join-content {
  text-align: center;
  color: var(--gaming-white);
}

.join-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.join-description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.join-benefits {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

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

.benefit-text {
  font-size: 1rem;
  font-weight: 600;
}

.join-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.join-cta-button {
  background: var(--gaming-accent-gradient);
  color: var(--gaming-white);
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

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

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

.join-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  border-color: var(--gaming-white);
}

.join-note {
  font-size: 0.95rem;
  opacity: 0.8;
  font-style: italic;
  margin: 0;
}

/* Responsive Design for Join Community Section */
@media (max-width: 1024px) {
  .join-title {
    font-size: 3rem;
  }

  .join-benefits {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .join-community-section {
    padding: 4rem 1.5rem;
  }

  .join-title {
    font-size: 2.5rem;
  }

  .join-description {
    font-size: 1.1rem;
  }

  .join-benefits {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .benefit-item {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .join-cta-button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .join-community-section {
    padding: 3rem 1rem;
  }

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

  .join-description {
    font-size: 1rem;
  }

  .benefit-item {
    padding: 0.8rem 1.2rem;
    max-width: 280px;
  }

  .benefit-icon {
    font-size: 1.3rem;
  }

  .benefit-text {
    font-size: 0.9rem;
  }

  .join-cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .join-note {
    font-size: 0.9rem;
  }
}

/* Updates and News Sections Styles */
.updates-section,
.news-section {
  padding: 6rem 2rem;
  margin: 2rem 0;
}

.updates-section {
  background: var(--gaming-white);
}

.news-section {
  background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-purple));
  color: var(--gaming-white);
}

.updates-container,
.news-container {
  max-width: 1200px;
  margin: 0 auto;
}

.updates-header,
.news-header {
  text-align: center;
  margin-bottom: 4rem;
}

.updates-title,
.news-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.updates-title {
  color: var(--gaming-blue);
}

.news-title {
  color: var(--gaming-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.updates-subtitle,
.news-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.updates-subtitle {
  color: var(--gaming-gray);
}

.news-subtitle {
  color: var(--gaming-white);
  opacity: 0.9;
}

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

.update-card,
.news-card {
  background: var(--gaming-white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.news-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.update-card:hover,
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.update-card:hover {
  border-color: var(--gaming-cyan);
}

.news-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.update-header,
.news-header-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 2rem 1rem;
}

.update-icon,
.news-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.update-meta,
.news-meta {
  flex: 1;
}

.update-title,
.news-title-card {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gaming-blue);
  line-height: 1.3;
}

.news-title-card {
  color: var(--gaming-white);
}

.update-date,
.news-date {
  font-size: 0.9rem;
  color: var(--gaming-gray);
  font-weight: 500;
}

.news-date {
  color: var(--gaming-white);
  opacity: 0.8;
}

.update-preview,
.news-preview {
  padding: 0 2rem 1rem;
}

.update-preview p,
.news-preview p {
  color: var(--gaming-black);
  line-height: 1.6;
  margin: 0;
}

.news-preview p {
  color: var(--gaming-white);
  opacity: 0.9;
}

.read-more-btn {
  width: 100%;
  background: var(--gaming-accent-gradient);
  color: var(--gaming-white);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.news-card .read-more-btn {
  background: rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.read-more-btn:hover {
  background: var(--gaming-blue);
  transform: translateY(-2px);
}

.news-card .read-more-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.read-more-btn.active .btn-icon {
  transform: rotate(180deg);
}

.update-content,
.news-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.02);
}

.news-content {
  background: rgba(0, 0, 0, 0.1);
}

.update-content.active,
.news-content.active {
  max-height: 500px;
}

.update-content p,
.news-content p {
  padding: 1.5rem 2rem 0;
  color: var(--gaming-black);
  line-height: 1.6;
  margin: 0;
}

.news-content p {
  color: var(--gaming-white);
  opacity: 0.9;
}

.update-content ul,
.news-content ul {
  padding: 1rem 2rem 2rem;
  margin: 0;
  list-style: none;
}

.update-content li,
.news-content li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--gaming-black);
}

.news-content li {
  color: var(--gaming-white);
  opacity: 0.9;
}

.update-content li::before,
.news-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gaming-green);
  font-weight: bold;
}

/* Responsive Design for Updates and News */
@media (max-width: 1024px) {
  .updates-grid,
  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .updates-title,
  .news-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .updates-section,
  .news-section {
    padding: 4rem 1.5rem;
  }

  .updates-title,
  .news-title {
    font-size: 2.2rem;
  }

  .updates-subtitle,
  .news-subtitle {
    font-size: 1.1rem;
  }

  .updates-grid,
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .update-header,
  .news-header-card {
    padding: 1.5rem 1.5rem 1rem;
  }

  .update-preview,
  .news-preview {
    padding: 0 1.5rem 1rem;
  }

  .update-content p,
  .news-content p {
    padding: 1.5rem 1.5rem 0;
  }

  .update-content ul,
  .news-content ul {
    padding: 1rem 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .updates-section,
  .news-section {
    padding: 3rem 1rem;
  }

  .updates-title,
  .news-title {
    font-size: 1.8rem;
  }

  .updates-subtitle,
  .news-subtitle {
    font-size: 1rem;
  }

  .update-header,
  .news-header-card {
    padding: 1.2rem 1.2rem 0.8rem;
  }

  .update-icon,
  .news-icon {
    font-size: 2rem;
  }

  .update-title,
  .news-title-card {
    font-size: 1.1rem;
  }

  .update-preview,
  .news-preview {
    padding: 0 1.2rem 0.8rem;
  }

  .read-more-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .update-content p,
  .news-content p {
    padding: 1.2rem 1.2rem 0;
    font-size: 0.95rem;
  }

  .update-content ul,
  .news-content ul {
    padding: 0.8rem 1.2rem 1.2rem;
  }
}

/* Contact Page Styles */
.contact-info-section {
  background: var(--gaming-white);
  padding: 6rem 2rem;
  margin: 2rem 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gaming-blue);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-subtitle {
  font-size: 1.3rem;
  color: var(--gaming-gray);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.contact-card {
  background: var(--gaming-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gaming-accent-gradient);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--gaming-cyan);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.contact-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gaming-blue);
  margin-bottom: 1rem;
}

.contact-card-description {
  font-size: 1rem;
  color: var(--gaming-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-link {
  color: var(--gaming-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-link:hover {
  color: var(--gaming-cyan);
  transform: translateY(-2px);
}

.contact-address {
  color: var(--gaming-black);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}

/* FAQ Section Styles */
.faq-section {
  background: linear-gradient(135deg, var(--gaming-blue), var(--gaming-purple));
  padding: 6rem 2rem;
  margin: 2rem 0;
  color: var(--gaming-white);
}

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

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 2rem;
  color: var(--gaming-white);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-question.active {
  background: rgba(255, 255, 255, 0.2);
}

.question-text {
  flex: 1;
  margin-right: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  width: 30px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.1);
}

.faq-answer.active {
  max-height: 200px;
}

.faq-answer p {
  padding: 1.5rem 2rem 2rem;
  margin: 0;
  line-height: 1.6;
  opacity: 0.9;
}

/* Location Section Styles */
.location-section {
  background: var(--gaming-white);
  padding: 6rem 2rem;
  margin: 2rem 0;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
}

.location-header {
  text-align: center;
  margin-bottom: 3rem;
}

.location-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gaming-blue);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.location-subtitle {
  font-size: 1.3rem;
  color: var(--gaming-gray);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--gaming-cyan);
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
  .contact-details-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .contact-title,
  .faq-title,
  .location-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contact-info-section,
  .faq-section,
  .location-section {
    padding: 4rem 1.5rem;
  }

  .contact-title,
  .faq-title,
  .location-title {
    font-size: 2.2rem;
  }

  .contact-subtitle,
  .faq-subtitle,
  .location-subtitle {
    font-size: 1.1rem;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 1.2rem 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-info-section,
  .faq-section,
  .location-section {
    padding: 3rem 1rem;
  }

  .contact-title,
  .faq-title,
  .location-title {
    font-size: 1.8rem;
  }

  .contact-subtitle,
  .faq-subtitle,
  .location-subtitle {
    font-size: 1rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-icon {
    font-size: 2.5rem;
  }

  .contact-card-title {
    font-size: 1.3rem;
  }

  .faq-question {
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 1rem 1.2rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* Terms & Conditions Page Styles */
.terms-section {
  background: var(--gaming-white);
  padding: 6rem 2rem;
  margin: 2rem 0;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

.terms-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 3px solid var(--gaming-cyan);
}

.terms-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gaming-blue);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-subtitle {
  font-size: 1.3rem;
  color: var(--gaming-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.terms-last-updated {
  font-size: 1rem;
  color: var(--gaming-cyan);
  font-weight: 600;
  font-style: italic;
}

.terms-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.terms-section-item {
  background: var(--gaming-white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--gaming-cyan);
  transition: all 0.3s ease;
}

.terms-section-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.terms-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gaming-blue);
  margin-bottom: 1.5rem;
  position: relative;
}

.terms-section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gaming-accent-gradient);
  border-radius: 2px;
}

.terms-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gaming-black);
  margin-bottom: 1.5rem;
}

.terms-text:last-child {
  margin-bottom: 0;
}

.terms-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.terms-list li {
  padding: 0.8rem 0;
  position: relative;
  padding-left: 2rem;
  color: var(--gaming-black);
  line-height: 1.6;
  font-size: 1rem;
}

.terms-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gaming-green);
  font-weight: bold;
  font-size: 1.2rem;
}

.contact-info {
  background: rgba(59, 130, 246, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--gaming-cyan);
  margin-top: 1rem;
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: var(--gaming-black);
}

.contact-info strong {
  color: var(--gaming-blue);
  font-weight: 600;
}

/* Responsive Design for Terms Page */
@media (max-width: 1024px) {
  .terms-title {
    font-size: 3rem;
  }

  .terms-section-item {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .terms-section {
    padding: 4rem 1.5rem;
  }

  .terms-title {
    font-size: 2.5rem;
  }

  .terms-subtitle {
    font-size: 1.1rem;
  }

  .terms-section-item {
    padding: 1.5rem;
  }

  .terms-section-title {
    font-size: 1.5rem;
  }

  .terms-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .terms-section {
    padding: 3rem 1rem;
  }

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

  .terms-subtitle {
    font-size: 1rem;
  }

  .terms-section-item {
    padding: 1.2rem;
  }

  .terms-section-title {
    font-size: 1.3rem;
  }

  .terms-text {
    font-size: 0.95rem;
  }

  .terms-list li {
    font-size: 0.95rem;
    padding: 0.6rem 0;
  }

  .contact-info {
    padding: 1.2rem;
  }

  .contact-info p {
    font-size: 0.95rem;
  }
}

/* Gaming Community Section Styles */
.game-demo-section {
  padding: 4rem 2rem;
  background: var(--gaming-white);
  margin: 2rem 0;
}

.game-demo-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gaming-community-content {
  text-align: center;
  width: 100%;
}

.community-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.community-feature {
  background: var(--gaming-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.community-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--gaming-shadow);
  border-color: var(--gaming-cyan);
}

.community-feature h3 {
  color: var(--gaming-purple);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.community-feature p {
  color: var(--gaming-black);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* Royal Game Updates Section */
.royal-game-updates {
  padding: 4rem 2rem;
  background: linear-gradient(var(--shadow-dark), var(--shadow-dark)),
    url("../public/princess-hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--gaming-white);
  margin: 2rem 0;
  border-radius: 20px;
}

.royal-game-updates .section-title {
  color: var(--gaming-white);
  text-shadow: 2px 2px 4px var(--gaming-shadow);
}

.royal-updates-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.royal-update-card {
  background: var(--overlay-light);
  color: var(--gaming-black);
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  border-left: 4px solid var(--gaming-cyan);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.royal-update-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--gaming-shadow);
}

.royal-update-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gaming-purple);
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px var(--shadow-light);
}

.royal-update-date {
  font-size: 0.9rem;
  color: var(--gaming-cyan);
  font-weight: 600;
  margin-bottom: 0.8rem;
  opacity: 0.8;
}

.royal-update-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gaming-black);
  margin: 0;
}

/* Princess Adventure Stories Section */
.royal-princess-chronicles {
  padding: 4rem 2rem;
  background: linear-gradient(
    135deg,
    var(--royal-purple-transparent),
    var(--princess-pink-transparent-2)
  );
  margin: 2rem 0;
  border-radius: 20px;
}

.royal-princess-chronicles .section-title {
  color: var(--gaming-white);
  text-shadow: 2px 2px 4px var(--gaming-shadow);
}

.royal-chronicles-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.royal-chronicle-card {
  background: var(--overlay-light);
  color: var(--gaming-black);
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  border-left: 4px solid var(--gaming-yellow);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.royal-chronicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--gaming-shadow);
}

.royal-chronicle-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gaming-purple);
  margin-bottom: 0.5rem;
}

.royal-chronicle-author {
  font-size: 0.9rem;
  color: var(--gaming-cyan);
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-style: italic;
}

.royal-chronicle-content {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gaming-black);
  margin-bottom: 0.8rem;
}

.royal-chronicle-date {
  font-size: 0.85rem;
  color: var(--gaming-purple);
  font-weight: 600;
  text-align: right;
}

/* Contact Page Section Margins */
.contact-info {
  margin-bottom: 4rem;
}

.contact-form-section {
  margin-bottom: 4rem;
}

.royal-location {
  margin-bottom: 2rem;
}

/* Contact Details Grid */
.contact-details {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-detail-item {
  background: var(--gaming-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px var(--gaming-shadow);
  border-left: 4px solid var(--gaming-cyan);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  flex-direction: column;
}

.contact-detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--gaming-shadow);
}

.contact-detail-item h3 {
  color: var(--gaming-purple);
  font-size: 1.3rem;

  font-weight: 700;
}

.contact-detail-item p,
.contact-detail-item a {
  color: var(--gaming-black);
  text-decoration: none;
  font-size: 1.1rem;
  margin: 0;
  transition: color 0.3s ease;
}

.contact-detail-item a:hover {
  color: var(--gaming-cyan);
}

/* Cookie Banner Styles */
.cookie-banner-main {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gaming-gradient);
  color: var(--gaming-white);
  box-shadow: 0 -4px 20px var(--gaming-shadow);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-banner-main.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gaming-white);
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cookie-accept-button {
  background: var(--gaming-yellow);
  color: var(--gaming-black);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--gaming-shadow);
}

.cookie-accept-button:hover {
  background: var(--hover-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-medium);
}

.cookie-accept-button:active {
  transform: translateY(0);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
  }

  .cookie-banner-text p {
    font-size: 0.9rem;
  }

  .cookie-accept-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .cookie-banner-content {
    padding: 0.8rem;
  }

  .cookie-banner-text p {
    font-size: 0.85rem;
  }

  .cookie-accept-button {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}
