:root {
  --primary: #0088ff;
  --primary-dark: #0066cc;
  --secondary: #00bcd4;
  --gold: #00d4ff;
  --bg-light: #f0f8ff;
  --bg-white: #ffffff;
  --text-dark: #1a2c3a;
  --text-gray: #4a6b7a;
  --shadow: rgba(0, 136, 255, 0.2);
  --shadow-strong: rgba(0, 136, 255, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--bg-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px var(--shadow);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--gold);
}

.nav-menu a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 5px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.logo {
  font-size: 32px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo span {
  font-size: 36px;
}

.donate-btn-header {
  background: var(--gold);
  color: var(--text-dark);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.donate-btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

.hero {
  background: linear-gradient(135deg, #0099ff 0%, #0088ff 50%, #0066cc 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 72px;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 15px;
  font-weight: 500;
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.stat-item:nth-child(2) {
  animation-delay: 0.5s;
}

.stat-item:nth-child(3) {
  animation-delay: 1s;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 5px;
}

.cta-button {
  display: inline-block;
  background: var(--gold);
  /* color: var(--text-dark); */
  color: white;
  padding: 20px 50px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
  margin-top: 20px;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.6);
}

.about {
  padding: 100px 0;
  background: var(--bg-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 10px 40px var(--shadow);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-text p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-gray);
}

.about-text strong {
  color: var(--primary);
}

.pricing {
  padding: 100px 0;
  background: var(--bg-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.pricing-card.featured {
  border: 3px solid var(--gold);
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
  z-index: 10;
}

.pricing-card.featured .pricing-title {
  margin-top: 45px;
}

.pricing-title {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 10px;
  white-space: nowrap;
}

.pricing-amount {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 20px 0;
  white-space: nowrap;
}

.pricing-amount span {
  font-size: 20px;
  color: var(--text-gray);
  font-weight: 400;
  white-space: nowrap;
}

.pricing-features {
  list-style: none;
  margin: 30px 0;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.feature-name {
  color: var(--text-gray);
}

.feature-value {
  color: var(--primary);
  font-weight: 600;
}

.pricing-btn {
  width: 100%;
  padding: 15px 30px;
  margin-top: 30px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.pricing-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-strong);
}

.pricing-card.featured .pricing-btn {
  background: var(--gold);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.pricing-card.featured .pricing-btn:hover {
  background: var(--secondary);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.transparency {
  padding: 100px 0;
  background: var(--bg-white);
}

.transparency-notice {
  background: linear-gradient(135deg, #e0f2ff 0%, #cce7ff 100%);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
  border-left: 5px solid var(--primary);
  animation: slideInLeft 0.8s ease-out;
}

.transparency-notice h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 24px;
}

.transparency-notice p {
  color: var(--text-gray);
  font-size: 16px;
}

.expense-breakdown {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.expense-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.expense-item:hover {
  background: var(--bg-light);
  padding-left: 30px;
}

.expense-item:last-child {
  border-bottom: none;
}

.expense-name {
  font-size: 18px;
  color: var(--text-dark);
  font-weight: 500;
}

.expense-amount {
  font-size: 20px;
  color: var(--primary);
  font-weight: 600;
}

.expense-total {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 3px solid var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.expense-total .expense-name {
  font-size: 24px;
  font-weight: 700;
}

.expense-total .expense-amount {
  font-size: 32px;
  color: var(--primary);
}

.testimonials {
  padding: 100px 0;
  background: var(--bg-light);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.quote-icon {
  font-size: 48px;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.author-info h4 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.author-info p {
  font-size: 14px;
  color: var(--text-gray);
}

.faq {
  padding: 100px 0;
  background: var(--bg-white);
}

.faq-list {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-item {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  padding: 25px 30px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
  background: var(--bg-light);
}

.faq-question::after {
  content: "+";
  font-size: 28px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 30px 25px;
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.8;
}

.code-generator {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  text-align: center;
}

.code-generator h2 {
  color: white;
  font-size: 48px;
  margin-bottom: 20px;
}

.code-generator p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 40px;
}

.code-display {
  background: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.code-label {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.code-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 3px;
  margin-bottom: 25px;
  font-family: "Courier New", monospace;
}

.generate-btn {
  background: var(--primary);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px var(--shadow);
}

.generate-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow-strong);
}

footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--gold);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

@media (max-width: 768px) {
  .header-content {
    position: relative;
  }

  .main-nav {
    gap: 15px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(
      135deg,
      var(--primary) 0%,
      var(--primary-dark) 100%
    );
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 0;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    width: 100%;
  }

  .nav-menu a::after {
    display: none;
  }

  .desktop-donate-btn {
    display: none;
  }

  .mobile-donate-btn {
    display: block !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 10px;
    padding-top: 20px;
  }

  .mobile-donate-btn .donate-btn-header {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-overlay {
    display: block;
    pointer-events: none;
  }

  .mobile-menu-overlay.active {
    pointer-events: auto;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 36px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .nav-menu {
    gap: 15px;
  }

  .nav-menu a {
    font-size: 14px;
  }

  .donate-btn-header {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.shimmer {
  background: linear-gradient(
    90deg,
    #FFFFFF 0%,
    #FFF5E1 50%,
    #FFFFFF 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px var(--shadow-strong);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px var(--shadow-strong);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.back-to-top:active {
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

/* QR Code Modal */
.qr-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  -webkit-overflow-scrolling: touch;
}

.qr-modal.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  display: flex !important;
}

.qr-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  pointer-events: auto;
}

.qr-modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  z-index: 10001;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
}

.qr-modal.active .qr-modal-content {
  transform: scale(1) translateY(0);
}

.qr-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10002;
  color: var(--text-dark);
}

.qr-modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.qr-modal-header {
  padding: 30px 30px 20px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.qr-modal-header h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 10px;
}

.qr-modal-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  margin: 0;
}

.qr-modal-body {
  padding: 30px;
}

.qr-code-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, #f0f8ff 0%, #e0f2ff 100%);
  border-radius: 15px;
  border: 2px dashed var(--primary);
}

.qr-code-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 136, 255, 0.2);
}

.qr-modal-info {
  text-align: center;
}

.qr-warning {
  font-size: 16px;
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.qr-disclaimer {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 15px;
  padding: 15px;
  background: #fff8e1;
  border-left: 4px solid #ffb800;
  border-radius: 5px;
}

.qr-suggestion {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  font-style: italic;
}

@media (max-width: 768px) {
  .qr-modal {
    padding: 10px;
    align-items: flex-start;
    padding-top: 20px;
    z-index: 99999 !important;
  }

  .qr-modal.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex !important;
  }

  .qr-modal-content {
    max-width: 95%;
    width: 95%;
    border-radius: 15px;
    margin: auto;
    max-height: calc(100vh - 40px);
    z-index: 100001 !important;
    position: relative !important;
  }

  .qr-modal-header {
    padding: 25px 20px 15px;
  }

  .qr-modal-header h2 {
    font-size: 24px;
  }

  .qr-modal-body {
    padding: 20px;
  }

  .qr-code-container {
    padding: 15px;
  }

  .qr-modal-close {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    z-index: 100003 !important;
    background: rgba(0, 0, 0, 0.1) !important;
  }

  .qr-modal-overlay {
    z-index: 99998 !important;
  }

  .qr-modal-content {
    z-index: 100000 !important;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}
