/* ===========================
   Frostibble.com Main Styles
   Class namespace: frostibble-com
   Colors:
   - Headings: #f356e5
   - Text: #b8e5a4
   - Accents / Buttons: #f356e5
   - Button text: #002820
   - Button hover: #b8e5a4
   - Active links: #f356e5
   - Background: #002820
   Font: 'Karla', system-ui, sans-serif
=========================== */

body {
  font-family: 'Karla', system-ui, sans-serif;
  background-color: #002820;
  color: #b8e5a4;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

/* ================= Navbar ================= */
.frostibble-com-navbar {
  background-color: #002820;
  border-bottom: 1px solid rgba(243, 86, 229, 0.3);
}

.frostibble-com-navbar .navbar-brand img {
  max-height: 78px;
}

.frostibble-com-navbar .nav-link {
  color: #b8e5a4;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.frostibble-com-navbar .nav-link:hover,
.frostibble-com-navbar .nav-link.active {
  color: #f356e5;
}

.navbar-toggler {
  border: none;
  color: #f356e5;
  font-size: 1.5rem;
}

/* ================= Hero ================= */
.frostibble-com-hero {
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  color: #b8e5a4;
  padding: 2rem;
}

.frostibble-com-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 40, 32, 0.7);
}

.frostibble-com-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.frostibble-com-hero-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #f356e5;
  margin-bottom: 1rem;
}

.frostibble-com-hero-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* ================= Buttons ================= */
.frostibble-com-btn {
  display: inline-block;
  background-color: #f356e5;
  color: #002820;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.frostibble-com-btn:hover {
  background-color: #b8e5a4;
  color: #002820;
  transform: translateY(-2px);
}

/* ================= Sections ================= */
.frostibble-com-section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  color: #f356e5;
}

.frostibble-com-section-text {
  color: #b8e5a4;
  font-size: 1rem;
  line-height: 1.6;
}

/* ================= Disclaimer ================= */
.frostibble-com-disclaimer-card {
  background-color: #001a14;
  border: 2px solid #f356e5;
  color: #b8e5a4;
}

/* ================= Game Section ================= */
.frostibble-com-game-card {
  background-color: #001a14;
  border: 2px solid #f356e5;
  max-width: 900px;
}

.frostibble-com-game-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
}

/* ================= Features ================= */
.frostibble-com-feature-card {
  background-color: #001a14;
  border: 1px solid rgba(243, 86, 229, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.frostibble-com-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(243, 86, 229, 0.3);
}

.frostibble-com-feature-title {
  font-weight: 700;
  color: #f356e5;
  margin-bottom: 0.5rem;
}

.frostibble-com-about-section {
  background-color: #002820;
}

.frostibble-com-section-title {
  color: #f356e5;
  font-weight: 700;
}

.frostibble-com-about-text {
  color: #b8e5a4;
  font-size: 1.1rem;
  line-height: 1.6;
}


/* ================= Reviews ================= */
.frostibble-com-review-card {
  border: 1px solid rgba(243, 86, 229, 0.3);
  color: #b8e5a4;
  transition: all 0.3s ease;
}

.frostibble-com-review-card:hover {
  border-color: #f356e5;
  transform: scale(1.03);
}

/* ================= Footer ================= */
.frostibble-com-footer {
  background-color: #001e1a;
  color: #b8e5a4;
  padding: 3rem 0;
}

.frostibble-com-footer-logo {
  max-height: 70px;
}

.frostibble-com-footer-heading {
  color: #f356e5;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.frostibble-com-footer-text {
  color: #b8e5a4;
  font-size: 0.95rem;
  line-height: 1.6;
}

.frostibble-com-footer-links li {
  list-style: none;
}

.frostibble-com-footer-link {
  color: #b8e5a4;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.frostibble-com-footer-link:hover {
  color: #f356e5;
}

.frostibble-com-footer .border-top {
  border-color: #f356e5 !important;
}

/* ================= Age Popup ================= */
.frostibble-com-age-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 40, 32, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.frostibble-com-age-popup-overlay.active {
  display: flex;
}

.frostibble-com-age-popup-box {
  background: #001e1a;
  padding: 2rem;
  border-radius: 16px;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 0 25px rgba(243, 86, 229, 0.5);
}

.frostibble-com-age-popup-title {
  color: #f356e5;
  font-size: 1.5rem;
  font-weight:700;
}

.frostibble-com-age-popup-text {
  color: #b8e5a4;
  font-size: 1rem;
  line-height: 1.6;
}

/* ================= Buttons ================= */
.frostibble-com-btn {
  background: #f356e5;
  color: #002820;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.frostibble-com-btn:hover {
  background: #b8e5a4;
  color: #002820;
}

.frostibble-com-btn-ghost {
  background: transparent;
  color: #f356e5;
  border: 2px solid #f356e5;
}

.frostibble-com-btn-ghost:hover {
  background: #b8e5a4;
  color: #002820;
  border-color: #b8e5a4;
}

/* ================= Scroll to Top ================= */
.frostibble-com-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #f356e5;
  color: #002820;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 12px rgba(243, 86, 229, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
}

.frostibble-com-scroll-top.show {
  display: flex;
}

.frostibble-com-scroll-top:hover {
  background: #b8e5a4;
  color: #002820;
}

/* ================= Responsive ================= */
@media (max-width: 991px) {
  .frostibble-com-hero-heading {
    font-size: 2rem;
  }
  .frostibble-com-hero-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .frostibble-com-btn {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }
  .frostibble-com-section-title {
    font-size: 1.6rem;
  }
}



/* ================= Contact Section ================= */
.frostibble-com-contact {
  background-color: #002820;
  color: #b8e5a4;
}

.frostibble-com-contact-text {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

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

.frostibble-com-input {
  background: #001f18;
  border: 2px solid #f356e5;
  color: #b8e5a4;
  padding: 0.75rem;
  border-radius: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.frostibble-com-input:focus {
  border-color: #b8e5a4;
  box-shadow: 0 0 8px rgba(184, 229, 164, 0.5);
  outline: none;
}

.frostibble-com-btn {
  background: #f356e5;
  color: #002820;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.frostibble-com-btn:hover {
  background: #b8e5a4;
  color: #002820;
  transform: translateY(-2px);
}


/* ================= Legal Sections ================= */
.frostibble-com-legal {
  background-color: #002820;
  color: #b8e5a4;
  border-top: 2px solid #f356e5;
  border-bottom: 2px solid #f356e5;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.frostibble-com-legal .frostibble-com-section-title {
  color: #f356e5;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.frostibble-com-legal-text {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  text-align: justify;
}

.frostibble-com-legal-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.frostibble-com-legal-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #b8e5a4;
}
