body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: rgba(33,37,41,255);
  color: #ccc;
}

.glassy-navbar {
  background: rgba(0, 0, 0, 0.4);         /* Dark translucent background */
  backdrop-filter: blur(12px);           /* Frosted blur effect */
  -webkit-backdrop-filter: blur(12px);   /* Safari support */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  background-color: #1a1a1a;
  position: relative;
  flex-wrap: wrap;
}

.logo {
  position: absolute;
  left: 20px;
}

.logo img {
  height: 35px;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.nav-links a {
  text-decoration: none;
  color: rgb(9, 189, 204);
  font-size: 15px;
  font-family: 'MedievalSharp', fantasy;
  transition: background-color 0.3s, color 0.3s;
  padding: 8px 16px;
  border-radius: 8px;
}

.nav-links a:hover {
  background-color: #333;
  color: #fff;
}

.nav-links a.active {
  background-color: rgb(13, 129, 125);
  color: white;
  font-size: 18px;
  padding: 4px 16px;
  transition: all 0.3s ease;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.blinking {
  color: rgb(13, 129, 125);
  text-align: center;
  font-size: 2rem;
  animation: blink 2.5s infinite;
}

.subtext {
  text-align: center;
  color: #aaa;
  margin-bottom: 30px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.faq-item {
  background-color: #1a1a1a;
  border: 1px solid #302b42;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  background: none;
  border: none;
  color: #ccc;
  font-size: 1.1rem;
  padding: 18px 20px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-icon {
  margin-right: 10px;
  color: rgb(13, 129, 125);
}

.arrow {
  color: rgb(13, 129, 125);
  transition: transform 0.3s ease;
}

.faq-question.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 18px;
  display: none;
  color: #ddd;
  font-size: 0.95rem;
}


.footer {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 40px 20px 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-column h3 {
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  color: #ccc;
}

.social-icons a {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-decoration: none;
  color: #ccc;
}

.social-icons img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(2, 100px);
  gap: 15px;
}

.payments-grid img {
  width: 100px;
  height: 50px;
  border-radius: 10px;
  background-color: rgb(26, 46, 45);
  object-fit: cover;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0 0;
  color: #888;
  font-size: 14px;
  border-top: 1px solid #1e1e2e;
  margin-top: 40px;
}

/* Terms CSS */

.terms-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.terms-heading {
  text-align: center;
  color: rgb(13, 129, 125);
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.terms-subtext {
  text-align: center;
  color: #aaa;
  font-size: 1.1rem;
}

.terms-date {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  margin-top: 8px;
  margin-bottom: 30px;
}

.terms-section {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.icon .material-icons {
  color: rgb(13, 129, 125);
  font-size: 28px;
}

.icon {
  background-color: rgba(13, 129, 125, 0.237);
  padding: 14px;
  border-radius: 12px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease;
}

.terms-section:hover .icon {
  box-shadow: 0 0 10px rgb(13, 129, 125);
}

.text h2 {
  color: rgb(13, 129, 125);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.text p {
  color: #ccc;
  font-size: 1rem;
  margin: 0;
}

.terms-section {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.02);
  padding: 16px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-section:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(13, 129, 125, 0.402);
}




/* Tablet */
@media (max-width: 768px) {
  .nav-links {
    gap: 25px;
  }

  .nav-links a {
    font-size: 14px;
    padding: 6px 12px;
  }

  .nav-links a.active {
    font-size: 16px;
    padding: 6px 12px;
  }

  .logo img {
    height: 30px;
  }

  .hero h1 {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .logo {
    position: relative;
    left: 0;
    margin-bottom: 10px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
  }

  .nav-links.show {
    max-height: 300px;
    opacity: 1;
  }

  .nav-links a {
    font-size: 13px;
    padding: 8px 12px;
  }

  .nav-links a.active {
    font-size: 14px;
    padding: 4px 10px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* Actions on the right */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  right: 60px;
}

/* Dark mode button */
#darkToggle {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: white;
}

body.dark-mode {
  background-color: #f5f5f5;
}

body.dark-mode .navbar {
  background-color: #f5f5f5;
}

body.dark-mode .nav-links a {
  color: #003b44;
}

body.dark-mode .nav-links a.active {
  background-color: #00a1a7;
  color: white;
}

body.dark-mode #darkToggle {
  color: #000;
}

body.dark-mode .notification {
  color: #000;
}