@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

*:not(i) {
  font-family: "Montserrat", sans-serif;
}

 body{
  background-color: #062F31;
 }

 body p{
  color: white;
 }

 body h1{
  color: white;
 }

 body h4{
  color: white;
 }

 body span{
  color: white;
 }

.bg-teal       { background-color: #134d50; }
.bg-dark-green { background-color: #0e2727; }

.header-sign {
  position: relative;
}

.brand-sign {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  background: #0e3b3c;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  position: relative;
}

.brand-sign::before,
.brand-sign::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 50px;
  background: #061a1a;
  top: -50px;
}
.brand-sign::before { left: 1rem; }
.brand-sign::after  { right: 1rem; }

.brand-icon {
  width: 24px;
  height: 24px;
}

.brand-text {
  font-family: 'Cinzel', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: #f0f5f5;
}

.navbar{
  background: #112A29;
}

.nav-link:hover {
  color: #76c6b5 !important;
}

.btn-signin {
  background-color: #e5e5e5;
  color: #111;
  border: none;
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
}

.btn-signup {
  background-color: #76c6b5;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
}
.btn-signup:hover {
  background-color: #5aa897;
}

.bg-teal        { background-color: #0e3b3c; }
.text-teal      { color: #0e3b3c !important; }
.bg-dark-teal   { background-color: #133e3f; }
.bg-dark-green  { background-color: #0a2a2a; }

.btn-light.text-teal {
  background-color: #e5e5e5;
  border: none;
}
.btn-light.text-teal:hover {
  background-color: #d0d0d0;
}

.timer-wrapper {
  background-color: rgba(19, 62, 63, 0.8);
}

.time-card {
  width: 80px;
  text-align: center;
}

@media (max-width: 576px) {
  .time-card { width: 60px; padding: 0.5rem; }
  .h2 { font-size: 1.5rem; }
}

#days{
  color: white;
}

#hours{
  color: white;
}

#seconds{
  color: white;
}

#minutes{
  color: white;
}

.bg-teal {
  background-color: #0e3b3c;
}

.custom-card {
  background-color: #112A29;
  border-radius: 8px;
}

.icon-placeholder {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background-color: #0a2a2a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-weight: 500;
}

.custom-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 576px) {
  .icon-placeholder {
    width: 50px;
    height: 50px;
  }
}

.bg-teal {
  background-color: #0e3b3c;
}

.alert-icon {
  font-size: 2rem;
  width: 64px;
  height: 64px;
  line-height: 64px;
  background-color: #0a2a2a;
  color: #fff;
  border-radius: 8px;
  text-align: center;
}

.policy-link {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.policy-link:hover {
  color: #76c6b5;
  border-color: #76c6b5;
}

.bg-teal {
  background-color: #0e3b3c;
}

.custom-input {
  background-color: #112A29;
  text-align: center;
  border: none;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  color: #fff;
  font-size: 1rem;
  height: auto;
  min-height: 3.5rem;
}
.custom-input::placeholder {
  color: #ccc;
  opacity: 1;
}

.custom-btn {
  background-color: #e5e5e5;
  color: #0e3b3c;
  border-radius: 50px;
  transition: background-color 0.3s, transform 0.3s;
}
.custom-btn:hover {
  background-color: #d0d0d0;
  transform: translateY(-2px);
}

.bg-teal {
  background-color: #0e3b3c;
}

.faq-btn {
  background-color: #133e3f;
  color: #fff;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  transition: background-color 0.3s;
}
.faq-btn:not(.collapsed) {
  background-color: #1f615f;
}
.faq-btn::after {
  filter: invert(1); 
  font-size: 1.25rem;
}

.accordion-item {
  border: none;
}

.faq-body {
  background-color: #133e3f;
  border-radius: 0 0 50px 50px;
  padding: 1.5rem;
  color: #ddd;
  margin-top: -1rem; 
}

.accordion-item + .accordion-item {
  margin-top: 1rem;
}

.bg-teal { background-color: #0e3b3c !important; }

.responsible-logos {
  background-color: #111;    
}

.logo-img {
  max-height: 50px;          
  width: auto;
  filter: brightness(0) invert(1);
}

.custom-logo {
  max-height: 50px;          
  width: auto;
  
}

@media (max-width: 576px) {
  .logo-img {
    max-height: 40px;
  }
}

.modal-dark { background-color: #133e3f; color: #fff; border-radius: 16px; }
.form-dark  { background-color: #0f3132; border: none; color: #fff; border-radius: 12px; }
.form-dark::placeholder { color: #bfc7c7; }
.btn-close-white { filter: invert(1); } 

/* Responsible Gambling cards */
.rg-card{
  background:#133e3f;
  border-radius:12px;
  padding:1.25rem 1.25rem 1rem;
}
.rg-list{
  list-style:none;
  padding-left:0;
  margin-bottom:0;
}
.rg-list li{
  position:relative;
  padding-left:1.25rem;
  margin:.25rem 0;
}
.rg-list li::before{
  content:"•";
  position:absolute;
  left:0;
  color:#9fdad0; /* soft teal bullet */
}


/* Optional theming to match your dark palette */
.search-input { background:#133e3f; border:none; color:#fff; }
.search-input::placeholder { color:#cfd6d6; }
.modal-dark { background:#133e3f; color:#fff; border-radius:14px; }
.btn-close-white { filter: invert(1); }



footer ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

footer ul li {
  list-style: none;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
}

footer p {
  color: #fff;
  margin: 0;
  margin-top: 40px;
  text-align: center;
}

.bread {
  background: #8aa624;
}
.bread h2 {
  font-size: 45px;
}

.contact-form {
  max-width: 700px;
  margin: 60px auto;
  padding: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
}
.contact-form h2 {
  font-weight: 600;
  color: #2d0a38;
  margin-bottom: 30px;
  text-align: center;
}
.btn-orange {
  background-color: #b7d182;
  color: #fff;
  border-radius: 30px;
  padding: 10px 30px;
  border: none;
}
.btn-orange:hover {
  background-color: #8aa624;
  color: #fff;
}

@media (max-width: 992px) {
  .top-sect .top-cont {
    max-width: 90%;
  }

  .about .about-right {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
}
