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

body {
  font-family: 'Lato', sans-serif;
  background: #fafaf9;
  color: #292524;
  line-height: 1.6;
}

.page-wrapper {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 280px;
  background: linear-gradient(180deg, #78350f 0%, #92400e 100%);
  color: white;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.sidebar-header {
  padding: 2rem 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.05);
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  letter-spacing: 3px;
}

.close-sidebar {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

.sidebar-nav {
  padding: 2rem 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  border-left: 4px solid transparent;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-left-color: #fbbf24;
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-left-color: #fbbf24;
  font-weight: 700;
}

.sidebar-footer {
  padding: 2rem 1.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  margin-top: auto;
}

.sidebar-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.5;
}

/* Main Content */
.main-content {
  flex: 1;
  margin-left: 280px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  background: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #78350f;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.top-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #78350f;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .close-sidebar {
    display: block;
  }

  .main-content {
    margin-left: 0;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Age Verification Modal */
.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(120, 53, 15, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.age-modal.hidden {
  display: none;
}

.age-modal-box {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 3px solid #d97706;
}

.age-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.age-modal-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #78350f;
  margin-bottom: 1.5rem;
}

.age-modal-box p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #57534e;
}

.age-modal-box p strong {
  color: #78350f;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.btn-confirm,
.btn-decline {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
}

.btn-confirm {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: white;
}

.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

.btn-decline {
  background: #78716c;
  color: white;
}

.btn-decline:hover {
  background: #57534e;
}

/* Main Content Sections */
main {
  flex: 1;
  padding: 2rem;
}

.welcome-banner {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 5rem 3rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.banner-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #78350f;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tagline {
  font-size: 1.5rem;
  color: #92400e;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.primary-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #78350f, #92400e);
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(120, 53, 15, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(120, 53, 15, 0.4);
}

.banner-decoration {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  font-size: 2.5rem;
  color: #d97706;
  opacity: 0.4;
}

.decoration-item {
  animation: float 3s ease-in-out infinite;
}

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

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

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

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

/* Content Sections */
.about-section,
.featured-game,
.important-info,
.why-venthor,
.responsibility-statement {
  margin-bottom: 4rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #78350f;
  margin-bottom: 2rem;
  text-align: center;
}

.content-box {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #d97706;
}

.content-box p {
  font-size: 1.1rem;
  color: #57534e;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Featured Game */
.game-display {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.game-container-home {
  background: #1c1917;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.game-embed {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 10px;
  display: block;
}

.game-description {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.game-description h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #78350f;
  margin-bottom: 1rem;
}

.game-description p {
  color: #57534e;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.secondary-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.info-card.gold {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-color: #d97706;
}

.info-card.amber {
  background: linear-gradient(135deg, #fde68a, #fcd34d);
  border-color: #f59e0b;
}

.info-card.bronze {
  background: linear-gradient(135deg, #fed7aa, #fdba74);
  border-color: #ea580c;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #78350f;
  margin-bottom: 1rem;
}

.info-card p {
  color: #57534e;
  line-height: 1.7;
}

/* Why Venthor */
.difference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.difference-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #d97706;
}

.difference-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.diff-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: #fde68a;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.difference-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #78350f;
  margin-bottom: 1rem;
}

.difference-card p {
  color: #57534e;
  line-height: 1.7;
}

/* Responsibility Statement */
.statement-box {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  padding: 3rem;
  border-radius: 16px;
  border: 3px solid #dc2626;
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.15);
}

.statement-box h2 {
  color: #991b1b;
}

.statement-box p {
  font-size: 1.1rem;
  color: #7f1d1d;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.support-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.support-links a {
  padding: 0.8rem 1.5rem;
  background: white;
  color: #991b1b;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #dc2626;
}

.support-links a:hover {
  background: #991b1b;
  color: white;
  transform: translateY(-2px);
}

/* Footer */
.page-footer {
  background: linear-gradient(180deg, #78350f 0%, #92400e 100%);
  color: white;
  padding: 3rem 2rem 1.5rem;
  margin-top: auto;
}

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

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fde68a;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #fde68a;
  padding-left: 5px;
}

.footer-legal {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

/* Play Page */
.play-intro {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 16px;
  margin-bottom: 3rem;
}

.play-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #78350f;
  margin-bottom: 1rem;
}

.play-description {
  font-size: 1.2rem;
  color: #92400e;
  max-width: 800px;
  margin: 0 auto;
}

.game-fullview {
  margin-bottom: 3rem;
}

.game-frame-wrapper {
  background: #1c1917;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.game-iframe-full {
  width: 100%;
  height: 80vh;
  min-height: 600px;
  border: none;
  border-radius: 12px;
  display: block;
}

.game-guide {
  margin-bottom: 3rem;
}

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

.guide-panel {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #d97706;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.guide-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #78350f;
}

.guide-panel p {
  color: #57534e;
  line-height: 1.7;
}

/* Legal Pages */
.legal-document {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.legal-document h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #78350f;
  margin-bottom: 1rem;
}

.document-date {
  font-style: italic;
  color: #78716c;
  margin-bottom: 3rem;
}

.document-content {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.document-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #78350f;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

.document-content h2:first-child {
  margin-top: 0;
}

.document-content p {
  color: #57534e;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.document-content ul {
  margin: 1rem 0 1.5rem 2rem;
  color: #57534e;
}

.document-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  main {
    padding: 1.5rem;
  }

  .welcome-banner {
    padding: 3rem 2rem;
  }

  .banner-content h1 {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .content-box {
    padding: 2rem;
  }

  .game-embed {
    height: 400px;
  }

  .game-iframe-full {
    height: 60vh;
    min-height: 400px;
  }

  .age-modal-box {
    margin: 0 20px;
    padding: 2rem 1.5rem;
  }

  .age-buttons {
    flex-direction: column;
  }

  .document-content {
    padding: 2rem 1.5rem;
  }

  .legal-document h1 {
    font-size: 2.2rem;
  }

  .banner-decoration {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .banner-content h1 {
    font-size: 2rem;
  }

  .primary-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}
