@font-face {
  font-family: "Poppins";
  src: url('/font/Montserrat-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url('/font/Poppins-Light.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Montserrat", sans-serif;
}

.hero,
.games-page-hero,
.contact-hero,
.policy-hero {
  height: auto;
  min-height: 60svh;
  padding: 80px 20px 40px;
  text-align: center;
  background-position: center;
}

/* Fix for overlapping text in hero */
.hero-content,
.games-page-hero-content,
.contact-hero-content,
.policy-hero-content {
  width: 100%;
  max-width: 100%;
  padding: 20px 15px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Fix heading sizes for mobile */
.hero h2,
.games-page-hero-content h1,
.contact-hero-content h1,
.policy-hero h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

/* Fix paragraph text for mobile */
.hero p,
.games-page-hero-content p,
.contact-hero-content p,
.policy-hero p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Navigation fixes */
header {
  padding: 10px 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(26, 15, 10, 0.7);
}

/* Logo fixes */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.logo-hex {
  width: 40px;
  height: 40px;
}

/* Navigation menu fixes */
nav ul {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 30px;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  font-size: 0.9rem;
  padding: 5px;
}

/* Fix for mobile menu spacing */
@media (max-width: 480px) {
  nav ul {
    gap: 20px;
  }

  .hero h2,
  .games-page-hero-content h1,
  .contact-hero-content h1,
  .policy-hero h1 {
    font-size: 1.8rem;
  }

  .hero {
    min-height: 50svh;
  }
}

/* Fix for very small screens */
@media (max-width: 360px) {
  nav ul {
    gap: 15px;
  }

  .hero h2,
  .games-page-hero-content h1,
  .contact-hero-content h1,
  .policy-hero h1 {
    font-size: 1.6rem;
  }
}

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #1a0f0a;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #ffffff;
}

ul {
  list-style: none;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-hex {
  background-color: #1a0f0a;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 2px solid #ff8c00;
  margin-right: 10px;
}

.logo-hex i {
  color: #ffffff;
  font-size: 24px;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 2rem;
}

nav ul li a {
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ff8c00;
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url('/img/photo1.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 15, 10, 0.6);
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  background: rgba(26, 15, 10, 0.7);
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ff8c00;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-button {
  background: linear-gradient(45deg, #ff8c00, #ffd700);
  color: #1a0f0a;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  font-weight: bold;
}

.cta-button i {
  margin-right: 10px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

/* About Section */
.about-section {
  padding: 5rem 5%;
  background-color: #1a0f0a;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ff8c00;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

/* Features Section */
.features-section {
  padding: 5rem 5%;
  background-color: #1a0f0a;
}

.features-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.features-text {
  flex: 1;
}

.features-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ff8c00;
}

.features-text p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.features-image {
  flex: 1;
}

.features-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Games Section */
.games-section {
  padding: 5rem 5%;
  background-color: #1a0f0a;
  text-align: center;
}

.games-title {
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #ff8c00;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(255, 140, 0, 0.5);
}

.games-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid #ff8c00;
  border-radius: 10px;
}

.game-card {
  flex: 1;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
}

.game-card.featured {
  transform: scale(1.05);
}

.game-image {
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 10px;
}

.game-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.game-card:hover .game-image img {
  transform: scale(1.05);
}

.game-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.play-button {
  background: linear-gradient(45deg, #ff8c00, #ffd700);
  color: #1a0f0a;
  border: none;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  font-weight: bold;
}

.play-button i {
  margin-right: 8px;
}

.play-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

/* Disclaimer Section */
.disclaimer-section {
  padding: 3rem 5%;
  background-color: #1a0f0a;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.disclaimer-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ff8c00;
}

.disclaimer-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffb347;
}

/* Footer Styles */
footer {
  background-color: rgba(26, 15, 10, 0.9);
  padding: 3rem 5% 1rem;
  border-top: 1px solid rgba(255, 140, 0, 0.3);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo h3 {
  font-size: 1.5rem;
}

.footer-links,
.footer-social {
  margin-bottom: 1.5rem;
}

.footer-links h4,
.footer-social h4 {
  color: #ff8c00;
  margin-bottom: 1rem;
}

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

.footer-links ul li a {
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ff8c00;
}

.social-icons {
  display: flex;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 140, 0, 0.1);
  border-radius: 50%;
  margin-right: 1rem;
  transition: background-color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  background-color: #ff8c00;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 140, 0, 0.3);
  color: #daa520;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #ff8c00;
  color: #1a0f0a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}

.scroll-top:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content,
  .features-content {
    flex-direction: column;
    gap: 2rem;
  }

  .games-container {
    flex-direction: column;
    align-items: center;
  }

  .game-card {
    max-width: 100%;
    width: 100%;
  }

  .game-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 1rem;
  }

  .logo-container {
    margin-bottom: 1rem;
  }

  nav ul li {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .hero h2,
  .about-text h2,
  .features-text h2 {
    font-size: 1.8rem;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links,
  .footer-social {
    margin-top: 1.5rem;
  }
}

/* Additional styles for the games page */
/* Games Page Hero */
.games-page-hero {
  height: 50vh;
  background-image: url('/img/photo1.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.games-page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 15, 10, 0.5);
  z-index: -1;
}

.games-page-hero-content {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(26, 15, 10, 0.7);
  z-index: 2;
  padding: 0 20px;
}

.games-page-hero-content {
  max-width: 800px;
  padding: 2rem;
  z-index: 1;
}

.games-page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #ff8c00;
  text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.games-page-hero p {
  font-size: 1.2rem;
  color: #ffffff;
}

/* Full Page Games Section */
.games-section.full-page {
  padding: 5rem 5%;
  background-color: #1a0f0a;
  text-align: center;
  margin-top: 0;
}

.games-section.full-page .games-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid #ff8c00;
  border-radius: 10px;
}

.games-section.full-page .game-card {
  flex: 1;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
}

.games-section.full-page .game-card.featured {
  transform: scale(1.05);
}

.games-section.full-page .game-image {
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 10px;
}

.games-section.full-page .game-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.games-section.full-page .game-card:hover .game-image img {
  transform: scale(1.05);
}

.games-section.full-page .game-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

/* Game Categories */
.games-categories {
  padding: 5rem 5%;
  background-color: rgba(26, 15, 10, 0.9);
  text-align: center;
}

.games-categories h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ff8c00;
}

.category-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  flex: 1;
  max-width: 300px;
  padding: 2rem;
  background-color: rgba(255, 140, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

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

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff8c00;
}

.category-card p {
  color: #ffb347;
}

/* More Games Grid */
.more-games {
  padding: 5rem 5%;
  background-color: #1a0f0a;
  text-align: center;
}

.more-games h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ff8c00;
}

.more-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.more-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-color: rgba(255, 140, 0, 0.05);
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.more-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.more-game-image {
  width: 100%;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 10px;
}

.more-game-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.more-game-card:hover .more-game-image img {
  transform: scale(1.05);
}

.more-game-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.play-button.small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Coming Soon Section */
.coming-soon {
  padding: 5rem 5%;
  background-color: rgba(26, 15, 10, 0.9);
  text-align: center;
}

.coming-soon h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ff8c00;
}

.coming-soon-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.coming-soon-card {
  flex: 1;
  max-width: 400px;
  padding: 1.5rem;
  background-color: rgba(255, 140, 0, 0.05);
  border-radius: 10px;
}

.coming-soon-image {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 10px;
}

.coming-soon-image img {
  width: 100%;
  height: auto;
  filter: blur(2px);
}

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(26, 15, 10, 0.5);
}

.coming-soon-overlay span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff8c00;
  padding: 0.5rem 1.5rem;
  border: 2px solid #ff8c00;
  border-radius: 30px;
}

.coming-soon-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff8c00;
}

.coming-soon-card p {
  color: #ffb347;
}

/* Responsive Styles for Games Page */
@media (max-width: 992px) {
  .games-section.full-page .games-container,
  .category-container,
  .coming-soon-container {
    flex-direction: column;
    align-items: center;
  }

  .games-section.full-page .game-card,
  .category-card,
  .coming-soon-card {
    max-width: 100%;
    width: 100%;
  }

  .games-section.full-page .game-card.featured {
    transform: scale(1);
  }

  .more-games-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media (max-width: 768px) {
  .games-page-hero h1 {
    font-size: 2.5rem;
  }

  .games-page-hero p {
    font-size: 1rem;
  }
}

/* Contact Page Styles */
.contact-hero {
  height: 40vh;
  background-image: url('/img/photo1.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 15, 10, 0.5);
  z-index: -1;
}

.contact-hero-content {
  max-width: 800px;
  padding: 2rem;
  z-index: 1;
}

.contact-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #ff8c00;
  text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.contact-hero p {
  font-size: 1.2rem;
  color: #ffffff;
}

.contact-section {
  padding: 5rem 5%;
  background-color: #1a0f0a;
}

.contact-container {
  display: flex;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: rgba(255, 140, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.contact-info {
  flex: 1;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(26, 15, 10, 0.8));
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ff8c00;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.info-item i {
  font-size: 1.5rem;
  color: #ff8c00;
  margin-right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 140, 0, 0.1);
  border-radius: 50%;
}

.info-item p {
  font-size: 1.1rem;
  color: #ffffff;
}

.social-contact {
  margin-top: 3rem;
}

.social-contact h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ff8c00;
}

.contact-form-container {
  flex: 2;
  padding: 3rem;
}

.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ff8c00;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 1rem;
  color: #ffb347;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 5px;
  background-color: rgba(255, 140, 0, 0.05);
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff8c00;
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.submit-button {
  background: linear-gradient(45deg, #ff8c00, #ffd700);
  color: #1a0f0a;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  align-self: flex-start;
  font-weight: bold;
}

.submit-button i {
  margin-right: 10px;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

/* Form validation styles */
.form-group.error input,
.form-group.error textarea {
  border-color: #dc2626;
}

.form-group .error-message {
  color: #dc2626;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

/* Success message */
.success-message {
  background-color: rgba(255, 140, 0, 0.1);
  border: 1px solid #ff8c00;
  color: #ff8c00;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  display: none;
}

/* Responsive styles for contact page */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-info,
  .contact-form-container {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-hero p {
    font-size: 1rem;
  }

  .contact-info,
  .contact-form-container {
    padding: 1.5rem;
  }

  .submit-button {
    width: 100%;
  }
}

/* Privacy Policy Page Styles */
.policy-hero {
  height: 30vh;
  background-image: url('/img/photo1.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.policy-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 15, 10, 0.6);
}

.policy-hero-content {
  max-width: 800px;
  padding: 2rem;
  z-index: 1;
}

.policy-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #ff8c00;
  text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.policy-hero p {
  font-size: 1.2rem;
  color: #ffb347;
}

.policy-section {
  padding: 5rem 5%;
  background-color: #1a0f0a;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(255, 140, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  padding: 3rem;
}

.policy-content {
  color: #ffffff;
}

.policy-content h2 {
  font-size: 2rem;
  margin: 2rem 0 1rem;
  color: #ff8c00;
  border-bottom: 1px solid rgba(255, 140, 0, 0.3);
  padding-bottom: 0.5rem;
}

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

.policy-content h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
  color: #ff8c00;
}

.policy-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #ffb347;
}

.policy-content a {
  color: #ff8c00;
  text-decoration: underline;
  transition: color 0.3s;
}

.policy-content a:hover {
  color: rgba(255, 140, 0, 0.8);
}

/* Responsive styles for policy page */
@media (max-width: 768px) {
  .policy-hero h1 {
    font-size: 2.5rem;
  }

  .policy-hero p {
    font-size: 1rem;
  }

  .policy-container {
    padding: 2rem;
  }

  .policy-content h2 {
    font-size: 1.8rem;
  }

  .policy-content h3 {
    font-size: 1.3rem;
  }
}

.game-display {
  padding: 5rem 5% 3rem;
  background-color: #1a0f0a;
}

.game-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: rgba(255, 140, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  padding: 2rem;
}

.game-header {
  text-align: center;
  margin-bottom: 2rem;
}

.game-header h1 {
  font-size: 3rem;
  color: #ff8c00;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.game-header h2 {
  font-size: 1.5rem;
  color: #ffb347;
  font-weight: normal;
}

.game-frame-container {
  position: relative;
  width: 100%;
  padding-bottom: 0;
  height: 100%;
  overflow: hidden;
  background-color: #000;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border: 2px solid #ff8c00;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.game-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-controls {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
