.hero {
  padding: 120px 0 60px;
  text-align: center;
  color: #ffffae;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10 L90 90 L10 90 Z' fill='none' stroke='rgba(255,226,155,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.1;
}

.back-button {
  display: inline-block;
  background: linear-gradient(135deg, #0d5400, #231e00);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.back-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 84, 0, 0.3);
}

.game-icon {
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, #ff37bb, #ffffae);
  border-radius: 25px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #231e00;
  box-shadow: 0 15px 40px rgba(255, 55, 187, 0.3);
  position: relative;
  z-index: 2;
  object-fit: contain;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(35, 30, 0, 0.5);
  position: relative;
  z-index: 2;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.game-content {
  background: rgba(255, 255, 174, 0.95);
  margin: 0 auto 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(35, 30, 0, 0.2);
  overflow: hidden;
}

.content-header {
  background: linear-gradient(135deg, #0d5400, #ff37bb);
  color: white;
  padding: 40px;
  text-align: center;
}

.content-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.content-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.content-body {
  padding: 50px 40px;
}

.game-description {
  margin-bottom: 40px;
}

.game-description h3 {
  color: #231e00;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.game-description p {
  color: #231e00;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.1rem;
}

.game-features {
  background: #ffa295;
  border-radius: 15px;
  padding: 30px;
  margin: 30px 0;
  border-left: 5px solid #ff37bb;
}

.game-features h4 {
  color: #231e00;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feature-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(35, 30, 0, 0.1);
  text-align: center;
}

.feature-icon {
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
}

.feature-item h5 {
  color: #0d5400;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-item p {
  color: #231e00;
  font-size: 14px;
  margin: 0;
}

.how-to-play {
  background: rgba(255, 162, 149, 0.5);
  border-radius: 15px;
  padding: 30px;
  margin: 30px 0;
  border-left: 5px solid #0d5400;
}

.how-to-play h4 {
  color: #0d5400;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.how-to-play ol {
  padding-left: 25px;
}

.how-to-play li {
  color: #231e00;
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 1rem;
}

.how-to-play li::marker {
  color: #0d5400;
  font-weight: bold;
}

.cta-section {
  text-align: center;
  padding: 40px;
  background: linear-gradient(
    135deg,
    rgba(255, 55, 187, 0.1),
    rgba(255, 255, 174, 0.1)
  );
  border-radius: 15px;
  margin-top: 40px;
}

.cta-button {
  background: linear-gradient(135deg, #ff37bb, #0d5400);
  color: white;
  padding: 20px 50px;
  border: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(255, 55, 187, 0.3);
  margin-bottom: 20px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 55, 187, 0.4);
}

.cta-text {
  color: #231e00;
  font-size: 14px;
  margin-top: 15px;
}

.disclaimer {
  background: rgba(255, 162, 149, 0.1);
  padding: 40px 0;
  text-align: center;
  color: #ffffae;
  border-top: 1px solid rgba(255, 255, 174, 0.2);
}

.disclaimer p {
  font-size: 14px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

.footer {
  background: rgba(35, 30, 0, 0.9);
  color: #ffffae;
  padding: 40px 0 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffa295;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffae;
}

.footer-badge {
  margin: 20px 0;
}

.footer-copyright {
  font-size: 12px;
  color: #ff37bb;
  border-top: 1px solid #0d5400;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .game-content {
    margin: 0 20px 40px;
  }

  .content-body {
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 360px) {
  .header-content {
    padding: 15px 15px;
  }

  .game-content {
    margin: 0 15px 40px;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .content-header {
    padding: 30px 20px;
  }

  .cta-button {
    padding: 18px 40px;
    font-size: 18px;
  }
}

#SCcont33568 {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
#SCgFrame33568 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
