* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgba(0, 0, 0, 0.2) !important;
}

.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(13, 129, 125);
  font-size: 15px;
  font-family: 'MedievalSharp', fantasy;
  transition: background-color 0.3s, color 0.3s;
  padding: 5px 13px;
  border-radius: 20px;
}

.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: 3px 24px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: rgb(255, 255, 255);
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero .highlight {
  color: rgb(13, 129, 125);
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-buttons .primary,
.hero-buttons .secondary {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.primary {
  background-color: rgb(13, 129, 125);
  color: white;
}

.secondary {
  background-color: rgba(0, 0, 0, 0.4);
  color: rgb(13, 129, 125);
  border: 2px solid rgb(13, 129, 125);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.1;
}

.hero-image img {
  max-width: 100%;
  height: 100%;
}

.stars {
  color: rgb(13, 129, 125);
}

.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;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: auto;
}

.grid-item {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgb(13, 129, 125);
  border-radius: 10px;
  text-align: center;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgb(13, 129, 125);
}

.icon-container {
  width: 60px;
  height: 60px;
  border: 1px solid rgb(13, 129, 125);
  border-radius: 50%;
  margin: 0 auto 15px;
  font-size: 28px;
  line-height: 60px;
  color: rgb(13, 129, 125);
}

.grid-item p {
  margin: 0;
  font-weight: bold;
  color: rgb(13, 129, 125);
}

.grid-link {
  text-decoration: none;
  color: inherit;
}

.grid-link p {
  text-decoration: none;
}

.material-symbols-outlined.custom-icon {
  font-size: 50px;          /* Icon size */
  color: rgb(13, 129, 125);           /* Icon color */
}

.store-section {
  padding: 2rem;
}

.store-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #c084fc;
  margin-bottom: 2rem;
}

.store-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
}

.store-filters {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
}

.range-labels {
  display: flex;
  justify-content: space-between;
}

.search-input {
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.currency-toggle button {
  background: #a855f7;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1rem;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-card img,
.product-card video {
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

.product-card h2 {
  margin: 0.5rem 0 0.2rem;
  font-size: 1.2rem;
}

.product-card .category {
  font-size: 0.8rem;
  color: #a78bfa;
}

.product-card .price {
  font-size: 1rem;
  font-weight: bold;
}

.product-card button {
  background-color: #8b5cf6;
  border: none;
  padding: 0.5rem;
  color: white;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.product-card button:hover {
  background-color: #110428b3;
}

.product-card a {
  color: #110428b3;
  font-size: 0.9rem;
  text-decoration: underline;
  margin-top: auto;
}

.support-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background-image: url('grid-bg.png');
  background-size: cover;
}

.support-text {
  max-width: 50%;
}

.support-text h1 {
  font-size: 3em;
  margin-bottom: 10px;
  color: rgb(13, 129, 125);
}

.support-text p {
  font-size: 1.2em;
  color: rgb(13, 129, 125);
}

.support-cards {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: rgb(1, 22, 21);
  background: linear-gradient(105deg, rgb(13, 129, 125), #1ce8e194);
  padding: 20px;
  border-radius: 15px;
  width: 180px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 2em;
  margin-bottom: 10px;
}

.card h3 {
  margin: 0;
  font-size: 1.1em;
  color: rgb(3, 10, 10);
}

.card p {
  margin: 5px 0 0;
  color: rgb(5, 13, 13);
  font-size: 0.9em;
}

.support-image {
  max-width: 45%;
  position: relative;
}

.support-image img {
  max-width: 100%;
  border-radius: 20px;
}

/* Loader Overlay Wrapper */
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 15, 15, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Loader Overlay Wrapper */
#loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 15, 15, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Existing loader styles */
.loader {
  width: 80px;
  height: 50px;
  position: relative;
}

.loader-text {
  position: absolute;
  top: 0;
  padding: 0;
  margin: 0;
  color: #C8B6FF;
  animation: text_713 3.5s ease both infinite;
  font-size: .8rem;
  letter-spacing: 1px;
}

.load {
  background-color: #9A79FF;
  border-radius: 50px;
  display: block;
  height: 16px;
  width: 16px;
  bottom: 0;
  position: absolute;
  transform: translateX(64px);
  animation: loading_713 3.5s ease both infinite;
}

.load::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #D1C2FF;
  border-radius: inherit;
  animation: loading2_713 3.5s ease both infinite;
}

@keyframes text_713 {
  0% { letter-spacing: 1px; transform: translateX(0px); }
  40% { letter-spacing: 2px; transform: translateX(26px); }
  80% { letter-spacing: 1px; transform: translateX(32px); }
  90% { letter-spacing: 2px; transform: translateX(0px); }
  100% { letter-spacing: 1px; transform: translateX(0px); }
}

@keyframes loading_713 {
  0% { width: 16px; transform: translateX(0px); }
  40% { width: 100%; transform: translateX(0px); }
  80% { width: 16px; transform: translateX(64px); }
  90% { width: 100%; transform: translateX(0px); }
  100% { width: 16px; transform: translateX(0px); }
}

@keyframes loading2_713 {
  0% { transform: translateX(0px); width: 16px; }
  40% { transform: translateX(0%); width: 80%; }
  80% { width: 100%; transform: translateX(0px); }
  90% { width: 80%; transform: translateX(15px); }
  100% { transform: translateX(0px); width: 16px; }
}


/* 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;
}

