*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --purple: #5B2C8A; --purple-dark: #3D1B5E; --purple-deeper: #2A1241;
  --purple-light: #7B4BAA; --purple-pale: #F3EDF9;
  --gold: #C8A951; --gold-light: #E8D48A; --gold-dark: #A68A3A;
  --dark: #1A1028; --text: #2D2440; --text-light: #6B5F7B;
  --bg: #FAFAFA; --white: #FFFFFF;
  --radius: 16px; --shadow: 0 4px 24px rgba(91,44,138,0.08);
  --shadow-lg: 0 12px 48px rgba(91,44,138,0.12);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter','Noto Sans SC',-apple-system,sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; } img { max-width: 100%; display: block; } ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Announcement */
.announcement { background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark)); color: var(--purple-deeper); text-align: center; padding: 10px 24px; font-size: 0.85rem; font-weight: 600; display: none; position: relative; z-index: 1001; }
.announcement.show { display: block; }

/* Nav */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 12px 0; transition: var(--transition); background: rgba(26,16,40,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; color: var(--white); letter-spacing: -0.02em; }
.nav-logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; font-weight: 900; color: var(--purple-dark); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 0.8rem; font-weight: 500; padding: 7px 10px; border-radius: 7px; transition: var(--transition); white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important; color: var(--purple-deeper) !important; font-weight: 600 !important; }
.nav-cta:hover { opacity: 0.9; }
.nav-right { display: flex; align-items: center; gap: 8px; }
.lang-select { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: var(--white); font-size: 0.75rem; padding: 5px 8px; border-radius: 6px; cursor: pointer; font-family: inherit; outline: none; }
.lang-select option { background: var(--purple-deeper); color: var(--white); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* Page Header */
.page-header { padding: 140px 0 60px; background: linear-gradient(150deg, var(--purple-deeper) 0%, var(--purple-dark) 40%, var(--purple) 70%, var(--purple-light) 100%); position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(200,169,81,0.12) 0%, transparent 70%); border-radius: 50%; }
.page-header .section-label { color: var(--gold-light); } .page-header .section-label::before { background: var(--gold); }
.page-header .section-title { color: var(--white); }
.page-header .section-desc { color: rgba(255,255,255,0.6); }

/* Hero (home only) */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; background: linear-gradient(150deg, var(--purple-deeper) 0%, var(--purple-dark) 40%, var(--purple) 70%, var(--purple-light) 100%); overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(200,169,81,0.15) 0%, transparent 70%); border-radius: 50%; animation: float 20s ease-in-out infinite; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(200,169,81,0.1) 0%, transparent 70%); border-radius: 50%; animation: float 15s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-30px) scale(1.05); } 66% { transform: translate(-20px,20px) scale(0.95); } }
.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,169,81,0.15); border: 1px solid rgba(200,169,81,0.3); color: var(--gold-light); padding: 8px 20px; border-radius: 100px; font-size: 0.85rem; font-weight: 500; margin-bottom: 32px; }
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: clamp(2.8rem,6vw,4.5rem); font-weight: 900; color: var(--white); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 24px; max-width: 800px; }
.hero h1 span { background: linear-gradient(135deg, var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: clamp(1rem,2vw,1.25rem); color: rgba(255,255,255,0.7); max-width: 560px; line-height: 1.7; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 72px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat h3 { font-size: 2.5rem; font-weight: 800; color: var(--gold-light); letter-spacing: -0.03em; line-height: 1; }
.hero-stat p { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 500; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: 12px; font-size: 0.95rem; font-weight: 600; border: none; cursor: pointer; transition: var(--transition); }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--purple-deeper); box-shadow: 0 4px 20px rgba(200,169,81,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,169,81,0.4); }
.btn-outline { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-purple { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: var(--white); }
.btn-purple:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(91,44,138,0.3); }

/* Sections */
section { padding: 80px 0; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--purple); margin-bottom: 16px; }
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-title { font-size: clamp(2rem,4vw,3rem); font-weight: 800; color: var(--dark); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; color: var(--text-light); max-width: 600px; line-height: 1.7; }

/* Cards */
.card-grid { display: grid; gap: 24px; margin-top: 48px; }
.card-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4,1fr); }
.card { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid rgba(91,44,138,0.06); transition: var(--transition); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon { width: 52px; height: 52px; background: var(--purple-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; }
.card-icon.purple { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); }
.card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.card > p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.card-link { font-size: 0.85rem; font-weight: 600; color: var(--purple); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.card-link:hover { gap: 10px; }
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 8px; font-size: 0.75rem; font-weight: 600; background: var(--purple-pale); color: var(--purple); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* Goals */
.goal-card { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border-radius: var(--radius); padding: 24px; border: 1px solid rgba(91,44,138,0.06); }
.goal-num { width: 36px; height: 36px; min-width: 36px; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 800; color: var(--gold-light); }

/* Purple section */
.section-purple { background: linear-gradient(150deg, var(--purple-deeper) 0%, var(--purple-dark) 50%, var(--purple) 100%); position: relative; overflow: hidden; }
.section-purple::before { content: ''; position: absolute; top: -40%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(200,169,81,0.1) 0%, transparent 70%); border-radius: 50%; }
.section-purple .section-label { color: var(--gold-light); } .section-purple .section-label::before { background: var(--gold); }
.section-purple .section-title { color: var(--white); } .section-purple .section-desc { color: rgba(255,255,255,0.6); }
.section-purple .card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
.section-purple .card h3 { color: var(--white); }
.section-purple .card p { color: rgba(255,255,255,0.6); }

/* Award tiers */
.award-tier { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 24px; display: flex; align-items: center; gap: 20px; }
.award-badge { width: 52px; height: 52px; min-width: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.award-gold .award-badge { background: linear-gradient(135deg, #FFD700, #B8860B); }
.award-silver .award-badge { background: linear-gradient(135deg, #E0E0E0, #A0A0A0); }
.award-bronze .award-badge { background: linear-gradient(135deg, #CD7F32, #8B4513); }
.award-tier h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.award-tier p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* Events */
.event-card { display: flex; gap: 24px; background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid rgba(91,44,138,0.06); transition: var(--transition); }
.event-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.event-date { min-width: 64px; text-align: center; padding: 12px 8px; background: linear-gradient(150deg, var(--purple), var(--purple-dark)); border-radius: 12px; color: var(--white); align-self: flex-start; }
.event-date .month { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }
.event-date .day { font-size: 1.8rem; font-weight: 800; line-height: 1.1; }
.event-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.event-info p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.event-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.event-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-light); font-weight: 500; }
.event-featured { grid-column: span 2; background: linear-gradient(150deg, var(--purple-deeper), var(--purple)); color: var(--white); position: relative; overflow: hidden; }
.event-featured::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(200,169,81,0.12) 0%, transparent 70%); border-radius: 50%; }
.event-featured .event-date { background: rgba(200,169,81,0.2); border: 1px solid rgba(200,169,81,0.3); }
.event-featured .event-info h3 { color: var(--white); }
.event-featured .event-info p { color: rgba(255,255,255,0.7); }
.event-featured .event-meta span { color: rgba(255,255,255,0.6); }
.event-tag { display: inline-flex; padding: 4px 12px; border-radius: 6px; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; background: rgba(200,169,81,0.15); color: var(--gold); margin-bottom: 8px; }

/* Gallery */
.gallery-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.gallery-tab { padding: 8px 20px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; border: 1px solid rgba(91,44,138,0.15); background: var(--white); color: var(--text); cursor: pointer; transition: var(--transition); }
.gallery-tab.active { background: var(--purple); color: var(--white); border-color: var(--purple); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; transition: var(--transition); background: var(--purple-pale); position: relative; }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-loading { text-align: center; padding: 60px 0; color: var(--text-light); }
.gallery-lightbox { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.9); z-index: 9999; display: none; align-items: center; justify-content: center; cursor: pointer; }
.gallery-lightbox.show { display: flex; }
.gallery-lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; }

/* Membership / Join */
.membership-price { font-size: 3.5rem; font-weight: 900; color: var(--gold-light); letter-spacing: -0.04em; line-height: 1; }
.checklist li { font-size: 0.88rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; padding: 4px 0; }
.checklist li::before { content: '\2713'; color: var(--gold); font-weight: 700; }

/* QR Code */
.qr-code { max-width: 220px; border-radius: 16px; border: 2px solid rgba(91,44,138,0.1); box-shadow: var(--shadow); }

/* Policy */
.policy-list { display: grid; gap: 10px; margin-bottom: 24px; }
.policy-list li { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; padding-left: 20px; position: relative; }
.policy-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--purple); border-radius: 50%; }
.policy-list.red li::before { background: #DC2626; }

/* Contact Form */
.contact-form { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1px solid rgba(91,44,138,0.12); border-radius: 10px; font-size: 0.9rem; font-family: inherit; color: var(--text); background: var(--bg); transition: var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(91,44,138,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* FAQ */
.faq-item { background: var(--white); border-radius: 12px; border: 1px solid rgba(91,44,138,0.06); overflow: hidden; margin-bottom: 12px; }
.faq-question { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-size: 0.95rem; font-weight: 600; color: var(--dark); transition: var(--transition); user-select: none; }
.faq-question:hover { color: var(--purple); }
.faq-icon { width: 24px; height: 24px; min-width: 24px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--purple); transition: var(--transition); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 500px; }

/* Video embed */
.video-embed { border-radius: var(--radius); overflow: hidden; max-width: 400px; }
.video-embed iframe { width: 100%; aspect-ratio: 9/16; border: none; border-radius: var(--radius); }

/* Two-col layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.three-col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start; }

/* Stat box */
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 48px; }
.stat-box { background: var(--white); border-radius: var(--radius); padding: 28px; text-align: center; border: 1px solid rgba(91,44,138,0.06); }
.stat-box h3 { font-size: 2rem; font-weight: 800; color: var(--purple); margin-bottom: 4px; }
.stat-box p { font-size: 0.82rem; color: var(--text-light); }

/* Sponsor CTA */
.cta-card { background: linear-gradient(150deg, var(--purple-deeper), var(--purple)); border-radius: 20px; padding: 40px; color: var(--white); position: relative; overflow: hidden; }
.cta-card::before { content: ''; position: absolute; top: -40%; right: -20%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(200,169,81,0.15) 0%, transparent 70%); border-radius: 50%; }
.cta-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; position: relative; z-index: 2; }
.cta-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 2; }
.cta-card .btn { position: relative; z-index: 2; }

/* Minigrant list */
.check-list li { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; padding-left: 22px; position: relative; margin-bottom: 6px; }
.check-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--gold-dark); font-weight: 700; }

/* Footer */
.footer { background: var(--dark); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.85rem; line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .card-grid.cols-3 { grid-template-columns: repeat(2,1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(2,1fr); }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26,16,40,0.98); backdrop-filter: blur(20px); justify-content: center; align-items: center; gap: 6px; z-index: 999; padding: 20px; overflow-y: auto; }
  .nav-links.open a { font-size: 1.1rem; padding: 12px 32px; }
  .nav-toggle { display: flex; z-index: 1001; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .card-grid.cols-2 { grid-template-columns: 1fr; }
  .card-grid.cols-3 { grid-template-columns: 1fr; }
  .event-featured { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .page-header { padding: 110px 0 40px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat { display: flex; align-items: center; gap: 12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
}
