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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5bffc; /* Site Background */
  color: #231f20; /* Text */
  line-height: 1.6;
}

a {
  color: #61954c; /* Primary accent */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #231f20; /* Hover/Active */
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #231f20;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Buttons */
.chip-l-btn {
  background-color: #3ea5ab;
  color: #231f20;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.chip-l-btn:hover {
  background-color: #231f20;
  color: #f5bffc;
}

/* Sections */
.chip-l-section {
  padding: 80px 0;
}

/* Container & Layout */
.chip-l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

/* Cloudloopapp Navbar Section */
.cloud-l-navbar-section {
  background-color: #f5bffc;
  padding: 16px 0;
  width: 100%;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.cloud-l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cloud-l-logo-img {
  height: 70px;
}

.cloud-l-toggler {
  font-size: 24px;
  background: none;
  border: none;
  color: #000;
  display: none;
  cursor: pointer;
}

.cloud-l-nav-menu {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.cloud-l-nav-item {
  display: inline-block;
}

.cloud-l-nav-link {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  padding: 10px 8px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.cloud-l-nav-link:hover,
.cloud-l-nav-link:active {
  color: #61954c;
  background-color: #e0d2c2;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .cloud-l-toggler {
    display: block;
  }

  .cloud-l-nav-menu {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 12px;
  }

  .cloud-l-nav-menu.show {
    display: flex;
  }

  .cloud-l-nav-item {
    text-align: left;
    width: 100%;
  }
}

.cloud-l-nav-link.active {
  color: #61954c;
  font-weight: 700;
  border-bottom: 2px solid #61954c;
}

/* Hero Section Base */
.chiploom-hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 20px 120px;
  color: #231f20;
  text-align: center;
  background-color: #f5bffc; /* Fallback background */
}

/* Overlay for contrast (adjust alpha if needed) */
.chiploom-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.4); /* Light overlay */
  z-index: 1;
}

/* Content Wrapper */
.chiploom-hero-container {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
}

/* Heading Styles */
.chiploom-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #231f20;
}

/* Paragraph Text */
.chiploom-hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #231f20;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* CTA Button */
.chiploom-hero-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  background-color: #3ea5ab;
  color: #231f20;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

/* Button Hover & Active */
.chiploom-hero-btn:hover,
.chiploom-hero-btn:focus {
  background-color: #61954c; /* Primary accent on hover */
  color: #231f20; /* Keep button text color */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .chiploom-hero-content h1 {
    font-size: 32px;
  }

  .chiploom-hero-content p {
    font-size: 16px;
  }

  .chiploom-hero-btn {
    font-size: 15px;
    padding: 10px 22px;
  }
}

/* Chiploom365 Disclaimer Section Styles */
.chiploom-disclaimer-section {
  background-color: #f5bffc;
  padding: 100px 20px;
  color: #231f20;
}

.chiploom-disclaimer-card {
  background-color: white;
  border: 2px solid #61954c; /* primary accent border */
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.chiploom-disclaimer-title {
  font-size: 36px;
  font-weight: 700;
  color: #231f20;
  margin-bottom: 25px;
}

.chiploom-disclaimer-text {
  font-size: 18px;
  color: #231f20;
  line-height: 1.7;
  margin-bottom: 30px;
}

.chiploom-disclaimer-text strong {
  color: #61954c;
}

.chiploom-disclaimer-btn {
  display: inline-block;
  background-color: #3ea5ab;
  color: #231f20;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.chiploom-disclaimer-btn:hover,
.chiploom-disclaimer-btn:focus {
  background-color: #231f20;
  color: #f5bffc;
}

/* Chiploom365 Game Section */
.chiploom-game-section {
  background-color: #f5bffc;
  padding: 100px 20px;
  color: #231f20;
}

.chiploom-game-title {
  font-size: 36px;
  font-weight: 700;
  color: #231f20;
  margin-bottom: 30px;
}

.chiploom-game-frame iframe {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Chiploom365 Features Section */
.chiploom-features-section {
  background-color: #f5bffc;
  padding: 100px 20px;
  color: #231f20;
}

.chiploom-features-title {
  font-size: 36px;
  font-weight: 700;
  color: #231f20;
  margin-bottom: 60px;
}

.chiploom-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.chiploom-feature-card {
  background: #ffffff;
  border: 2px solid #61954c;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.chiploom-feature-card:hover {
  transform: translateY(-8px);
}

.chiploom-feature-icon {
  font-size: 36px;
  color: #3ea5ab;
  margin-bottom: 20px;
}

.chiploom-feature-text h4 {
  font-size: 20px;
  font-weight: 600;
  color: #231f20;
  margin-bottom: 10px;
}

.chiploom-feature-text p {
  font-size: 15px;
  color: #231f20;
  line-height: 1.6;
}

/* Cloudloopapp Review Section Styles */
.cloud-l-review-section {
  background-color: #f5bffc;
  padding: 80px 20px;
  color: #231f20;
}

.cloud-l-review-title {
  color: #231f20;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.cloud-l-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.cloud-l-review-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.cloud-l-review-card:hover {
  transform: translateY(-6px);
}

.cloud-l-review-icon {
  font-size: 2rem;
  color: #61954c;
  margin-bottom: 15px;
}

.cloud-l-review-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #231f20;
  margin-bottom: 10px;
}

.cloud-l-review-text {
  font-size: 1rem;
  color: #231f20;
  margin-bottom: 15px;
  line-height: 1.6;
}

.cloud-l-review-stars {
  color: #3ea5ab;
  font-size: 1.1rem;
}

footer {
  padding-bottom: 40px; /* or any value you prefer */
}

.cloud-l-footer a {
  color: #61954c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cloud-l-footer a:hover {
  color: #231f20;
}

.cloud-l-footer .footer-nav ul {
  padding: 0;
  list-style: none;
}

.cloud-l-footer .footer-nav li {
  margin: 0 10px;
}

.cloud-l-scroll-top {
  background-color: #3ea5ab;
  color: #231f20;
  padding: 10px 12px;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cloud-l-scroll-top:hover {
  background-color: #61954c;
  color: #231f20;
}

/* Scroll To Top Button */
.cloud-l-scroll-top {
  display: inline-block;
  background-color: #3ea5ab;
  color: #231f20;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.cloud-l-scroll-top:hover {
  background-color: #61954c;
  color: #231f20;
  transform: translateY(-4px);
  text-decoration: none;
}

#cloud-l-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5bffc;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.cloud-l-spinner {
  border: 6px solid #cde9f3;
  border-top: 6px solid #61954c;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: cloudLSpin 1s linear infinite;
}

@keyframes cloudLSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Cloudloopapp Disclaimer Popup Styles */
.cloud-l-age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 31, 32, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.cloud-l-age-popup-content {
  background-color: #f5bffc;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 15px rgba(35, 31, 32, 0.4);
}

.cloud-l-age-popup-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cloud-l-btn {
  background-color: #3ea5ab;
  color: #231f20;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cloud-l-btn:hover {
  background-color: #231f20;
  color: #f5bffc;
}

.cloud-l-btn.decline {
  background-color: #ccc;
}

.cloud-l-btn.decline:hover {
  background-color: #999;
  color: #fff;
}

/* Hide menu by default on small screens */
.cloud-l-nav-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
}

/* Show menu when toggled */
.cloud-l-menu-active {
  display: flex !important;
}

/* Optional: Responsive breakpoint */
@media (min-width: 768px) {
  .cloud-l-nav-menu {
    display: flex !important;
    flex-direction: row;
  }

  #cloud-l-toggle {
    display: none;
  }
}

/* Contact Container */
.cloud-l-container {
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Form Styles */
.cloud-l-contact-form {
  width: 100%;
}

.cloud-l-form-group {
  display: flex;
  flex-direction: column;
}

.cloud-l-form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #231f20;
}

.cloud-l-form-group input,
.cloud-l-form-group textarea {
  padding: 12px;
  border: 2px solid #61954c;
  border-radius: 8px;
  background-color: #ffffff;
  color: #231f20;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.cloud-l-form-group input:focus,
.cloud-l-form-group textarea:focus {
  outline: none;
  border-color: #3ea5ab;
  box-shadow: 0 0 5px #3ea5ab;
}

/* Submit Button */
.cloud-l-btn {
  background-color: #3ea5ab;
  color: #231f20;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: center;
}

.cloud-l-btn:hover {
  background-color: #231f20;
  color: #f5bffc;
}
