/* =====================================================
   LOBBYOOR — Main Stylesheet
   Color Palette: Deep Gold / Black / Dark Amber
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
  --gold: #F5A800;
  --gold-light: #FFD04D;
  --gold-dark: #C78400;
  --gold-deep: #A86200;
  --black: #0A0A0A;
  --black-card: #111111;
  --black-border: #1E1E1E;
  --black-mid: #161616;
  --white: #FFFFFF;
  --grey: #888888;
  --grey-light: #CCCCCC;
  --orange-accent: #FF6B00;
  --glow: rgba(245, 168, 0, 0.35);
  --font-display: 'Bebas Neue', sans-serif;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: default;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- NOISE TEXTURE OVERLAY ---- */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.4;
}

/* ====================== NAVBAR ====================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 72px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(245,168,0,0.2);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nav-logo img {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--gold); object-fit: cover;
}
.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.6rem; letter-spacing: 3px; color: var(--gold);
}

.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  color: var(--grey-light); text-decoration: none;
  font-family: var(--font-head); font-size: 0.85rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: color 0.2s; font-weight: 500;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold); color: var(--black) !important;
  padding: 8px 20px; border-radius: 3px; font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.nav-mobile-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }

/* ====================== HERO ====================== */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 100px 40px 60px;
  text-align: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(245,168,0,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 70%, rgba(255,107,0,0.05) 0%, transparent 60%),
              var(--black);
}

.hero-scene-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.07; filter: grayscale(100%);
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,168,0,0.12); border: 1px solid rgba(245,168,0,0.35);
  padding: 7px 18px; border-radius: 2px; margin-bottom: 28px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase; animation: fadeDown 0.8s ease both;
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse-dot 1.5s infinite; }

.hero-logo-img {
  width: 120px; height: 120px; border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px var(--glow), 0 0 80px rgba(245,168,0,0.15);
  object-fit: cover; margin-bottom: 28px;
  animation: fadeUp 0.9s ease 0.1s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: 6px; line-height: 0.95;
  color: var(--white);
  animation: fadeUp 0.9s ease 0.2s both;
}
.hero-title .accent { color: var(--gold); }

.hero-subtitle {
  font-family: var(--font-head); font-size: 1.1rem;
  color: var(--grey-light); letter-spacing: 2px; text-transform: uppercase;
  margin: 18px 0 32px; animation: fadeUp 0.9s ease 0.35s both; font-weight: 300;
}

.hero-tagline {
  font-size: 1.2rem; color: var(--grey-light);
  max-width: 680px; margin: 0 auto 40px; line-height: 1.7;
  animation: fadeUp 0.9s ease 0.45s both;
}
.hero-tagline strong { color: var(--gold); }

.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.55s both;
}

.btn-primary {
  background: var(--gold); color: var(--black); padding: 14px 36px;
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer; border-radius: 3px;
  transition: all 0.25s; display: inline-block;
  box-shadow: 0 4px 24px rgba(245,168,0,0.4);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,168,0,0.5); }

.btn-secondary {
  background: transparent; color: var(--gold);
  padding: 13px 36px; border: 1.5px solid var(--gold);
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  border-radius: 3px; transition: all 0.25s; display: inline-block;
}
.btn-secondary:hover { background: rgba(245,168,0,0.1); transform: translateY(-2px); }

.hero-ca {
  margin-top: 32px; animation: fadeUp 0.9s ease 0.65s both;
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--grey);
  display: flex; align-items: center; gap: 10px; justify-content: center;
}
.hero-ca .ca-label { color: var(--gold); font-weight: 700; }
.hero-ca .ca-addr {
  background: var(--black-card); border: 1px solid var(--black-border);
  padding: 6px 14px; border-radius: 2px; cursor: pointer;
  transition: border-color 0.2s; word-break: break-all; text-align: center;
}
.hero-ca .ca-addr:hover { border-color: var(--gold); }

.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--grey); font-size: 0.7rem; letter-spacing: 2px;
  font-family: var(--font-mono); animation: fadeIn 1.5s ease 1s both;
}
.scroll-arrow { width: 20px; height: 20px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); animation: scrollBounce 1.5s infinite; }

/* ====================== SECTIONS SHARED ====================== */
section { padding: 90px 40px; }
.section-inner { max-width: 1160px; margin: 0 auto; }

.section-label {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: rgba(245,168,0,0.25); }

.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 3px; line-height: 1.05; margin-bottom: 20px;
}
.section-title .accent { color: var(--gold); }

.section-desc {
  font-size: 1.1rem; color: var(--grey-light); max-width: 700px;
  line-height: 1.75; margin-bottom: 50px;
}

/* ====================== TICKER ====================== */
#ticker {
  background: var(--gold); padding: 10px 0; overflow: hidden;
  border-top: 2px solid var(--gold-dark); border-bottom: 2px solid var(--gold-dark);
}
.ticker-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}
.ticker-item {
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--black);
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.ticker-item::before { content: '₿'; font-size: 0.9rem; }

/* ====================== ABOUT ====================== */
#about { background: var(--black-mid); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; border-radius: 4px;
  border: 1px solid rgba(245,168,0,0.2);
  filter: grayscale(20%);
  box-shadow: 0 0 60px rgba(0,0,0,0.8), 0 0 30px rgba(245,168,0,0.06);
}
.about-img-tag {
  position: absolute; bottom: -16px; left: 20px;
  background: var(--gold); color: var(--black);
  padding: 8px 20px; font-family: var(--font-head);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
}
.about-text p { font-size: 1.05rem; color: var(--grey-light); line-height: 1.8; margin-bottom: 18px; }
.about-text p strong { color: var(--gold); }

.stats-row {
  display: flex; gap: 30px; margin-top: 36px; flex-wrap: wrap;
}
.stat-box {
  flex: 1; min-width: 120px;
  border-top: 2px solid var(--gold); padding-top: 16px;
}
.stat-box .num {
  font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); line-height: 1;
}
.stat-box .lbl { font-size: 0.8rem; color: var(--grey); letter-spacing: 1px; margin-top: 4px; }

/* ====================== MISSION ====================== */
#mission { background: var(--black); }

.mission-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
}
.mission-card {
  background: var(--black-card); border: 1px solid var(--black-border);
  padding: 32px 28px; border-radius: 4px; position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.mission-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.mission-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.mission-card:hover::before { opacity: 1; }
.mission-icon { font-size: 2rem; margin-bottom: 18px; }
.mission-card h3 {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.mission-card p { font-size: 0.95rem; color: var(--grey-light); line-height: 1.7; }

/* ====================== HOW IT WORKS ====================== */
#how { background: var(--black-mid); }

.how-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0;
  position: relative;
}
.how-steps::before {
  content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  z-index: 0;
}
.how-step {
  text-align: center; padding: 30px 20px; position: relative; z-index: 1;
}
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--black); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; color: var(--gold);
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(245,168,0,0.3);
}
.how-step h4 {
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--white);
  margin-bottom: 10px;
}
.how-step p { font-size: 0.9rem; color: var(--grey); line-height: 1.65; }

/* ====================== BPI SECTION ====================== */
#bpi {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}

.bpi-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.bpi-text p { font-size: 1.05rem; color: var(--grey-light); line-height: 1.8; margin-bottom: 18px; }
.bpi-text p strong { color: var(--gold); }
.bpi-text a { color: var(--gold); text-decoration: none; }
.bpi-text a:hover { text-decoration: underline; }

.bpi-principles {
  display: flex; flex-direction: column; gap: 16px; margin-top: 24px;
}
.bpi-principle {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--black-card); border: 1px solid var(--black-border);
  padding: 16px 20px; border-radius: 3px;
  transition: border-color 0.3s;
}
.bpi-principle:hover { border-color: rgba(245,168,0,0.4); }
.bpi-principle-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.bpi-principle-text h4 {
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 5px;
}
.bpi-principle-text p { font-size: 0.9rem; color: var(--grey-light); line-height: 1.6; }

/* ====================== TWEET EMBED ====================== */
#tweet {
  background: var(--black-mid);
}
.tweet-container {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.tweet-wrapper {
  width: 100%; max-width: 560px;
  background: var(--black-card); border: 1px solid rgba(245,168,0,0.2);
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 0 40px rgba(0,0,0,0.6), 0 0 20px rgba(245,168,0,0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.tweet-wrapper:hover { border-color: rgba(245,168,0,0.5); box-shadow: 0 0 50px rgba(0,0,0,0.8), 0 0 30px rgba(245,168,0,0.1); }
.tweet-header { padding: 18px 20px 0; display: flex; align-items: center; gap: 12px; }
.tweet-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; color: var(--black); flex-shrink: 0;
}
.tweet-user { line-height: 1.3; }
.tweet-user strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.tweet-user span { font-size: 0.8rem; color: var(--grey); }
.tweet-bird {
  margin-left: auto; color: #1DA1F2; font-size: 1.2rem;
}
.tweet-body { padding: 14px 20px; font-size: 0.95rem; color: var(--grey-light); line-height: 1.65; }
.tweet-body a { color: var(--gold); text-decoration: none; }
.tweet-img { width: 100%; max-height: 300px; object-fit: cover; display: block; opacity: 0.85; }
.tweet-meta {
  padding: 12px 20px 16px; display: flex; gap: 20px; border-top: 1px solid var(--black-border);
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--grey);
}
.tweet-meta span { display: flex; align-items: center; gap: 5px; }
.tweet-meta a {
  display: block; margin-left: auto; background: var(--gold); color: var(--black);
  padding: 7px 16px; border-radius: 2px; font-family: var(--font-head);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 1px; text-decoration: none;
  transition: background 0.2s;
}
.tweet-meta a:hover { background: var(--gold-light); }

/* ====================== DONATION TRACKER ====================== */
#donate {
  background: linear-gradient(180deg, var(--black-mid) 0%, var(--black) 100%);
}
.donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.donate-box {
  background: var(--black-card); border: 1px solid rgba(245,168,0,0.25);
  border-radius: 6px; padding: 36px; position: relative; overflow: hidden;
}
.donate-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange-accent));
}
.donate-box h3 {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--gold);
  margin-bottom: 6px;
}
.donate-box .sub { font-size: 0.85rem; color: var(--grey); margin-bottom: 28px; }

.donation-amount {
  font-family: var(--font-display); font-size: 3.2rem; color: var(--gold);
  letter-spacing: 2px; line-height: 1; margin-bottom: 6px;
}
.donation-unit { font-size: 0.85rem; color: var(--grey); margin-bottom: 24px; font-family: var(--font-mono); }

.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 0.68rem; color: #00CC66;
  letter-spacing: 1px; text-transform: uppercase;
}
.live-dot { width: 6px; height: 6px; background: #00CC66; border-radius: 50%; animation: pulse-dot 1.2s infinite; }

.donate-info p { font-size: 1rem; color: var(--grey-light); line-height: 1.8; margin-bottom: 16px; }
.donate-info p strong { color: var(--gold); }
.donate-info a { color: var(--gold); text-decoration: none; }
.donate-info a:hover { text-decoration: underline; }

.donate-links { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.donate-link-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--black-card); border: 1px solid var(--black-border);
  padding: 14px 20px; border-radius: 3px; text-decoration: none;
  transition: border-color 0.25s, transform 0.2s;
}
.donate-link-btn:hover { border-color: var(--gold); transform: translateX(4px); }
.donate-link-btn img { width: 28px; height: 28px; object-fit: contain; border-radius: 4px; }
.donate-link-btn span { font-family: var(--font-head); font-size: 0.9rem; font-weight: 600; color: var(--white); letter-spacing: 1px; }
.donate-link-btn .arrow { margin-left: auto; color: var(--gold); font-size: 1rem; }

/* ====================== SOCIALS ====================== */
#socials { background: var(--black); }

.socials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px;
}
.social-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; background: var(--black-card); border: 1px solid var(--black-border);
  padding: 28px 20px; border-radius: 4px; text-decoration: none;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.social-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,168,0,0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.3s;
}
.social-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(245,168,0,0.12); }
.social-card:hover::after { opacity: 1; }
.social-card img { width: 40px; height: 40px; object-fit: contain; }
.social-card svg { width: 40px; height: 40px; }
.social-card span {
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey-light);
}
.social-card:hover span { color: var(--gold); }

/* X / Twitter SVG */
.x-icon { fill: var(--white); transition: fill 0.3s; }
.social-card:hover .x-icon { fill: var(--gold); }

/* Telegram icon */
.tg-icon { fill: #29A8E0; }

/* ====================== GALLERY ====================== */
#gallery { background: var(--black-mid); }
.gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.gallery-img {
  width: 100%; border-radius: 4px; border: 1px solid rgba(245,168,0,0.15);
  object-fit: cover; display: block;
  transition: filter 0.3s, border-color 0.3s, transform 0.3s;
  filter: brightness(0.85) saturate(0.8);
}
.gallery-img:hover { filter: brightness(1) saturate(1); border-color: rgba(245,168,0,0.5); transform: scale(1.01); }

/* ====================== FOOTER ====================== */
footer {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: 50px 40px 30px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
}
.footer-logo img { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--gold); object-fit: cover; }
.footer-logo span { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 3px; color: var(--gold); }
.footer-brand p { font-size: 0.9rem; color: var(--grey); line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: var(--grey); text-decoration: none; font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--black-border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--grey); font-family: var(--font-mono); }
.footer-bottom a { color: var(--gold); text-decoration: none; }
.footer-disclaimer {
  font-size: 0.75rem; color: var(--grey); font-family: var(--font-mono);
  max-width: 1160px; margin: 20px auto 0;
  padding: 16px; background: var(--black-card); border-radius: 3px;
  border: 1px solid var(--black-border); line-height: 1.6;
}

/* ====================== KEYFRAMES ====================== */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
@keyframes scrollBounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(5px); } }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes progressPulse { from { box-shadow: 0 0 12px rgba(245,168,0,0.4); } to { box-shadow: 0 0 24px rgba(245,168,0,0.7); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  section { padding: 60px 20px; }
  .about-grid, .bpi-grid, .donate-grid, .footer-top { grid-template-columns: 1fr; }
  .footer-top { gap: 30px; }
  .how-steps::before { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  #hero { padding: 100px 20px 60px; }
}

@media (max-width: 600px) {
  .socials-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-row { gap: 20px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
