/* ============================================================
   ATG: Kish Simulator  -  Home Page Design System
   Target: ATG-Kish.Netlify.app
   Palette: #f80040 | #00c3c9 | #000 | #2f2f2f | #161922 | #202020
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --red: #f80040;
  --cyan: #00c3c9;
  --black: #000000;
  --dark: #2f2f2f;
  --heading: #161922;
  --body-text: #202020;
  --white: #ffffff;
  --panel: #a2cdd0;
  --bg: #0d0f14;
  --bg2: #14171f;
  --bg3: #1a1d26;
  --border: rgba(248, 0, 64, 0.18);
  --glow-red: 0 0 24px rgba(248, 0, 64, 0.45);
  --glow-cyan: 0 0 24px rgba(0, 195, 201, 0.35);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  --max-w: 1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  color: var(--body-text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--red);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--cyan);
}
ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}
h4 {
  font-size: 1.25rem;
}
p {
  color: #aab0bf;
  line-height: 1.75;
}

.accent {
  color: var(--red);
}
.accent-cyan {
  color: var(--cyan);
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.85em;
  letter-spacing: 0.02em;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header p {
  max-width: 600px;
  margin: 1rem auto 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  section {
    padding: 3rem 0;
  }
}
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Navigation ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(248, 0, 64, 0.12);
  display: flex;
  align-items: center;
  transition: background var(--transition);
}

#navbar.scrolled {
  background: rgba(0, 0, 0, 0.97);
  border-bottom-color: var(--border);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
}
.nav-logo:hover {
  color: var(--white);
}
.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--red);
}
.nav-logo span {
  background: linear-gradient(135deg, var(--red), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: #aab0bf;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--red);
}

.nav-blog-btn {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: var(--radius) !important;
  border-bottom: none !important;
  font-weight: 600 !important;
  transition:
    background var(--transition),
    box-shadow var(--transition) !important;
}
.nav-blog-btn:hover {
  background: #d4003a !important;
  box-shadow: var(--glow-red) !important;
  color: var(--white) !important;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-mobile a:hover {
  color: var(--red);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(248, 0, 64, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(0, 195, 201, 0.06) 0%,
      transparent 60%
    ),
    var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../wp-content/uploads/2019/01/ATG-Around-The-Ground-Kish-Island-Wallpaper-2018-beta-made-with-unity-indie-game-dev-project-edited.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(248, 0, 64, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 0, 64, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(248, 0, 64, 0.12);
  border: 1px solid rgba(248, 0, 64, 0.3);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white) 0%, #aab0bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--red), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p.tagline {
  font-size: 1.15rem;
  color: #7a8494;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: #d4003a;
  box-shadow: var(--glow-red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 195, 201, 0.4);
  color: var(--cyan);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid rgba(248, 0, 64, 0.1);
  border-bottom: 1px solid rgba(248, 0, 64, 0.1);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item .number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-item .label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a8494;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Featured Video ---------- */
.video-section {
  background: var(--bg2);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(248, 0, 64, 0.15);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  max-width: 900px;
  margin: 0 auto;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(248, 0, 64, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--bg3);
}

.card-body {
  padding: 1.5rem;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: #7a8494;
  margin-bottom: 0.75rem;
}
.card-meta .tag {
  background: rgba(248, 0, 64, 0.12);
  color: var(--red);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.card-body h3 a {
  color: var(--white);
}
.card-body h3 a:hover {
  color: var(--cyan);
}
.card-body p {
  font-size: 0.88rem;
  color: #7a8494;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
}
.card-link:hover {
  color: var(--cyan);
  gap: 0.7rem;
}
.card-link::after {
  content: "→";
}

/* ---------- Feature List ---------- */
.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}
.feature-item:hover {
  border-color: rgba(0, 195, 201, 0.2);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(248, 0, 64, 0.1);
  border: 1px solid rgba(248, 0, 64, 0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.feature-item h4 {
  color: var(--white);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.feature-item p {
  font-size: 0.88rem;
  color: #7a8494;
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 16/9;
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition);
}
.gallery-item:hover img {
  opacity: 0.85;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-overlay {
  background: rgba(248, 0, 64, 0.15);
}
.gallery-overlay span {
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay span {
  opacity: 1;
}

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(8px);
}
.lightbox.open {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8);
}
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover {
  background: var(--red);
}
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-nav:hover {
  background: rgba(248, 0, 64, 0.5);
}
.lightbox-prev {
  left: 1rem;
}
.lightbox-next {
  right: 1rem;
}
.lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* ---------- About Q&A ---------- */
.qa-item {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.qa-question {
  background: var(--bg2);
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
  transition: background var(--transition);
}
.qa-question:hover {
  background: var(--bg3);
}
.qa-question.active {
  background: rgba(248, 0, 64, 0.08);
  border-bottom: 1px solid rgba(248, 0, 64, 0.15);
}
.qa-question .q-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(248, 0, 64, 0.15);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform var(--transition);
}
.qa-question.active .q-icon {
  transform: rotate(45deg);
  background: var(--red);
  color: var(--white);
}
.qa-answer {
  display: none;
  padding: 1.25rem 1.5rem;
  background: var(--bg3);
  color: #aab0bf;
  line-height: 1.75;
  font-size: 0.92rem;
}
.qa-answer.open {
  display: block;
}

/* ---------- Social Links ---------- */
.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #aab0bf;
  background: rgba(255, 255, 255, 0.04);
  transition: all var(--transition);
}
.social-btn:hover {
  color: var(--white);
  border-color: var(--red);
  background: rgba(248, 0, 64, 0.08);
  transform: translateY(-2px);
}
.social-btn svg {
  width: 16px;
  height: 16px;
}

/* ---------- Footer ---------- */
#footer {
  background: #000;
  border-top: 1px solid rgba(248, 0, 64, 0.12);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: #7a8494;
  max-width: 320px;
  line-height: 1.7;
}

.footer-col h5 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  color: #7a8494;
  font-size: 0.88rem;
}
.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: #7a8494;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  color: #7a8494;
  font-size: 0.9rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover {
  color: var(--white);
  border-color: var(--red);
  background: rgba(248, 0, 64, 0.1);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Page Header ---------- */
.page-header {
  padding: 9rem 0 4rem;
  text-align: center;
  background:
    radial-gradient(
      ellipse at center,
      rgba(248, 0, 64, 0.06) 0%,
      transparent 70%
    ),
    var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(248, 0, 64, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 0, 64, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-header .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #7a8494;
  margin-bottom: 1rem;
}
.page-header .breadcrumb a {
  color: var(--red);
}
.page-header .breadcrumb span {
  color: #3a4050;
}
.page-header p {
  color: #7a8494;
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* ---------- Donation Failed ---------- */
.donation-failed {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem;
}
.donation-failed-card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--bg2);
  border: 1px solid rgba(248, 0, 64, 0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
}
.donation-failed-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}
.donation-failed h1 {
  color: var(--red);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.donation-failed p {
  color: #aab0bf;
  margin-bottom: 1.5rem;
}

/* ---------- Utility ---------- */
.text-center {
  text-align: center;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}
.mb-4 {
  margin-bottom: 2rem;
}
.divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 1rem auto;
  border-radius: 2px;
}
.divider-left {
  margin-left: 0;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(248, 0, 64, 0.35);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(248, 0, 64, 0.25);
  color: var(--white);
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tab Switcher (Gallery) */
.tabs-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 0;
}
.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  color: #7a8494;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition);
  margin-bottom: -1px;
}
.tab-btn:hover {
  color: var(--white);
}
.tab-btn.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

/* Note Box */
.note-box {
  background: rgba(0, 195, 201, 0.06);
  border: 1px solid rgba(0, 195, 201, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: var(--cyan);
  font-size: 0.9rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.note-box::before {
  content: "ℹ";
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: 0.05rem;
}

.warning-box {
  background: rgba(248, 0, 64, 0.06);
  border: 1px solid rgba(248, 0, 64, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: var(--red);
  font-size: 0.9rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.warning-box::before {
  content: "⚠";
  flex-shrink: 0;
  font-size: 1.1rem;
}
