body {
  font-family: "Inter", sans-serif;
}

/* Shadow Utilities */
.pixel-shadow {
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
}

.pixel-shadow-md {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}

.pixel-shadow-lg {
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.12);
}

/* Tab Styles */
.pixel-tab-active {
  background: #a259c6;
  color: #fff;
}

.pixel-tab-inactive {
  background: #f3f4f6;
  color: #222;
}

/* FAQ Styles */
.pixel-faq-arrow {
  transition: transform 0.2s;
}

.pixel-faq-arrow.open {
  transform: rotate(180deg);
}

.pixel-faq-card {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  border-radius: 16px;
}

/* Button Styles */
.pixel-btn {
  box-shadow: 0 2px 8px 0 rgba(236, 72, 153, 0.15);
}

/* Hero Section Styles */
.pixel-banner {
  box-shadow: 0 8px 32px 0 rgba(162, 89, 198, 0.18);
}

.pixel-search {
  box-shadow: 0 2px 8px 0 rgba(162, 89, 198, 0.1);
  font-size: 18px;
}

.pixel-hero-btn {
  font-size: 18px;
  font-weight: 700;
  border-radius: 9999px;
  padding: 12px 40px;
}

.pixel-hero-btn.selected {
  background: #fff;
  color: #a259c6;
}

.pixel-hero-btn.unselected {
  background: #fff;
  color: #a259c6;
  opacity: 0.5;
}

/* Card and Country Styles */
.pixel-card {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
}

.pixel-country {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}

/* Section Title */
.pixel-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #a259c6;
}

/* Help and App Button Styles */
.pixel-help-btn {
  background: #ec4899;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 17px;
  padding: 14px 40px;
}

.pixel-help-btn svg {
  margin-right: 8px;
}

.pixel-app-btn {
  background: #000;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  font-size: 17px;
  padding: 14px 32px;
}

.pixel-app-btn svg {
  margin-right: 8px;
}

/* Footer Styles */
.pixel-footer {
  background: linear-gradient(90deg, #7b2ff2 0%, #f357a8 100%);
}

.pixel-footer-link {
  color: #d1b3f7;
}

.pixel-footer-link:hover {
  color: #fff;
}

.pixel-footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pixel-footer-social {
  color: #d1b3f7;
  margin-right: 12px;
}

.pixel-footer-social:hover {
  color: #fff;
}

.pixel-footer-copyright {
  color: #d1b3f7;
  font-size: 15px;
  margin-top: 32px;
}

.pixel-dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  margin: 0 3px;
  display: inline-block;
}

.pixel-dot.active {
  background: #fff;
}

.pixel-dot.inactive {
  background: rgba(255, 255, 255, 0.5);
}

#toggleBtn {
  background-color: #a259c6;
  padding: 10px 26px;
  color: white;
  border-radius: 24px;
  margin-top: 55px;
}

#toggleBtn:hover {
  background: darkblue;
  transition: 2s;
}

.btn-container {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  #toggleBtn {
    font-size: 15px;
    padding: 10px 24px;
  }
}

@media (max-width: 480px) {
  #toggleBtn {
    font-size: 14px;
    padding: 8px 20px;
  }
}

div#countries {
    max-height: 420px;
    overflow: scroll;
}