/* ================= General Base ================= */
body.t-click {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
               Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  background-color: #ffac83;
  color: #000000;
  margin: 0;
  padding: 0;
}

/* ================= Navbar Base ================= */
.t-click-navbar {
  background-color: #ffac83;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ================= Logo Styling ================= */
.t-click-logo {
  max-height: 80px;           /* Adjust height of logo */
  width: auto;                /* Maintain aspect ratio */
  display: inline-block;
  transition: transform 0.3s ease;
}

.t-click-navbar .nav-link {
  color: #000000;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.t-click-navbar .nav-link:hover {
  color: #d00400;
}

/* ================= Active Link as Eye-Shaped Background ================= */
.t-click-navbar .nav-link.active {
  color: #ffac83; /* text color */
  background-color: #d00400; /* flame color */
  position: relative;
  padding: 0.5rem 1.2rem;
  transition: all 0.3s ease;

  /* Eye shape using clip-path */
  clip-path: ellipse(50% 25% at 50% 50%);
  border-radius: 50% / 50%;
}

/* Optional: Slight hover effect for active link */
.t-click-navbar .nav-link.active:hover {
  transform: scale(1.05);
  color: #ffac83;
}



.t-click-navbar .nav-link.active:hover::after {
  transform: translateX(-50%) rotate(0deg) scale(1.1);
}

/* ================= Mobile Toggler ================= */
/* Mobile Toggler */
.navbar-toggler {
  border: none; /* optional */
  background: transparent; /* keeps default icon visible */
}

/* remove the broken background-image */
.navbar-toggler-icon {
  /* use default Bootstrap icon */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .t-click-navbar .nav-link {
    padding: 0.5rem 0.75rem;
  }
}



/* ================= Buttons ================= */
.t-click-btn {
  background-color: #d00400;
  color: #ffac83;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.t-click-btn:hover {
  background-color: #ff5a36;
  color: #fff;
}
.t-click-btn.outlined {
  background: transparent;
  border: 2px solid #d00400;
  color: #d00400;
}
.t-click-btn.outlined:hover {
  background-color: #d00400;
  color: #ffac83;
}


/* ================= Section Title ================= */
.t-click-section-title {
  color: #d00400;              /* site accent color */
  font-size: 2.25rem;          /* large and prominent */
  font-weight: 700;            /* bold for emphasis */
  text-transform: uppercase;   /* optional: makes it more striking */
  letter-spacing: 1px;         /* adds spacing for clarity */
  margin-bottom: 1rem;         /* spacing below the title */
  text-align: center;          /* center align for headings */
  position: relative;
}

/* Optional: subtle underline accent */
.t-click-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #d00400;
  margin: 10px auto 0;        /* positions underline under title */
  border-radius: 2px;
}


/* ================= Hero Section ================= */
.t-click-hero {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('../images/header-bg.jpg') center/cover no-repeat;
  position: relative;
}
.t-click-hero-content {
  max-width: 700px;
  z-index: 2;
}
.t-click-hero-heading {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
}
.t-click-hero-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #000000;
}

/* ================= Disclaimer Section ================= */
.t-click-disclaimer {
  background-color: #ffac83;  /* site background */
  color: #000000;
}

.t-click-disclaimer-card {
  background: #ffe3d6;           
  border-radius: 25px;
  border: 2px solid #d00400;    /* accent border */
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.t-click-disclaimer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

.t-click-disclaimer-card h2 {
  color: #d00400;               /* heading accent */
  font-weight: 700;
}

.t-click-disclaimer-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
}

.t-click-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #d00400;
  color: #ffac83;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.t-click-btn:hover {
  background-color: #ff5a36;
  color: #ffffff;
}

/* ================= Game Section ================= */
.t-click-game-card {
  max-width: 900px;
  width: 100%;
  height: 600px;
  border: 3px solid #d00400;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.t-click-game-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

/* ================= Features Section Cards ================= */
.t-click-features .t-click-feature-card {
  background: linear-gradient(135deg, #ffac83 0%, #ffd4c3 100%); /* warm gradient */
  padding: 30px 25px;
  border-radius: 25px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.t-click-features .t-click-feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, #ff5a36 0%, #ffac83 100%); /* hover gradient */
}

.t-click-features .t-click-feature-card i {
  color: #d00400; /* accent color */
  margin-bottom: 15px;
  font-size: 3rem;
}

.t-click-features .t-click-feature-card h4 {
  color: #000000; /* heading inside card */
  font-weight: 700;
  margin-bottom: 10px;
}

.t-click-features .t-click-feature-card p {
  color: #000000; /* text inside card */
  font-size: 1rem;
  line-height: 1.5;
}

/* ================= About Section ================= */
.t-click-about {
  background-color: #ffac83; /* site background */
  color: #000000; /* text color */
}

.t-click-about .t-click-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d00400; /* heading accent color */
  margin-bottom: 20px;
}

.t-click-about .t-click-about-text {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.t-click-about .t-click-about-img-wrapper {
  margin-top: 30px;
}

.t-click-about .t-click-about-img {
  max-width: 100%;
  height: auto;
}


/* ================= Reviews Section ================= */
.t-click-reviews {
  background-color: #ffac83; /* site background */
  color: #000000;
  padding: 60px 20px;
}

.t-click-reviews .t-click-section-title {
  color: #d00400; /* heading accent */
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.t-click-reviews .t-click-reviews-intro {
  font-size: 1.15rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Horizontal scroll wrapper */
.t-click-reviews-scroll-wrapper {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #d00400 #ffac83;
}

.t-click-reviews-scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}

.t-click-reviews-scroll-wrapper::-webkit-scrollbar-track {
  background: #ffac83;
}

.t-click-reviews-scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: #d00400;
  border-radius: 4px;
}

/* Review cards */
.t-click-reviews-scroll {
  display: flex;
  gap: 20px;
}

.t-click-review-card {
  background-color: #fff3f0;
  border-radius: 20px;
  padding: 25px 20px;
  flex: 0 0 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.t-click-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.t-click-review-card i {
  color: #d00400;
  margin-bottom: 10px;
}

.t-click-review-card p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.t-click-review-card h5 {
  font-weight: 600;
  color: #000;
}


/* ================= Footer ================= */
.t-click-footer {
  background-color: #fff3f0;
  padding: 60px 20px;
  text-align: center;
}
.t-click-footer-heading {
  color: #d00400;
  font-weight: 700;
  margin-bottom: 15px;
}
.t-click-footer-links a {
  margin: 0 10px;
  color: #d00400;
  text-decoration: none;
  font-weight: 500;
}
.t-click-footer-links a:hover {
  color: #ff5a36;
}
.t-click-footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
}

/* ================= Age Verification Popup ================= */
.t-click-age-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.t-click-age-popup-box {
  background: #fff3f0;
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.t-click-age-popup-box h2 {
  color: #d00400;
  margin-bottom: 20px;
}
.t-click-age-popup-actions button {
  margin: 10px 10px 0;
}

/* ================= Scroll to Top ================= */
.t-click-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #d00400;
  color: #ffac83;
  border: none;
  padding: 12px 18px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.t-click-scroll-top:hover {
  background-color: #ff5a36;
  color: #fff;
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
  .t-click-hero-heading {
    font-size: 2.2rem;
  }
  .t-click-hero-text {
    font-size: 1rem;
  }
  .t-click-game-card {
    height: 400px;
  }
}



/* ================= Footer ================= */
.t-click-footer {
  background-color: #ffac83; /* site background */
  color: #000000; /* text color */
  padding: 60px 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
               Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  text-align: center;
}

.t-click-footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}

.t-click-footer-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000; /* heading color */
  margin-bottom: 15px;
}

.t-click-footer-text {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  color: #000000;
}

.t-click-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.t-click-footer-link {
  color: #d00400; /* accent color for links */
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.t-click-footer-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ff5a36; /* hover accent */
  left: 0;
  bottom: -3px;
  transition: width 0.3s ease;
}

.t-click-footer-link:hover {
  color: #ff5a36; /* hover color */
}

.t-click-footer-link:hover::after {
  width: 100%;
}

.t-click-link {
  color: #d00400;
  text-decoration: underline;
}


/* ================= Age Verification Popup ================= */
.t-click-age-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* semi-transparent black overlay */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.t-click-age-popup-box {
  background-color: #ffac83; /* site background */
  color: #000000; /* text color */
  padding: 40px 30px;
  border-radius: 20px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.t-click-age-popup-box h2 {
  color: #000000;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.t-click-age-popup-box p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.t-click-age-popup-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.t-click-btn {
  background-color: #d00400; /* button color */
  color: #ffac83; /* button text */
  padding: 10px 25px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.t-click-btn:hover {
  background-color: #ff5a36; /* hover color */
}

.t-click-btn.outlined {
  background-color: transparent;
  color: #d00400;
  border: 2px solid #d00400;
}

.t-click-btn.outlined:hover {
  background-color: #d00400;
  color: #ffac83;
}

/* ================= Scroll to Top ================= */
.t-click-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #d00400; /* button color */
  color: #ffac83; /* button text */
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background 0.3s ease;
  z-index: 999;
}

.t-click-scroll-top:hover {
  background-color: #ff5a36; /* hover color */
}



/* ================= Contact Section ================= */
.t-click-contact {
  background-color: #ffac83; /* site background */
  color: #000000; /* text color */
}

.t-click-contact-subtext {
  color: #000000;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.t-click-contact-form .form-label {
  font-weight: 600;
  color: #000000;
}

.t-click-contact-form .form-control {
  border: 2px solid #d00400;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 1rem;
}

.t-click-contact-form .form-control:focus {
  outline: none;
  border-color: #ff5a36;
  box-shadow: 0 0 5px rgba(208,4,0,0.5);
}

.t-click-contact-form textarea.form-control {
  resize: vertical;
}

.t-click-contact-form .t-click-btn {
  background-color: #d00400;
  color: #ffac83;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: none;
}

.t-click-contact-form .t-click-btn:hover {
  background-color: #ff5a36;
  color: #fffacb;
  transform: translateY(-2px);
}


/* ================= Legal Pages ================= */
.t-click-legal {
  background-color: #ffac83; /* site background */
  color: #000000;
}

.t-click-legal-card {
  background-color: #fff3f0;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.t-click-legal-card h2.t-click-section-title {
  color: #000000;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.t-click-legal-card h4 {
  color: #d00400; /* accent color for subheadings */
  margin-top: 25px;
  margin-bottom: 10px;
}

.t-click-legal-card p,
.t-click-legal-card ul {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
}

.t-click-legal-card a.t-click-link {
  color: #d00400;
  text-decoration: underline;
}

.t-click-legal-card a.t-click-link:hover {
  color: #ff5a36;
}
