:root {
  --ngo-purple: #7B2D8B;
  --ngo-purple-light: #9B3DAB;
  --ngo-purple-dark: #5A1F68;
  --ngo-black: #111111;
  --ngo-white: #F8F8F8;
  --ngo-grey: #2A2A2A;
  --ngo-grey-light: #444444;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--ngo-black);
  color: var(--ngo-white);
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
}


.navbar {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--ngo-purple);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-brand img {
  height: 56px;
  width: auto;
  border-radius: 50%;
}

.navbar-toggler {
  border: none;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28123,45,139,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
  text-align: center;
}

.nav-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--ngo-white) !important;
  padding: 8px 18px !important;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--ngo-purple);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-link:hover { color: var(--ngo-purple-light) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--ngo-purple);
  border-radius: 4px;
  color: #fff !important;
  margin-left: 8px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--ngo-purple-light) !important; color: var(--ngo-grey) !important; }
.nav-cta::after { display: none !important; }


.page { display: none; }
.page.active { display: block; }


.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1e 50%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(123,45,139,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 20% 80%, rgba(123,45,139,0.1) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123,45,139,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,45,139,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-logo {
  width: 180px;
  height: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 40px rgba(123,45,139,0.5));
  animation: logoFloat 4s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  color: var(--ngo-white);
  text-shadow: 0 0 80px rgba(123,45,139,0.4);
  margin-bottom: 10px;
}

.hero-title .accent { color: var(--ngo-purple-light); }

.hero-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(248,248,248,0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.hero-badge {
  background: rgba(123,45,139,0.2);
  border: 1px solid rgba(123,45,139,0.5);
  border-radius: 30px;
  padding: 8px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ngo-white);
}

.countdown-wrap {
  background: rgba(123,45,139,0.12);
  border: 1px solid rgba(123,45,139,0.3);
  border-radius: 16px;
  padding: 30px 40px;
  display: inline-flex;
  gap: 30px;
  margin-bottom: 40px;
}

.cd-unit { text-align: center; }
.cd-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--ngo-purple-light);
  line-height: 1;
}
.cd-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(248,248,248,0.5);
}

.btn-hero {
  background: var(--ngo-purple);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  padding: 14px 40px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
  margin: 6px;
}

.btn-hero:hover {
  background: var(--ngo-purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123,45,139,0.4);
  color: #fff;
}

.btn-hero.outline {
  background: transparent;
  border: 2px solid var(--ngo-purple);
  color: var(--ngo-white);
}

.btn-hero.outline:hover {
  background: var(--ngo-purple);
}


section {
  padding: 100px 0;
}

.section-label {
  font-family: 'Barlow', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ngo-purple-light);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  margin-bottom: 24px;
}

.purple-bar {
  width: 60px;
  height: 4px;
  background: var(--ngo-purple);
  margin-bottom: 30px;
}

.section-intro {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(248,248,248,0.75);
  line-height: 1.7;
  max-width: 680px;
}


.services-section {
  background: #0d0d0d;
}

.service-card {
  background: var(--ngo-grey);
  border: 1px solid rgba(123,45,139,0.2);
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ngo-purple), var(--ngo-purple-light));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123,45,139,0.5);
  box-shadow: 0 20px 60px rgba(123,45,139,0.15);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(123,45,139,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--ngo-purple-light);
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.service-card p {
  color: rgba(248,248,248,0.65);
  font-weight: 300;
  line-height: 1.6;
}


.features-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #130a18 50%, #0a0a0a 100%);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
}

.feature-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(123,45,139,0.3);
  line-height: 1;
  min-width: 60px;
}

.feature-text h4 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.feature-text p {
  color: rgba(248,248,248,0.6);
  font-weight: 300;
}


.social-section { background: #0d0d0d; }

.social-card {
  background: var(--ngo-grey);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(123,45,139,0.2);
  transition: transform 0.3s;
  height: 100%;
}

.social-card:hover { transform: translateY(-4px); }

.social-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(123,45,139,0.2);
}

.social-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--ngo-purple);
  object-fit: cover;
}

.social-handle { font-weight: 600; font-size: 0.95rem; }
.social-platform { font-size: 0.8rem; color: rgba(248,248,248,0.5); }

.social-embed {
  width: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

.social-placeholder {
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(248,248,248,0.4);
  font-size: 1rem;
}

.social-placeholder i { font-size: 3rem; }

.social-follow {
  padding: 20px 24px;
  border-top: 1px solid rgba(123,45,139,0.2);
}

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ngo-purple);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.btn-social:hover { background: var(--ngo-purple-light); color: #fff; }


.contact-section { background: var(--ngo-black); }

.contact-form-wrap {
  background: var(--ngo-grey);
  border-radius: 20px;
  padding: 50px 40px;
  border: 1px solid rgba(123,45,139,0.2);
}

.form-label {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248,248,248,0.7);
  margin-bottom: 8px;
}

.form-control, .form-select {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(123,45,139,0.3);
  color: var(--ngo-white);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'Barlow', sans-serif;
}

.form-control:focus, .form-select:focus {
  background: rgba(0,0,0,0.5);
  border-color: var(--ngo-purple);
  box-shadow: 0 0 0 3px rgba(123,45,139,0.2);
  color: var(--ngo-white);
  outline: none;
}

.form-control::placeholder { color: rgba(248,248,248,0.3); }

textarea.form-control { resize: vertical; min-height: 150px; }

.btn-submit {
  background: var(--ngo-purple);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s;
  width: 100%;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(123,45,139,0.3);
  -webkit-appearance: none;
  appearance: none;
}

.btn-submit:hover {
  background: var(--ngo-purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123,45,139,0.4);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  color: rgba(248,248,248,0.75);
}

.contact-info-item i {
  font-size: 1.4rem;
  color: var(--ngo-purple-light);
  width: 30px;
}

.form-success {
  display: none;
  background: rgba(123,45,139,0.15);
  border: 1px solid var(--ngo-purple);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}


footer {
  background: #080808;
  border-top: 1px solid rgba(123,45,139,0.3);
  padding: 60px 0 30px;
}

.footer-logo { height: 70px; margin-bottom: 20px; }

.footer-tagline {
  color: rgba(248,248,248,0.5);
  font-size: 0.9rem;
  font-weight: 300;
}

.footer-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--ngo-purple-light);
  margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(248,248,248,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--ngo-purple-light); }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(123,45,139,0.15);
  border: 1px solid rgba(123,45,139,0.3);
  border-radius: 8px;
  color: var(--ngo-white);
  font-size: 1.2rem;
  margin-right: 10px;
  transition: all 0.2s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--ngo-purple);
  border-color: var(--ngo-purple);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 40px;
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(248,248,248,0.35);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.footer-bottom a {
  color: rgba(248,248,248,0.5);
  text-decoration: none;
  margin-left: 16px;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--ngo-purple-light); }


#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border-top: 2px solid var(--ngo-purple);
  padding: 20px 30px;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.6);
}

#cookie-banner p {
  margin: 0;
  flex: 1 1 300px;
  font-size: 0.88rem;
  color: rgba(248,248,248,0.75);
}

#cookie-banner a { color: var(--ngo-purple-light); }

.btn-cookie {
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cookie.accept {
  background: var(--ngo-purple);
  color: #fff;
}

.btn-cookie.accept:hover { background: var(--ngo-purple-light); }

.btn-cookie.decline {
  background: transparent;
  border: 1px solid rgba(248,248,248,0.2);
  color: rgba(248,248,248,0.6);
}


.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 20px;
}

.legal-wrap h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 0.85rem;
  color: rgba(248,248,248,0.4);
  margin-bottom: 50px;
}

.legal-section { margin-bottom: 48px; }

.legal-section h2 {
  font-size: 1.6rem;
  color: var(--ngo-purple-light);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(123,45,139,0.3);
}

.legal-section p, .legal-section li {
  color: rgba(248,248,248,0.7);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section ul { padding-left: 24px; }


.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 860px;
  margin: 0 auto;
}


html body .sitemap-grid .sitemap-group h2,
html body .sitemap-grid .sitemap-group h3 {
  font-size: 1.3rem;
  color: var(--ngo-purple-light);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(123,45,139,0.3);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
}


@media (max-width: 768px) {
  html body .sitemap-grid .sitemap-group h2,
  html body .sitemap-grid .sitemap-group h3 {
    color: var(--ngo-purple-light);
    font-size: 1.2rem;
  }
}

.sitemap-group a {
  display: block;
  color: rgba(248,248,248,0.65);
  text-decoration: none;
  padding: 6px 0;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.sitemap-group a:hover { color: var(--ngo-purple-light); }


.opening-strip {
  background: linear-gradient(90deg, var(--ngo-purple-dark), var(--ngo-purple), var(--ngo-purple-dark));
  padding: 14px 0;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
}


.alert-success-custom {
  background: rgba(123,45,139,0.15);
  border: 1px solid var(--ngo-purple);
  color: var(--ngo-white);
  border-radius: 10px;
  padding: 16px 20px;
}


.event-card {
  background: var(--ngo-grey);
  border: 1px solid rgba(123,45,139,0.2);
  border-radius: 16px;
  padding: 36px 28px;
  height: 100%;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123,45,139,0.5);
  box-shadow: 0 20px 60px rgba(123,45,139,0.15);
}
.event-card-cta {
  background: linear-gradient(135deg, var(--ngo-purple-dark), var(--ngo-purple));
  border-color: var(--ngo-purple-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.event-card-cta:hover { box-shadow: 0 20px 60px rgba(123,45,139,0.35); }
.event-badge {
  display: inline-block;
  background: rgba(123,45,139,0.5);
  border: 1px solid rgba(123,45,139,0.7);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ngo-white);
  margin-bottom: 20px;
}
.event-icon { font-size: 2rem; color: var(--ngo-purple-light); margin-bottom: 16px; }
.event-date { font-size: 0.8rem; color: rgba(248,248,248,0.45); font-weight: 300; letter-spacing: 0.05em; margin-bottom: 12px; }
.event-title { font-size: 1.5rem; margin-bottom: 12px; color: var(--ngo-white); }
.event-desc { font-size: 0.9rem; color: rgba(248,248,248,0.62); font-weight: 300; line-height: 1.65; margin-bottom: 20px; }
.event-desc_ { font-size: 0.65rem; color: rgba(248,248,248,0.62); font-weight: 300; line-height: 1.65; margin-bottom: 20px; font-style: italic;}
.event-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.etag {
  background: rgba(123,45,139,0.15);
  border: 1px solid rgba(123,45,139,0.3);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(248,248,248,0.7);
}


#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: var(--ngo-purple);
  border: 2px solid var(--ngo-purple-light);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  box-shadow: 0 6px 24px rgba(123,45,139,0.55), 0 0 0 4px rgba(123,45,139,0.15);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  animation: bttPop 0.3s ease;
}
#back-to-top.visible { display: flex; }
@keyframes bttPop {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}
#back-to-top:hover {
  background: var(--ngo-purple-light);
  box-shadow: 0 10px 36px rgba(123,45,139,0.7), 0 0 0 6px rgba(123,45,139,0.2);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .countdown-wrap { gap: 16px; padding: 20px 24px; }
  .cd-val { font-size: 2.5rem; }
  .contact-form-wrap { padding: 30px 20px; }
  .legal-wrap { padding: 50px 16px; }
  #back-to-top { bottom: 90px; right: 20px; }
}
  

.app-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0a1e 50%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,45,139,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.app-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.app-feature-icon {
  width: 42px; height: 42px;
  background: rgba(123,45,139,0.2);
  border: 1px solid rgba(123,45,139,0.4);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--ngo-purple-light);
  flex-shrink: 0;
}
.app-feature-text h5 {
  font-size: 1rem; font-weight: 700;
  margin-bottom: 2px; color: var(--ngo-white);
}
.app-feature-text p {
  font-size: 0.85rem; font-weight: 300;
  color: rgba(248,248,248,0.55); margin: 0;
}
.btn-googleplay {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 12px 24px;
  text-decoration: none;
  transition: all 0.25s;
  color: #fff;
}
.btn-googleplay:hover {
  background: #1a1a1a;
  border-color: var(--ngo-purple);
  box-shadow: 0 8px 30px rgba(123,45,139,0.35);
  transform: translateY(-2px);
  color: #fff;
}
.btn-googleplay .gp-icon { font-size: 2rem; color: #fff; }
.btn-googleplay .gp-text small {
  display: block; font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6); line-height: 1;
}
.btn-googleplay .gp-text strong {
  display: block; font-size: 1.15rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.05em; line-height: 1.2;
}
.app-mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-phone-frame {
  width: 220px;
  background: #1a1a1a;
  border: 2px solid rgba(123,45,139,0.5);
  border-radius: 36px;
  padding: 16px 12px;
  box-shadow:
    0 0 0 6px rgba(123,45,139,0.08),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(123,45,139,0.2);
  position: relative;
}
.app-phone-frame::before {
  content: '';
  display: block;
  width: 60px; height: 6px;
  background: #333;
  border-radius: 3px;
  margin: 0 auto 14px;
}
.app-phone-screen {
  background: linear-gradient(160deg, #1a0a1e, #0d0d0d);
  border-radius: 24px;
  padding: 20px 16px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.phone-logo { width: 70px; height: auto; margin-bottom: 4px; }
.phone-app-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--ngo-white);
}
.phone-btn {
  background: var(--ngo-purple);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  width: 100%;
  margin-top: 6px;
}
.phone-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: rgba(123,45,139,0.1);
  border: 1px solid rgba(123,45,139,0.2);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.75rem;
  color: rgba(248,248,248,0.7);
}
.phone-menu-item i { color: var(--ngo-purple-light); }
.app-store-note {
  font-size: 0.78rem;
  color: rgba(248,248,248,0.35);
  margin-top: 10px;
}



.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.custom-checkbox-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(123,45,139,0.6);
  border-radius: 5px;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 1px;
  color: transparent;
  font-size: 0.95rem;
}

.custom-checkbox:hover .custom-checkbox-box {
  border-color: var(--ngo-purple-light);
  background: rgba(123,45,139,0.1);
}

.custom-checkbox input[type="checkbox"]:checked ~ .custom-checkbox-box {
  background: var(--ngo-purple);
  border-color: var(--ngo-purple-light);
  color: #fff;
}

.custom-checkbox input[type="checkbox"]:focus ~ .custom-checkbox-box {
  box-shadow: 0 0 0 3px rgba(123,45,139,0.3);
}

.custom-checkbox-label {
  font-size: 0.82rem;
  color: rgba(248,248,248,0.65);
  line-height: 1.5;
}

.custom-checkbox-label a {
  color: var(--ngo-purple-light);
  text-decoration: underline;
}

.custom-checkbox-label a:hover {
  color: #fff;
}
