/* =========================
   Base & Reset
========================= */
body.gLoop365-top {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff9e4;
  background-color: #312703;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* =========================
   Navbar
========================= */
.gLoop365-top-navbar {
  background-color: #312703;
}

.gLoop365-top-navbar .nav-link {
  color: #fff9e4;
  margin-left: 1rem;
  transition: color 0.3s;
}

.gLoop365-top-navbar .nav-link:hover,
.gLoop365-top-navbar .nav-link.active {
  color: #ffd230;
}

.gLoop365-top-logo {
  height: 80px;
}

/* =========================
   Hero Section
========================= */
.gLoop365-top-hero {
  min-height: 80vh;
  background: url('../images/header-bg.jpg') center/cover no-repeat;
  padding: 60px 20px;
  position: relative;
}

.gLoop365-top-hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.gLoop365-top-hero-heading {
  font-size: 3rem;
  color: #ffd230;
  margin-bottom: 20px;
  /* Text border / outline for visibility */
  text-shadow: 
     2px 2px 0 #312703, 
    -2px 2px 0 #312703, 
     2px -2px 0 #312703, 
    -2px -2px 0 #312703, 
     2px 0 0 #312703, 
    -2px 0 0 #312703, 
     0 2px 0 #312703, 
     0 -2px 0 #312703;
}

.gLoop365-top-hero-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #fff9e4;
  /* Subtle shadow for text visibility */
  text-shadow: 
     2px 2px 0 #312703, 
    -2px 2px 0 #312703, 
     2px -2px 0 #312703, 
    -2px -2px 0 #312703, 
     2px 0 0 #312703, 
    -2px 0 0 #312703, 
     0 2px 0 #312703, 
     0 -2px 0 #312703;}

/* =========================
   Buttons
========================= */
.gLoop365-top-btn {
  background-color: #ffd230;
  color: #312703;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.gLoop365-top-btn:hover {
  background-color: #fff9e4;
  color: #312703;
  text-decoration: none;
}

/* =========================
   Disclaimer Card
========================= */
.gLoop365-top-disclaimer-card {
  background-color: rgba(255, 210, 48, 0.1);
  color: #fff9e4;
  max-width: 600px;
  margin: 0 auto;
}

.gLoop365-top-section-title {
  font-size: 2rem;
  color: #ffd230;
}

.gLoop365-top-section-text {
  font-size: 1rem;
  line-height: 1.6;
}

/* =========================
   Game Section
========================= */
.gLoop365-top-game-card {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.gLoop365-top-game-card iframe {
  width: 100%;
  height: 600px;
}

/* =========================
   Features Section
========================= */
.gLoop365-top-feature-card {
  background-color: rgba(255, 210, 48, 0.1);
  padding: 30px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.gLoop365-top-feature-card:hover {
  background-color: #ffd230;
  color: #312703;
}

.gLoop365-top-feature-card i {
  color: #ffd230;
}

/* =========================
   About Section
========================= */
.gLoop365-top-about-text-wrapper {
  max-width: 700px;
  margin: 0 auto 30px;
}

.gLoop365-top-about-img-wrapper {
  margin-top: 20px;
}

/* =========================
   Reviews Section
========================= */
.gLoop365-top-review-card {
  background-color: rgba(255, 210, 48, 0.1);
  padding: 25px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.gLoop365-top-review-card:hover {
  background-color: #ffd230;
  color: #312703;
}

/* =========================
   Footer
========================= */
.gLoop365-top-footer {
  background-color: #312703;
  color: #fff9e4;
}

.gLoop365-top-footer-heading {
  color: #ffd230;
  font-weight: 600;
}

.gLoop365-top-footer-link {
  color: #fff9e4;
  display: block;
  margin-bottom: 5px;
  transition: color 0.3s;
}

.gLoop365-top-footer-link:hover {
  color: #ffd230;
}

.gLoop365-top-footer-logo {
  height: 60px;
  margin-bottom: 15px;
}

/* =========================
   Scroll to Top Button
========================= */
.gLoop365-top-scroll {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #ffd230;
  color: #312703;
  border: none;
  border-radius: 50%; /* perfect circle */
  font-size: 1.25rem;
  cursor: pointer;
  display: none;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gLoop365-top-scroll.visible {
  display: flex;
}

.gLoop365-top-scroll:hover {
  background-color: #fff9e4;
  color: #312703;
}


/* =========================
   Disclaimer Popup
========================= */
.gLoop365-top-disclaimer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.gLoop365-top-disclaimer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.gLoop365-top-disclaimer-box {
  background-color: #312703;
  color: #fff9e4;
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 500px;
  text-align: center;
}

.gLoop365-top-disclaimer-title {
  color: #ffd230;
  font-size: 2rem;
  margin-bottom: 20px;
}

.gLoop365-top-disclaimer-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.gLoop365-top-disclaimer-buttons .gLoop365-top-btn {
  margin: 5px 10px;
}

/* =========================
   Responsive
========================= */
@media (max-width: 992px) {
  .gLoop365-top-hero-heading {
    font-size: 2.5rem;
  }

  .gLoop365-top-hero-text {
    font-size: 1.1rem;
  }

  .gLoop365-top-game-card iframe {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .gLoop365-top-feature-card {
    margin-bottom: 20px;
  }

  .gLoop365-top-hero-heading {
    font-size: 2rem;
  }

  .gLoop365-top-hero-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .gLoop365-top-navbar .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }

  .gLoop365-top-hero {
    padding: 40px 15px;
  }
}
.gLoop365-top-footer-credit {
  color: #ffd230; /* matches your headings/accents */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.gLoop365-top-footer-credit:hover {
  color: #fff9e4; /* hover effect */
  text-decoration: underline;
}




/* =========================
   Contact Section
========================= */
.gLoop365-top-contact {
  background-color: rgba(255, 210, 48, 0.05);
}

.gLoop365-top-contact .form-label {
  color: #ffd230;
  font-weight: 600;
}

.gLoop365-top-contact-form .form-control {
  background-color: #312703;
  color: #fff9e4;
  border: 1px solid #ffd230;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.gLoop365-top-contact-form .form-control:focus {
  border-color: #fff9e4;
  box-shadow: 0 0 8px rgba(255, 210, 48, 0.5);
  background-color: #312703;
  color: #fff9e4;
}

.gLoop365-top-contact-form textarea.form-control {
  resize: none;
}

.gLoop365-top-contact-form .gLoop365-top-btn {
  margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .gLoop365-top-contact .gLoop365-top-section-title {
    font-size: 1.75rem;
  }

  .gLoop365-top-contact .gLoop365-top-section-text {
    font-size: 0.95rem;
  }
}



/* =========================
   Legal Pages: Disclaimer, Privacy, Terms
========================= */
.gLoop365-top-legal {
  background-color: #312703; /* Site background */
  color: #fff9e4; /* Text color */
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* professional font */
}

.gLoop365-top-legal h2.gLoop365-top-section-title {
  color: #ffd230; /* Heading color */
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* subtle shadow for visibility */
}

.gLoop365-top-legal h4 {
  color: #ffd230; /* Subheading color */
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.gLoop365-top-legal p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #fff9e4;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3); /* improves readability on dark background */
}

.gLoop365-top-legal strong {
  color: #ffd230;
  font-weight: 600;
}

/* Links inside legal sections */
.gLoop365-top-legal a {
  color: #ffd230;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.gLoop365-top-legal a:hover {
  color: #fff9e4;
}

/* Container adjustments for large screens */
.gLoop365-top-legal .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .gLoop365-top-legal h2.gLoop365-top-section-title {
    font-size: 2.2rem;
  }
  
  .gLoop365-top-legal h4 {
    font-size: 1.3rem;
  }

  .gLoop365-top-legal p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .gLoop365-top-legal {
    padding: 40px 15px;
  }

  .gLoop365-top-legal h2.gLoop365-top-section-title {
    font-size: 1.9rem;
  }

  .gLoop365-top-legal h4 {
    font-size: 1.2rem;
  }

  .gLoop365-top-legal p {
    font-size: 0.9rem;
  }
}

