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

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(to bottom, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  color: #e0e0e0;
  min-height: 100vh;
  line-height: 1.7;
}

.site-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-bottom: 2px solid #c49a3c;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(196, 154, 60, 0.3);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-symbol {
  font-size: 2rem;
  color: #c49a3c;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #d4af6a;
  letter-spacing: 2px;
}

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

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: #c49a3c;
  transition: all 0.3s ease;
}

.navigation {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #b0b0b0;
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #c49a3c;
  border-bottom-color: #c49a3c;
}

.nav-link.current {
  color: #d4af6a;
  border-bottom-color: #d4af6a;
}

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

.masthead {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 45, 45, 0.95)),
              radial-gradient(circle at 50% 50%, rgba(196, 154, 60, 0.1), transparent);
  padding: 6rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(196, 154, 60, 0.3);
  margin-bottom: 4rem;
}

.masthead-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: #d4af6a;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
}

.masthead-tagline {
  font-size: 1.4rem;
  color: #b0b0b0;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.cta-link {
  display: inline-block;
  background: linear-gradient(135deg, #c49a3c 0%, #d4af6a 100%);
  color: #1a1a1a;
  padding: 1.25rem 3rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(196, 154, 60, 0.4);
}

.cta-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(196, 154, 60, 0.6);
}

.introduction {
  padding: 3rem 0;
}

.intro-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: #d4af6a;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.intro-content p {
  font-size: 1.1rem;
  color: #c0c0c0;
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.pillars {
  padding: 4rem 0;
  background: rgba(26, 26, 26, 0.6);
  border-top: 1px solid rgba(196, 154, 60, 0.2);
  border-bottom: 1px solid rgba(196, 154, 60, 0.2);
}

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

.pillar-item {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.8), rgba(26, 26, 26, 0.8));
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(196, 154, 60, 0.3);
  transition: all 0.3s ease;
}

.pillar-item:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 154, 60, 0.6);
  box-shadow: 0 10px 30px rgba(196, 154, 60, 0.2);
}

.pillar-icon {
  font-size: 3rem;
  color: #c49a3c;
  margin-bottom: 1.5rem;
}

.pillar-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: #d4af6a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.pillar-item p {
  color: #b0b0b0;
  line-height: 1.8;
}

.featured-game {
  padding: 4rem 0;
}

.game-presentation h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: #d4af6a;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.game-description {
  text-align: center;
  font-size: 1.15rem;
  color: #b0b0b0;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}

.game-container {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid rgba(196, 154, 60, 0.4);
}

.game-embed {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 4px;
}

.essential-information {
  padding: 4rem 0;
  background: rgba(45, 45, 45, 0.4);
}

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

.info-panel {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(45, 45, 45, 0.9));
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 4px solid;
}

.emphasis-gold {
  border-left-color: #c49a3c;
}

.emphasis-silver {
  border-left-color: #a0a0a0;
}

.emphasis-bronze {
  border-left-color: #cd7f32;
}

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

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

.info-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #d4af6a;
  font-weight: 600;
}

.info-panel p {
  color: #b0b0b0;
  line-height: 1.8;
}

.advantages {
  padding: 4rem 0;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: #d4af6a;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 600;
}

.advantages-list {
  display: grid;
  gap: 2rem;
}

.advantage-card {
  display: flex;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.6), rgba(26, 26, 26, 0.6));
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(196, 154, 60, 0.2);
  align-items: center;
}

.advantage-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(196, 154, 60, 0.3);
  flex-shrink: 0;
}

.advantage-details h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #d4af6a;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.advantage-details p {
  color: #b0b0b0;
  line-height: 1.8;
}

.site-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border-top: 2px solid #c49a3c;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

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

.footer-column h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #d4af6a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-column p {
  color: #a0a0a0;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.resource-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.resource-links a {
  color: #c49a3c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.resource-links a:hover {
  color: #d4af6a;
  text-decoration: underline;
}

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

.footer-legal {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 154, 60, 0.2);
  color: #707070;
  font-size: 0.9rem;
}

.age-verification {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(8px);
}

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

.verification-panel {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 3rem;
  border-radius: 8px;
  max-width: 500px;
  text-align: center;
  border: 2px solid #c49a3c;
  box-shadow: 0 20px 60px rgba(196, 154, 60, 0.4);
}

.verification-icon {
  font-size: 4rem;
  color: #c49a3c;
  margin-bottom: 1.5rem;
}

.verification-panel h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #d4af6a;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.verification-panel p {
  color: #b0b0b0;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.verification-note {
  font-size: 0.95rem;
  color: #909090;
}

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

.verify-button {
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
}

.verify-button.primary {
  background: linear-gradient(135deg, #c49a3c 0%, #d4af6a 100%);
  color: #1a1a1a;
}

.verify-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(196, 154, 60, 0.5);
}

.verify-button.secondary {
  background: rgba(96, 96, 96, 0.5);
  color: #b0b0b0;
}

.verify-button.secondary:hover {
  background: rgba(96, 96, 96, 0.8);
}

.page-title {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 45, 45, 0.95));
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(196, 154, 60, 0.3);
  margin-bottom: 3rem;
}

.page-title h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: #d4af6a;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.page-title p {
  font-size: 1.3rem;
  color: #b0b0b0;
}

.page-title-alt {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 45, 45, 0.95));
  padding: 3rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(196, 154, 60, 0.3);
  margin-bottom: 2rem;
}

.page-title-alt h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: #d4af6a;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.page-title-alt p {
  font-size: 1.1rem;
  color: #909090;
}

.gameplay-section {
  padding: 2rem 0 4rem;
}

.gameplay-guide {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.6), rgba(26, 26, 26, 0.6));
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(196, 154, 60, 0.3);
  margin-bottom: 3rem;
}

.gameplay-guide h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #d4af6a;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.guide-text p {
  color: #b0b0b0;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.guide-text h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #d4af6a;
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.instruction-points {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.instruction-points li {
  color: #b0b0b0;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.8;
}

.instruction-points li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #c49a3c;
}

.important-notice {
  background: rgba(196, 154, 60, 0.15);
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid #c49a3c;
  margin-top: 1.5rem;
  color: #d4af6a;
  line-height: 1.8;
}

.game-section h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #d4af6a;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
}

.game-subtitle {
  text-align: center;
  color: #b0b0b0;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.game-frame {
  background: rgba(26, 26, 26, 0.8);
  padding: 2rem;
  border-radius: 8px;
  border: 2px solid rgba(196, 154, 60, 0.4);
}

.game-display {
  width: 100%;
  height: 700px;
  border: none;
  border-radius: 4px;
}

.document-content {
  padding: 2rem 0 4rem;
}

.document-section {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.6), rgba(26, 26, 26, 0.6));
  padding: 2.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 3px solid rgba(196, 154, 60, 0.5);
}

.document-section h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #d4af6a;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.document-section p {
  color: #b0b0b0;
  margin-bottom: 1rem;
  line-height: 1.9;
}

.document-section ul {
  color: #b0b0b0;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.document-section li {
  margin-bottom: 0.75rem;
  line-height: 1.9;
}

.prominent-notice {
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.8), rgba(26, 26, 26, 0.8));
  padding: 3rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 2px solid;
}

.age-restriction {
  border-color: #f59e0b;
}

.monetary-restriction {
  border-color: #c49a3c;
}

.entertainment-focus {
  border-color: #10b981;
}

.notice-symbol {
  font-size: 3.5rem;
  text-align: center;
  color: #c49a3c;
  margin-bottom: 1.5rem;
}

.prominent-notice h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #d4af6a;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.prominent-notice p {
  color: #c0c0c0;
  margin-bottom: 1.25rem;
  line-height: 1.9;
}

.prominent-notice ul {
  color: #c0c0c0;
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.prominent-notice li {
  margin-bottom: 0.75rem;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid rgba(196, 154, 60, 0.3);
  }

  .navigation.active {
    max-height: 400px;
  }

  .nav-link {
    padding: 1.25rem 2rem;
    border-bottom: 1px solid rgba(196, 154, 60, 0.2);
    border-left: none;
  }

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

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

  .intro-content h2 {
    font-size: 2rem;
  }

  .game-presentation h2 {
    font-size: 2.2rem;
  }

  .game-embed {
    height: 400px;
  }

  .game-display {
    height: 500px;
  }

  .advantage-card {
    flex-direction: column;
    text-align: center;
  }

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

  .verification-panel {
    margin: 1rem;
    padding: 2rem 1.5rem;
  }

  .verification-actions {
    flex-direction: column;
  }

  .page-title h1 {
    font-size: 2.5rem;
  }

  .page-title-alt h1 {
    font-size: 2.2rem;
  }

  .container {
    padding: 0 1rem;
  }
}
