/* Import new font */
@import url("css2.css");

/* Root Variables */
:root {
  --color-heading: #a855f7;
  --color-text: #ffffff;
  --color-accent: #c084fc;
  --color-btn-bg: #8b5cf6;
  --color-btn-text: #ffffff;
  --color-link-active: #a855f7;
  --color-bg: #1e1b4b;
  --color-card-bg: #312e81;
  --color-border: #4c1d95;
}

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

html, body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Inter', 'Poppins', sans-serif;
  line-height: 1.6;
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading) !important;
  font-weight: 700;
}

p {
  color: var(--color-text);
  font-weight: 400;
}




/* Utility */
.text-center {
  text-align: center;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


/* Global Navbar Styles */
.site-navbar {
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  padding: 0.8rem 1rem;
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.2);
}

.site-logo {
  max-height: 75px;
}

.site-toggler-icon {
  color: #c084fc;
  font-size: 1.5rem;
}

/* Navigation Links */
.site-nav-link {
  color: #ffffff;
  font-weight: 600;
  margin-left: 1rem;
  transition: all 0.3s ease;
}

.navbar .site-nav-link.active,
.navbar .site-nav-link:hover {
  color: #c084fc;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.5);
}


/* Button Styles */
.site-btn {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: #ffffff;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.site-btn:hover {
  background: linear-gradient(135deg, #a855f7, #c084fc);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}


/* Hero Section */
.site-hero {
  position: relative;
  height: 100vh;
  background: url("../images/hero.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text);
}

.site-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.site-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.site-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-heading);
}

.site-hero-subtext {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}


/* Disclaimer Section */
.site-disclaimer-section {
  
  color: var(--color-text);
}

.site-disclaimer-card {
  background: linear-gradient(135deg, #312e81, #4c1d95);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.site-disclaimer-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-heading);
}

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

.site-disclaimer-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.site-disclaimer-text a:hover {
  color: #fff;
}


/* Game Section */
.site-game-section {
   
  color: var(--color-text);
}

.site-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-heading);
}

.site-section-subtitle {
  font-size: 1rem;
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto;
}

.site-game-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
}

.site-game-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Mobile optimizations for games */
@media (max-width: 768px) {
  .site-game-section {
    padding: 2rem 1rem;
  }
  
  .site-game-card {
    margin-bottom: 2rem;
  }
  
  .site-game-frame {
    aspect-ratio: 4 / 3 !important; /* Better for mobile */
    min-height: 300px;
    max-height: 400px;
  }
  
  .site-game-frame iframe {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .site-game-frame {
    aspect-ratio: 1 / 1 !important; /* Square for very small screens */
    min-height: 250px;
    max-height: 300px;
  }
}


/* =========================
   Features Section
========================= */
.features-section {

  color: #ffffff;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-heading);
  
}

.section-subtitle {
  font-size: 1rem;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto;
}

/* Feature Card */
.feature-card {
  background-color: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

.feature-text {
  font-size: 0.95rem;
  color: #cccccc;
  line-height: 1.6;
}



:root {
  --heading-
  --text-color: #ffffff;
  --accent-
  --button-bg: #f79916;
  --button-text: #2f0808;
  --button-hover: #ffffff;   /* Inverted for hover effect */
  --button-hover-bg: #a13d14; /* Darker tone for hover */
  --active-link: #f79916;
  --site-bg: #2f0808;
}

/* =========================
   About Section
========================= */
.about-section {
 
  color: var(--text-color);
  padding: 60px 20px;
}

/* Game Icons Container */
.game-icons-container {
  margin-top: 2rem;
}

.game-icon-card {
  background: linear-gradient(135deg, #312e81, #4c1d95);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.game-icon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
  border-color: rgba(192, 132, 252, 0.5);
}

.game-icon-card h6 {
  color: #c084fc;
  font-weight: 600;
  margin-top: 0.5rem;
}

.game-icon-card small {
  color: #a855f7;
  font-size: 0.75rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

.about-text {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.accent-text {
  color: var(--accent-color);
  font-weight: 600;
}

/* Button */
.btn-custom {
  background-color: var(--color-heading);
  color: var(--button-text);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-custom:hover {
  background-color: var(--color-border);
  color: var(--button-hover);
}

/* About Image */
.about-image img {
  max-width: 500px;
  margin: 20px auto 0;
  display: block;
  border-radius: 12px;
}


/* =========================
   Reviews Section
========================= */
.reviews-section {

  color: var(--text-color);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

.review-card {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.review-card i {
  color: var(--accent-color);
}


/* =========================
   Footer (2-column layout)
========================= */
.site-footer {
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  color: #ffffff;
  font-size: 0.95rem;
  box-shadow: 0 -2px 10px rgba(139, 92, 246, 0.2);
}

.footer-logo img {
  max-height: 80px;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
   /* Accent for headings */
}

.footer-text {
  color: #ffffff;
  line-height: 1.6;
}

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

.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover,
.footer-link:focus {
  color: #c084fc;
  text-shadow: 0 0 8px rgba(192, 132, 252, 0.5);
}

.footer-bottom {
  border-color: rgba(255, 255, 255, 0.15) !important;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.85rem;
}


/* =========================
   Age Disclaimer Popup
========================= */
.age-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.95), rgba(49, 46, 129, 0.95));
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden; /* Prevent scrolling */
}

/* Disable body scroll when popup is shown */
body.popup-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.age-popup-box {
  background: linear-gradient(135deg, #312e81, #4c1d95);
  padding: 2rem;
  max-width: 600px;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.age-popup-title {
  color: #c084fc;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(192, 132, 252, 0.5);
}

.age-popup-text {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.age-popup-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn.age-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-btn.yes {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.age-btn.yes:hover {
  background: linear-gradient(135deg, #a855f7, #c084fc);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

.age-btn.no {
  background: transparent;
  border: 2px solid #c084fc;
  color: #c084fc;
}

.age-btn.no:hover {
  background: #c084fc;
  color: #1e1b4b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 132, 252, 0.4);
}


/* =========================
   Scroll to Top Button
========================= */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(139, 92, 246, 0.3);
  transition: opacity 0.3s ease, transform 0.2s ease, background-color 0.3s ease;
  z-index: 1000;
}

.scroll-top:hover {
  background: linear-gradient(135deg, #a855f7, #c084fc);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

.scroll-arrow {
  font-size: 1.4rem;
  line-height: 1;
}



/* =========================
   Contact Section
========================= */
.contact-section {
   /* Site background */
  color: #ffffff;           /* Text */
  padding: 4rem 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
   /* Headings */
}

.section-subtext {
  font-size: 1rem;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form {
  max-width: 600px;
}

.contact-form .form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #f79916;
  border-radius: 8px;
  
  color: black;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #ffae42;
  outline: none;
  box-shadow: 0 0 8px rgba(247, 153, 22, 0.6);
}

.btn-submit {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  color: #ffffff;
  font-weight: bold;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #a855f7, #c084fc);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}

/* Form Validation Styles */
.error-message {
  color: #ff6b6b;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.form-control.error {
  border-color: #ff6b6b;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
}

.form-control.success {
  border-color: #51cf66;
  box-shadow: 0 0 8px rgba(81, 207, 102, 0.3);
}

/* Alert Notifications */
.alert-notification {
  position: fixed;
  top: 20px;
  z-index: 10000;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: none;
  animation: slideIn 0.3s ease-out;
  max-width: 400px;
}

.alert-notification.show {
  display: block;
}

.success-alert {
  background: linear-gradient(135deg, #51cf66, #69db7c);
  color: #ffffff;
  right: 20px;
}

.error-alert {
  background: linear-gradient(135deg, #ff6b6b, #ff8787);
  color: #ffffff;
  left: 20px;
}

.alert-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.alert-content svg {
  flex-shrink: 0;
}

.alert-content span {
  font-weight: 500;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.error-alert {
  animation: slideInLeft 0.3s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Responsive Alerts */
@media (max-width: 768px) {
  .alert-notification {
    left: 10px;
    right: 10px;
    max-width: none;
  }
  
  .success-alert {
    right: 10px;
    left: 10px;
  }
  
  .error-alert {
    left: 10px;
    right: 10px;
  }
}
