/* styles.css */

.custom-header {
  /* width: 100%; */
  background-color: #001F3F;
  padding: 16px 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header-logo .logo-img {
  width: 160px;
  height: auto;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #ffffff;
  cursor: pointer;
}

.header-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-list li a:hover {
  color: #FFD700;
}

.cta-button {
  background-color: #FFD700;
  color: #001F3F;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #FFC300;
  color: #000;
}

/* Hide CTA from mobile inside nav by default */
.desktop-cta {
  display: block;
}
.mobile-cta {
  display: none;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header-nav {
    width: 100%;
    display: none;
    margin-top: 16px;
  }

  .header-nav.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #001F3F;
    padding: 10px 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0 16px;
  }

  .desktop-cta {
    display: none;
  }

  .mobile-cta {
    display: block;
    width: 100%;
    padding-top: 10px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    font-size: 15px;
  }

  .header-logo .logo-img {
    width: 120px;
  }
}


/* styles.css */

.custom-hero {
  background-image: url('../images/Hero-bg.webp'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
}

.hero-center {
  padding: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: #FFD700;
  font-weight: 500;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-cta {
  background-color: #FFD700;
  color: #001F3F;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
  transition: background-color 0.3s ease;
}

.hero-cta:hover {
  background-color: #FFC300;
  color: #000;
}

.hero-description {
  font-size: 16px;
  color: #DDDDDD;
  max-width: 600px;
  margin: 0 auto 10px;
}

.responsible-text {
  font-size: 14px;
  color: #cccccc;
  margin-top: 5px;
}

/* Triangular Image Layout */
.image-group {
  position: relative;
  width: 180px;
  height: 220px;
}

.hero-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  position: absolute;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.img-top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.img-left {
  bottom: 0;
  left: 0;
}

.img-right {
  bottom: 0;
  right: 0;
}

/* Floating animation */
@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Apply float effect to all hero images */
.image-group .hero-img {
  animation: floatUpDown 4s ease-in-out infinite;
}

.img-top {
  animation-delay: 0s;
}

.img-left {
  animation-delay: 1s;
}

.img-right {
  animation-delay: 2s;
}


/* Responsive Tweaks */
@media (max-width: 768px) {
  .custom-hero {
    height: auto;
    padding: 60px 20px;
    text-align: center;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-img {
    width: 60px;
    height: 60px;
  }

  .image-group {
    display: none;
  }

  .hero-description {
    font-size: 14px;
  }
}


/* styles.css */

.stats-section {
  background-color: #001f3f3a;
  color: #ffffff;
  padding: 60px 20px;
}

.stat-item {
  margin-bottom: 30px;
}

.stat-icon img {
  color: white;
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #001f3f;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #333333;
}


/* styles.css */

/* Base Section */
.about-section {
  background-color: #F5F8FA;
  padding: 80px 20px;
}

/* Section Header */
.section-subtitle {
  color: #FFD700;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  color: #001F3F;
  margin-bottom: 20px;
}

.section-title {
  font-size: 24px;
  color: #003366;
  font-weight: 600;
}

/* Image Styling */
.about-main-img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Description Paragraph */
.about-description {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto;
}

/* Cards */
.about-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 24px;
  gap: 20px;
  align-items: center;
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.card-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.card-content {
  flex: 1;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #001F3F;
  margin-bottom: 8px;
}

.card-text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-card {
    flex-direction: column;
    text-align: center;
  }

  .card-img {
    margin-bottom: 16px;
  }
}


/* styles.css */

.featured-games-section {
  background-color: #FFFFFF;
  padding: 80px 20px;
}

.section-subtitle {
  color: #0077B6;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.section-heading {
  font-size: 36px;
  font-weight: 700;
  color: #001F3F;
  margin-bottom: 10px;
}

.section-description {
  font-size: 18px;
  color: #555;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Game Cards */
.game-card {
  background-color: #F9FAFB;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  text-align: center;

}

.game-card:hover {
  transform: translateY(-5px);
}

.game-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-card-body {
  padding: 20px;
}

.game-title {
  font-size: 20px;
  font-weight: 600;
  color: #003366;
  margin-bottom: 15px;
}

.play-button {
  display: inline-block;
  background-color: #FFD700;
  color: #001F3F;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.play-button:hover {
  background-color: #FFC300;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .game-img {
    height: 180px;
  }

  .section-heading {
    font-size: 28px;
  }

  .section-description {
    font-size: 16px;
  }
}


/* Features section with Dark background from your palette */

.features-section {
  background-color: #001a33;
  padding: 80px 0;
  color: #fff;
}

.features-section .section-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #FFC300;
  margin-bottom: 10px;
}

.features-section .section-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.3); /* 30% transparent white */
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.feature-box h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.feature-box p {
  font-size: 15px;
  color: #f2f2f2;
}

.features-section .feature-box p {
  font-size: 14px;
  color: #f2f2f2;
}

.games-section {
  background-color: #001a33d4;
  padding: 80px 0;
  color: #fff;
}

.games-section .section-subtitle {
  font-size: 16px;
  color: #FFC300;
  margin-bottom: 10px;
}

.games-section .section-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.games-section .section-description {
  font-size: 16px;
  color: #CCCCCC;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.game-card {
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
}

.game-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.game-info {
  padding: 0 10px;
}

.game-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.play-btn {
  display: inline-block;
  background-color: #E63946;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s;
}

.play-btn:hover {
  background-color: #FFD700;
}

.responsible-text {
  font-size: 14px;
  color: #E0E0E0;
}

.responsible-text a {
  color: #E63946;
  text-decoration: underline;
}




/* ====== Testimonials Section Base Styles ====== */
.testimonials-section {
  background-color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  color: #A6A6A6;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: bold;
  color: #1C1C1E;
}

.section-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.testimonial-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 30px;
  padding: 0 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.testimonial-card {
  flex: 0 0 33.33%;
  scroll-snap-align: start;
  background-color: #f5f5f5;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  min-width: 300px;
}

.testimonial-left {
  flex: 0 0 80px;
  text-align: center;
  margin-right: 20px;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.player-name {
  margin-top: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.testimonial-right {
  flex: 1;
}

.played-game {
  font-size: 14px;
  font-weight: 500;
  color: #999;
}

.played-game span {
  color: #222;
  font-weight: 600;
}

.testimonial-text {
  font-size: 15px;
  color: #444;
  margin-top: 10px;
  line-height: 1.5;
}

.testimonial-dots {
  margin-top: 40px;
}

.testimonial-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-dots .dot.active,
.testimonial-dots .dot:hover {
  background-color: #333;
}

/* ====== Hide Scrollbar for Carousel ====== */
.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

/* ====== Responsive Styles ====== */

/* Tablets: Show 2 cards */
@media (max-width: 991.98px) {
  .testimonial-card {
    flex: 0 0 50%;
  }
}

/* Mobiles: Show 1 card */
@media (max-width: 767.98px) {
  .testimonial-card {
    flex: 0 0 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-left {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .testimonial-img {
    margin: auto;
  }

  .testimonial-right {
    padding: 0;
  }
}

/* Small Devices: Adjust Section Padding and Font Sizes */
@media (max-width: 575.98px) {
  .testimonials-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle,
  .section-description {
    font-size: 14px;
  }

  .testimonial-text {
    font-size: 14px;
  }
}




.site-footer {
  width: 100%;
  background-color: #001a33;
  color: #ffffff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  box-sizing: border-box;
}

.footer-container {
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.footer-column {
  flex: 1 1 300px;
  max-width: 350px;
  box-sizing: border-box;
}

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

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

.footer-description,
.footer-responsible-text,
.footer-title {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}
. 
a{
    color:'#FFD700';
    text-decoration:none;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
}

.responsible-logos {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.responsible-logos img {
  width: 150px;
  height: auto;
  opacity: 0.8;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 5px 0;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #D7684F;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  margin-top: 40px;
}

.age-warning {
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-18plus {
  width: 48px;
  margin: 0 auto 10px auto;
  display: block;
}

.copyright {
  font-size: 13px;
  color: #aaa;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-columns {
    padding: 0;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-column {
    max-width: 100%;
  }

  .responsible-logos {
    justify-content: center;
  }
}


/* Age Verification Styles */
#age-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 1, 10, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: 'Quicksand', sans-serif;
}

#age-popup {
  background-color: #000;
  border: 2px solid #FF0000;
  border-radius: 16px;
  width: 90%;
  max-width: 450px;
  padding: 2rem;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
  text-align: center;
}

.popup-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.popup-age-icon {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 6px #FF0000);
}

.popup-title {
  font-family: 'Almendra SC', serif;
  font-size: 24px;
  color: #fff;
  margin: 0;
}

.popup-description {
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}

.popup-btn-group {
  display: flex;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.popup-btn {
  flex: 1;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.popup-btn.yes {
  background: #06325B;
  color: #fff;
}

.popup-btn.yes:hover {
  background: #FF0000;
  transform: scale(1.02);
}

.popup-btn.no {
  background: #FF0000;
  color: #fff;
}

.popup-btn.no:hover {
  background: #06325B;
  transform: scale(1.02);
}

.popup-footer-text {
  font-size: 13px;
  color: #ccc;
  font-weight: 400;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 600px) {
  .popup-btn-group {
    flex-direction: column;
  }

  .popup-btn {
    width: 100%;
  }

  #age-popup {
    padding: 1.5rem;
  }
}
