* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #1f2937;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.header {
  border-bottom: 1px solid #eee;
  background: #fff;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #7a1f2b;
  text-decoration: none;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  color: #374151;
  transition: 0.3s;
}

.menu a:hover {
  color: #7a1f2b;
}

.footer {
  border-top: 1px solid #eee;
  background: #fafafa;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 0;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer h4 {
  margin-bottom: 10px;
  color: #7a1f2b;
}

.footer a {
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
  color: #374151;
}

.footer a:hover {
  color: #7a1f2b;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: #6b7280;
  border-top: 1px solid #eee;
}

.hero {
  padding: 80px 0;
  background: #ffffff;
}

.hero-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #7a1f2b;
}

.hero-text p {
  color: #4b5563;
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #7a1f2b;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #5c1720;
}

@media (max-width: 768px) {
  .hero-wrap {
    flex-direction: column;
    text-align: center;
  }
}

.stats {
  padding: 80px 0;
  background: #fafafa;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
}

.stat-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-card i {
  font-size: 28px;
  color: #7a1f2b;
  margin-bottom: 10px;
}

.stat-card h3 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #111;
}

.stat-card p {
  color: #6b7280;
  font-size: 14px;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about {
  padding: 80px 0;
  background: #ffffff;
}

.about-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #7a1f2b;
}

.about-text p {
  color: #4b5563;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 26px;
  background: #7a1f2b;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #5c1720;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .about-wrap {
    flex-direction: column;
    text-align: center;
  }
}

.disclaimer {
  padding: 70px 0;
  background: linear-gradient(135deg, #7a1f2b, #a8323f);
  color: #fff;
}

.disclaimer-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.disclaimer i {
  margin-right: 8px;
}

.disclaimer p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.disclaimer .domain-text {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.9;
}

.faq {
  padding: 80px 0;
  background: #fafafa;
}

.faq-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
}

.faq-image {
  flex: 1;
}

.faq-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.faq-content {
  flex: 1;
}

.faq-content h2 {
  margin-bottom: 20px;
  color: #7a1f2b;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 0;
  cursor: pointer;
}

.faq-question {
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #4b5563;
  transition: 0.3s;
  font-size: 14px;
}

.faq-item.active .faq-answer {
  max-height: 100px;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .faq-wrap {
    flex-direction: column;
  }
}

.games {
  padding: 80px 0;
  background: #ffffff;
}

.games-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  color: #7a1f2b;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.game-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.game-card:hover {
  transform: translateY(-6px);
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-info {
  padding: 15px;
  text-align: center;
}

.game-info h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.play-btn {
  padding: 8px 20px;
  border: none;
  background: #7a1f2b;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.play-btn:hover {
  background: #5c1720;
}

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
}

.game-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.game-modal-box {
  background: #ffffff;
  width: 95%;
  max-width: 900px;
  height: 80vh;
  border-radius: 16px;
  padding: 20px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#gameTitle {
  text-align: center;
  margin-bottom: 10px;
  color: #7a1f2b;
}

#gameFrame {
  width: 100%;
  height: 90%;
  border: none;
  border-radius: 10px;
}

#closeGame {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-icon {
  font-size: 28px;
  color: #7a1f2b;
  margin-bottom: 10px;
}

.age-card h2 {
  margin-bottom: 10px;
  color: #111;
}

.age-card p {
  color: #6b7280;
  margin-bottom: 20px;
  font-size: 14px;
}

.age-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn-yes {
  background: #7a1f2b;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.btn-no {
  background: #e5e7eb;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.btn-yes:hover {
  background: #5c1720;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #eee;
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  max-width: 650px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.cookie-banner p {
  font-size: 14px;
  color: #374151;
}

.cookie-banner a {
  color: #7a1f2b;
  text-decoration: underline;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.cookie-yes {
  background: #7a1f2b;
  color: #fff;
}

.cookie-no {
  background: #e5e7eb;
}

.cookie-yes:hover {
  background: #5c1720;
}

.contact {
  padding: 80px 0;
  background: #fafafa;
}

.contact-box {
  max-width: 500px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-box h2 {
  color: #7a1f2b;
  margin-bottom: 10px;
}

.contact-box p {
  color: #6b7280;
  margin-bottom: 20px;
}

.contact-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-box input,
.contact-box textarea {
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.contact-box input:focus,
.contact-box textarea:focus {
  outline: none;
  border-color: #7a1f2b;
}

.contact-box button {
  padding: 12px;
  background: #7a1f2b;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.contact-box button:hover {
  background: #5c1720;
}

.contact-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  max-width: 350px;
  width: 90%;
}

.modal-content i {
  font-size: 40px;
  color: #7a1f2b;
  margin-bottom: 10px;
}

#closeContact {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  display: flex;
  gap: 20px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #7a1f2b;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #ffffff;
    flex-direction: column;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .menu.active {
    display: flex;
  }
}

html {
  scroll-behavior: smooth;
}


.legal {
  padding: 80px 0;
  background: #f9fafb;
}


.legal-box {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}


.legal h1 {
  text-align: center;
  margin-bottom: 25px;
  color: #7a1f2b;
  font-size: 30px;
}


.legal .intro {
  text-align: center;
  color: #6b7280;
  margin-bottom: 25px;
}


.legal-item {
  padding: 18px;
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.legal-item:hover {
  border-color: #7a1f2b;
  transform: translateY(-3px);
}


.legal-item h3 {
  margin-bottom: 8px;
  color: #7a1f2b;
  font-size: 18px;
}


.legal p {
  color: #4b5563;
  line-height: 1.6;
  font-size: 14px;
}


.domain-text {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}

@media (max-width: 768px) {
  .legal-box {
    padding: 20px;
  }
}

.rg {
  padding: 70px 0;
 
}

.rg-title {
  text-align: center;
  margin-bottom: 30px;
  color: #7a1f2b;
}


.rg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}


.rg-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}


.rg-card img {
  background-color: #fff;
  max-width: 160px;
  height: 160px;
  object-fit: contain;
  filter: brightness(0.9);
  transition: 0.3s;
  border-radius: 15px;
}


.rg-card:hover {
  transform: translateY(-5px);
  border-color: #7a1f2b;
}

.rg-card:hover img {
  filter: brightness(1.2);
}


@media (max-width: 768px) {
  .rg-grid {
    grid-template-columns: 1fr 1fr;
  }
}