:root {
  /* Primary Colors - Pink Theme */
  --color-primary: #ff1493;
  --color-secondary: #ffb6c1;
  --color-accent: #ff1493;

  /* Background Colors */
  --color-bg-primary: #0a1828;
  --color-bg-secondary: #0f1f35;
  --color-bg-tertiary: #0a0f1a;
  --color-bg-card: rgba(255, 255, 255, 0.05);
  --color-bg-overlay: rgba(10, 24, 40, 0.8);
  --color-bg-overlay-dark: rgba(10, 24, 40, 0.9);

  /* Text Colors */
  --color-text-primary: #fff;
  --color-text-secondary: #ccc;
  --color-text-muted: #999;

  /* Border Colors */
  --color-border-light: #1a2f4a;
  --color-border-primary: var(--color-primary);
  --color-border-secondary: var(--color-secondary);

  /* Utility Colors */
  --color-success: #00ff00;
  --color-error: #ff0000;
  --color-dark-gray: #1a2f4a;
}

@font-face {
  font-family: "Montserrat";
  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: 300;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--color-text-primary);
}

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;
  background-color: var(--color-bg-primary);
}

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

.logo-hex {
  background-color: var(--color-bg-primary);
  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 var(--color-primary);
  margin-right: 10px;
}

.logo-hex i {
  color: var(--color-text-primary);
  font-size: 24px;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

nav ul {
  display: flex;
}

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

nav ul li a {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  font-family: "Montserrat", sans-serif;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, #1a1a3e 0%, #0a1828 50%, #1a2f4a 100%);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 140, 0, 0.2) 0%, transparent 50%),
    url('../img/3.jpg');
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-blend-mode: overlay, overlay, normal;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  overflow: hidden;
}

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

/* Gaming table decorative elements */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: 
    radial-gradient(circle at 15% 60%, rgba(34, 139, 34, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(34, 139, 34, 0.3) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  padding: 3rem 3.5rem;
  background: rgba(10, 24, 40, 0.85);
  border-radius: 8px;
  position: relative;
  z-index: 1;
  text-align: left;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.cta-button {
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  color: white;
  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;
}

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

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

/* About Section */
.about-section {
  padding: 3rem 5%;
  background-color: var(--color-bg-secondary);
}

.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: var(--color-accent);
}

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

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

.about-image img {
  width: 85%;
  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: var(--color-bg-secondary);
}

.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: var(--color-accent);
}

.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: var(--color-bg-secondary);
  text-align: center;
}

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

.games-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid var(--color-secondary);
  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: var(--color-text-primary);
}

.play-button {
  background: linear-gradient(45deg, #ff1493, #ffb6c1);
  color: white;
  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-family: "Montserrat", sans-serif;
}

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

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

/* Disclaimer Section */
.disclaimer-section {
  padding: 3rem 5%;
  background-color: var(--color-bg-secondary);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.disclaimer-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.disclaimer-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

/* Footer Styles */
footer {
  background-color: var(--color-bg-tertiary);
  padding: 3rem 5% 1rem;
  border-top: 1px solid var(--color-border-light);
}

.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: var(--color-primary);
  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: var(--color-primary);
}

.social-icons {
  display: flex;
}

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

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

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-light);
  color: var(--color-text-muted);
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: var(--color-text-primary);
  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/3.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

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

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

.games-page-hero p {
  font-size: 1.2rem;
  color: var(--color-text-primary);
}

/* Full Page Games Section */
.games-section.full-page {
  padding: 5rem 5%;
  background-color: var(--color-bg-secondary);
  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 var(--color-secondary);
  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: var(--color-text-primary);
}

/* Game Categories */
.games-categories {
  padding: 5rem 5%;
  background-color: var(--color-bg-tertiary);
  text-align: center;
}

.games-categories h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--color-accent);
}

.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, 20, 147, 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, 20, 147, 0.3);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.category-card p {
  color: var(--color-text-secondary);
}

/* More Games Grid */
.more-games {
  padding: 5rem 5%;
  background-color: var(--color-bg-secondary);
  text-align: center;
}

.more-games h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--color-accent);
}

.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: var(--color-bg-card);
  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, 20, 147, 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: var(--color-text-primary);
}

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

/* Coming Soon Section */
.coming-soon {
  padding: 5rem 5%;
  background-color: var(--color-bg-tertiary);
  text-align: center;
}

.coming-soon h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--color-accent);
}

.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: var(--color-bg-card);
  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(0, 0, 0, 0.5);
}

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

.coming-soon-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.coming-soon-card p {
  color: var(--color-text-secondary);
}

/* 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/3.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

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

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

.contact-hero p {
  font-size: 1.2rem;
  color: var(--color-text-primary);
}

.contact-section {
  padding: 5rem 5%;
  background-color: var(--color-bg-secondary);
}

.contact-container {
  display: flex;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--color-bg-card);
  border-radius: 10px;
  overflow: hidden;
}

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

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--color-accent);
}

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

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

.info-item p {
  font-size: 1.1rem;
  color: var(--color-text-primary);
}

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

.social-contact h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

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

.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--color-accent);
}

.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: var(--color-text-secondary);
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 1px solid var(--color-border-light);
  border-radius: 5px;
  background-color: var(--color-bg-card);
  color: var(--color-text-primary);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.submit-button {
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  color: white;
  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;
}

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

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

/* Form validation styles */
.form-group.error input,
.form-group.error textarea {
  border-color: var(--color-error);
}

.form-group .error-message {
  color: var(--color-error);
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

/* Success message */
.success-message {
  background-color: rgba(0, 255, 0, 0.1);
  border: 1px solid var(--color-success);
  color: var(--color-success);
  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/3.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

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

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

.policy-hero p {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
}

.policy-section {
  padding: 5rem 5%;
  background-color: var(--color-bg-secondary);
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--color-bg-card);
  border-radius: 10px;
  overflow: hidden;
  padding: 3rem;
}

.policy-content {
  color: var(--color-text-primary);
}

.policy-content h2 {
  font-size: 2rem;
  margin: 2rem 0 1rem;
  color: var(--color-accent);
  border-bottom: 1px solid rgba(255, 20, 147, 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: var(--color-primary);
}

.policy-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
}

.policy-content a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.3s;
}

.policy-content a:hover {
  color: var(--color-accent);
}

/* 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;
  }

  .hero {
    margin-top: 70px;
  }
}

.game-display {
  padding: 5rem 5% 3rem;
  background-color: var(--color-bg-secondary);
}

.game-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--color-bg-card);
  border-radius: 10px;
  overflow: hidden;
}

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

.game-header h1 {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.game-header h2 {
  font-size: 1.5rem;
  color: var(--color-text-secondary);
  font-weight: normal;
}

.game-frame-container {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 20px rgba(255, 20, 147, 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;
}

.mob {
  display: none;
}

@media (max-width: 768px) {
  .game-frame-container {
    height: 650px;
  }

  .game-display {
    padding: 7rem 5% 3rem;
  }

  .desk {
    display: none;
  }

  .mob {
    display: block;
  }
}

@media (max-width: 400px) {
  header {
    position: relative;
  }

  .hero {
    margin-top: 0;
  }
}

.contact-hero,
.games-page-hero,
.policy-hero {
  position: relative;
}

.contact-hero::before,
.games-page-hero::before,
.policy-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-overlay);
}

/* Fix for overlapping text in hero */
.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;
}

/* Hero content responsive */
@media (max-width: 768px) {
  .hero-content {
    padding: 2rem 2rem;
    max-width: 95%;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

/* Fix heading sizes for mobile */
.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 */
.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: var(--color-bg-primary);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.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;
}

/* Age Verification Modal */
.age-verification-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-verification-modal.show {
  opacity: 1;
  visibility: visible;
}

.age-verification-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.age-verification-popup {
  position: relative;
  background-color: #1A1A2E;
  border-radius: 15px;
  padding: 3rem 2.5rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
  border: 2px solid rgba(255, 20, 147, 0.3);
  z-index: 10001;
  animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.age-icon-container {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.age-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.age-verification-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  font-family: "Poppins", sans-serif;
}

.age-verification-text {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}

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

.age-btn {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  min-width: 140px;
}

.age-btn-confirm {
  background-color: #ff1493;
  color: #fff;
}

.age-btn-confirm:hover {
  background-color: #dc143c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.age-btn-exit {
  background-color: #333333;
  color: #fff;
  border: 1px solid #444444;
}

.age-btn-exit:hover {
  background-color: #444444;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Prevent scrolling when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Responsive styles for age verification */
@media (max-width: 480px) {
  .age-verification-popup {
    padding: 2rem 1.5rem;
    max-width: 95%;
  }

  .age-verification-title {
    font-size: 1.5rem;
  }

  .age-verification-text {
    font-size: 0.9rem;
  }

  .age-verification-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .age-btn {
    width: 100%;
    min-width: auto;
  }

  .age-icon {
    width: 60px;
    height: 60px;
  }
}

/* Exit Confirmation Modal */
.exit-confirmation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10002;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-confirmation-modal.show {
  opacity: 1;
  visibility: visible;
}

.exit-confirmation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
}

.exit-confirmation-popup {
  position: relative;
  background-color: #1A1A2E;
  border-radius: 15px;
  padding: 3rem 2.5rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
  border: 2px solid rgba(255, 20, 147, 0.3);
  z-index: 10003;
  animation: fadeInScale 0.3s ease;
}

.exit-icon-container {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.exit-age-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #000;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 8px;
}

.exit-age-icon::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 15px;
  background-color: #D4A574;
  border-radius: 2px;
}

.exit-age-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #000;
  font-family: "Poppins", sans-serif;
}

.exit-confirmation-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  font-family: "Poppins", sans-serif;
}

.exit-warning-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.exit-warning-icon {
  font-size: 1.2rem;
  color: #FFD700;
  font-weight: bold;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background-color: rgba(255, 215, 0, 0.2);
  border-radius: 3px;
}

.exit-warning-text {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.exit-confirmation-text {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: "Poppins", sans-serif;
}

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

.exit-btn {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  min-width: 140px;
  color: #fff;
}

.exit-btn-back {
  background: linear-gradient(90deg, #ffb6c1 0%, #ff1493 100%);
  color: #fff;
}

.exit-btn-back:hover {
  background: linear-gradient(90deg, #ff1493 0%, #dc143c 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.exit-btn-confirm {
  background-color: #2C2C2C;
  color: #fff;
  border: 1px solid #3C3C3C;
}

.exit-btn-confirm:hover {
  background-color: #3C3C3C;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive styles for exit confirmation */
@media (max-width: 480px) {
  .exit-confirmation-popup {
    padding: 2rem 1.5rem;
    max-width: 95%;
  }

  .exit-confirmation-title {
    font-size: 1.5rem;
  }

  .exit-warning-text,
  .exit-confirmation-text {
    font-size: 0.9rem;
  }

  .exit-confirmation-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .exit-btn {
    width: 100%;
    min-width: auto;
  }

  .exit-age-icon {
    width: 50px;
    height: 50px;
  }

  .exit-age-text {
    font-size: 0.8rem;
  }
}