/* === Base === */
body {
  color: #F38C79;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}
.navbar-custom {
    background-color: #015551;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }

  .navbar-custom .nav-link {
    color: #F38C79 !important;
    font-weight: 500;
  }

  .navbar-custom .navbar-brand img {
    height: 50px;
    width: 120px;
    border-radius: 10px;
  }

  .navbar-toggler {
    border-color: #F38C79;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23F38C79' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

a:hover {
  opacity: 0.9;
}

.info-box {
  background-color: rgba(243, 140, 121, 0.15);
  color: #F38C79;
  padding: 15px;
  border-left: 4px solid #F38C79;
  border-radius: 10px;
  font-weight: bold;
  text-align: left;
}

.table-header {
  background-color: rgba(243, 140, 121, 0.2);
  padding: 15px;
  border-radius: 10px;
  font-weight: bold;
  color: #EBE8DB;
}

.site-row {
  background-color: rgba(235, 232, 219, 0.05);
  padding: 15px 10px;
  border-radius: 10px;
  border-left: 4px solid #F38C79;
}

.site-logo {
  max-height: 40px;
  max-width: 100%;
  background-color: #EBE8DB;
  border-radius: 6px;
  padding: 5px;
}

.score {
  color: #F38C79;
  font-size: 1.6rem;
  font-weight: bold;
}

.play-btn {
  background-color: #F38C79;
  color: #015551;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  transition: 0.3s ease;
}

.play-btn:hover {
  background-color: #d57664;
  color: white;
}

/* === Footer === */
.site-footer {
  background-color: #013e3b;
  color: #EBE8DB;
  padding-top: 3rem;
}

.footer {
  border-bottom: 1px solid rgba(235, 232, 219, 0.3);
  padding-bottom: 1rem;
}

.brand {
  font-weight: bold;
  font-size: 1.2rem;
  color: #F38C79;
}

.footer-link {
  color: #F38C79;
  font-weight: 500;
}

.footer-link:hover {
  color: #EBE8DB;
}

.disclaimer {
  font-size: 0.9rem;
  margin-top: 2rem;
  color: #EBE8DB;
}

.footer-logo {
  height: 60px;
  max-width: 150px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 576px) {
  .footer-logo {
    height: 30px;
    max-width: 70px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-links {
    margin-top: 1rem;
  }
}
