  @font-face {
  font-family: 'Super Caramel';
  src: url('fonts/SuperCaramel.woff2') format('woff2'),
      url('fonts/SuperCaramel.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  }

  @font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans-Regular.woff2') format('woff2'),
      url('fonts/NotoSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  }

  @font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans-Italic.woff2') format('woff2'),
      url('fonts/NotoSans-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  }

  @font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans-Italic.woff2') format('woff2'),
      url('fonts/NotoSans-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  }

  @font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans-BoldItalic.woff2') format('woff2'),
      url('fonts/NotoSans-BoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  }

  body {
  margin: 0;
  font-family: 'Noto Sans', sans-serif;
  background: #0c1c23;
  color: #bbbbbb;
  }

  h2, h3 {
  font-family: 'Super Caramel', sans-serif;
  letter-spacing: 0.03em;
  }

  header {
  background: #0c1c23;
  padding: 1rem;
  border-bottom: 1px solid #333;
  }

  .nav-container {
  max-width: 900px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  }

  nav a{
  color: #b04f2f;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: bold;
  font-family: inherit;
  transition: color 0.2s ease;
  }

  a {
  color: #b04f2f;
  text-decoration: none;
  font-weight: bold;
  font-family: inherit;
  transition: color 0.2s ease; 
  }

  nav a:hover, a:hover {
  color: #ff7e55;
  text-decoration: underline;
  }

  main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  }

  .hero {
  text-align: center;
  margin-bottom: 3rem;
  }

  .hero img {
  max-width: 300px;
  width: 80%;
  margin-bottom: 1rem;
  }

  .tagline {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff7140;
  }

  .play-button {
  background: #b04f2f;
  color: #fff;
  padding: 1rem 5rem;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: normal;
  border-radius: 8px;
  display: inline-block;
  transition: background 0.2s ease;
  }

  .play-button:hover {
  background: #aaa;
  }

  a.play-button {
  font-family: 'Super Caramel', sans-serif;
  letter-spacing: 0.06em;
  color: #0c1c23;  
  }

  a.play-button:hover {
  color: #0c1c23;
  text-decoration: none;
  }

  section {
  margin-bottom: 3rem;
  }

  h2 {
  font-size: 2rem;
  color: #b25231;
  }

  p {
  font-size: 1.1rem;
  line-height: 1.6;
  }

  .faq-item {
  margin-bottom: 1.5rem;
  }

  .faq-item h3 {
  font-size: 1.2rem;
  color: #f6834b;
  margin-bottom: 0.25rem;
  }

  .faq-item summary {
  cursor: pointer;
  font-size: 1.2rem;
  color: #aaa;
  font-weight: bold;
  margin-bottom: 0.5rem;
  }

  .faq-item[open] summary {
  color: #ff7e55;
  }

  .faq-item p {
  margin-left: 1.5rem;
  }

  .faq-item {
  transition: all 0.7s ease;
  margin-bottom: 1rem;
  border-bottom: 1px solid #222;
  padding-bottom: 0.5rem;
  }

  footer {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  padding: 2rem;
  border-top: 1px solid #333;
  }

  .dropdown {
  position: relative;
  display: inline-block;
  }

  .dropdown a {
  font-weight: bold;
  }

  .dropdown-content {
  display: none;
  position: absolute;
  background-color: #1a2b31;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 1000;
  border-radius: 6px;
  overflow: hidden;
  }

  .dropdown-content a {
  color: #fff;
  padding: 10px 5px;
  text-decoration: none;
  display: block;
  background-color: #1a2b31;
  margin-left: 0.25rem;
  }

  .dropdown-content a:hover {
  background-color: #2c3d49;
  }

  .dropdown:hover .dropdown-content {
  display: block;
  }

    .rules-container {
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: auto;
  }

  .rule {
    margin-bottom: 2rem;
  }

  .rule h3 {
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.3rem;
  }

  .rule ul {
    padding-left: 1.5rem;
    list-style-type: disc;
  }

  .rule p {
    margin: 0.5rem 0;
  }

  .rule strong {
    color: #ffffff;
  }