/* ============================================================
   NeonRaid.pro — Main Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --neon-cyan: #00e5ff;
  --neon-purple: #b400ff;
  --neon-pink: #ff0080;
  --bg-dark: #0a0a0f;
  --bg-card: #12121a;
  --bg-nav: rgba(10, 10, 15, 0.95);
  --text-primary: #f0f0f8;
  --text-muted: #8888aa;
  --border-glow: rgba(0, 229, 255, 0.25);
  --font-main: 'Segoe UI', 'Arial', sans-serif;
  --transition: 0.3s ease;
  --radius: 8px;
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.7;
  min-height: 100vh;
}

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

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--neon-purple); border-radius: 3px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ---------- Layout Helpers ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--bg-card); }

/* ---------- Neon Glow Utilities ---------- */
.neon-text-cyan {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan), 0 0 30px rgba(0,229,255,0.4);
}
.neon-text-purple {
  color: var(--neon-purple);
  text-shadow: 0 0 10px var(--neon-purple), 0 0 30px rgba(180,0,255,0.4);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 0.03em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: #fff;
  box-shadow: 0 0 20px rgba(0,229,255,0.3);
}
.btn-primary:hover {
  box-shadow: 0 0 35px rgba(0,229,255,0.6);
  transform: translateY(-2px);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
}
.btn-outline:hover {
  background: var(--neon-cyan);
  color: var(--bg-dark);
  box-shadow: 0 0 20px rgba(0,229,255,0.5);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border-glow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
}
.navbar__logo img { width: 36px; height: 36px; object-fit: contain; }
.navbar__logo span { background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar__menu a {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.navbar__menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--neon-cyan);
  transition: width var(--transition);
}
.navbar__menu a:hover::after,
.navbar__menu a.active::after { width: 100%; }
.navbar__menu a:hover { color: var(--neon-cyan); }
.navbar__menu a.active { color: var(--neon-cyan); }

.navbar__cta { margin-left: 1rem; }

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.navbar__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,229,255,0.08) 0%, rgba(180,0,255,0.08) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero__badge {
  display: inline-block;
  background: rgba(0,229,255,0.15);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero__title { margin-bottom: 1.2rem; }
.hero__desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 560px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.hero__stat-num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,229,255,0.15);
  border-color: rgba(0,229,255,0.5);
}
.card__img { width: 100%; height: 200px; object-fit: cover; }
.card__body { padding: 1.4rem; }
.card__meta { display: flex; gap: 0.8rem; align-items: center; margin-bottom: 0.6rem; flex-wrap: wrap; }
.card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  background: rgba(0,229,255,0.12);
  color: var(--neon-cyan);
  border: 1px solid rgba(0,229,255,0.3);
}
.card__tag--purple {
  background: rgba(180,0,255,0.12);
  color: var(--neon-purple);
  border-color: rgba(180,0,255,0.3);
}
.card__tag--pink {
  background: rgba(255,0,128,0.12);
  color: var(--neon-pink);
  border-color: rgba(255,0,128,0.3);
}
.card__date { font-size: 0.78rem; color: var(--text-muted); }
.card__title { margin-bottom: 0.6rem; font-size: 1.1rem; }
.card__text { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.card__rating { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: #ffd700; margin-bottom: 0.8rem; }
.card__rating span { color: var(--text-muted); }

/* ---------- Grid Layouts ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ---------- Tournament Table ---------- */
.tournament-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.tournament-table th {
  background: rgba(0,229,255,0.08);
  color: var(--neon-cyan);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.9rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border-glow);
}
.tournament-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-primary);
}
.tournament-table tr:hover td { background: rgba(0,229,255,0.04); }
.status-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.status-live { background: rgba(255,0,128,0.2); color: var(--neon-pink); border: 1px solid rgba(255,0,128,0.4); }
.status-upcoming { background: rgba(0,229,255,0.12); color: var(--neon-cyan); border: 1px solid rgba(0,229,255,0.3); }
.status-completed { background: rgba(136,136,170,0.15); color: var(--text-muted); border: 1px solid rgba(136,136,170,0.3); }

/* ---------- Newsletter / CTA Section ---------- */
.newsletter {
  background: linear-gradient(135deg, rgba(0,229,255,0.06) 0%, rgba(180,0,255,0.06) 100%);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 3.5rem;
  text-align: center;
}
.newsletter h2 { margin-bottom: 0.8rem; }
.newsletter p { color: var(--text-muted); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.newsletter__form { display: flex; gap: 0.8rem; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.newsletter__form input {
  flex: 1;
  min-width: 220px;
  padding: 0.75rem 1.2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter__form input:focus { border-color: var(--neon-cyan); }
.newsletter__form input::placeholder { color: var(--text-muted); }

/* ---------- Contact Form ---------- */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-main);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.1);
}
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300e5ff' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ---------- Toast Notification ---------- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--neon-cyan);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  box-shadow: 0 0 30px rgba(0,229,255,0.3);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  max-width: 340px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast__icon { color: var(--neon-cyan); font-size: 1.2rem; margin-right: 0.5rem; }

/* ---------- About Page ---------- */
.about-hero { padding-top: 120px; padding-bottom: 4rem; }
.about-img { border-radius: 12px; border: 2px solid var(--border-glow); box-shadow: 0 0 40px rgba(0,229,255,0.15); }
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { border-color: rgba(0,229,255,0.5); transform: translateY(-4px); }
.team-card__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1rem;
}
.team-card__name { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.team-card__role { font-size: 0.82rem; color: var(--neon-cyan); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding-top: 120px;
  padding-bottom: 3rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(0,229,255,0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-glow);
}
.page-hero__breadcrumb { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; }
.page-hero__breadcrumb a { color: var(--neon-cyan); }
.page-hero__breadcrumb span { margin: 0 0.4rem; }

/* ---------- Policy Pages ---------- */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}
.policy-content h2 { color: var(--neon-cyan); margin: 2.2rem 0 0.8rem; font-size: 1.3rem; }
.policy-content h3 { color: var(--text-primary); margin: 1.5rem 0 0.5rem; font-size: 1.05rem; }
.policy-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.policy-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-content ul li { color: var(--text-muted); margin-bottom: 0.4rem; list-style: disc; }
.policy-content a { color: var(--neon-cyan); }
.policy-content .last-updated {
  display: inline-block;
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: 50px;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  color: var(--neon-cyan);
  margin-bottom: 2rem;
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(18, 18, 26, 0.97);
  border-top: 1px solid var(--border-glow);
  backdrop-filter: blur(12px);
  z-index: 9000;
  padding: 1.2rem 0;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; font-size: 0.88rem; color: var(--text-muted); min-width: 260px; }
.cookie-banner__text a { color: var(--neon-cyan); }
.cookie-banner__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-glow);
  padding: 4rem 0 2rem;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer__brand { max-width: 280px; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer__logo img { width: 30px; height: 30px; object-fit: contain; }
.footer__logo span { background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer__desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.footer__social { display: flex; gap: 0.8rem; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.footer__social a:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); background: rgba(0,229,255,0.1); }
.footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }
.footer__links a:hover { color: var(--neon-cyan); }
.footer__address { font-size: 0.82rem; color: var(--text-muted); line-height: 1.8; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { font-size: 0.82rem; color: var(--text-muted); }
.footer__bottom-links a:hover { color: var(--neon-cyan); }

/* ---------- Review Rating Stars ---------- */
.stars { color: #ffd700; letter-spacing: 2px; }
.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  border: 2px solid;
}
.score-9 { border-color: #00e5ff; color: #00e5ff; background: rgba(0,229,255,0.1); }
.score-8 { border-color: #b400ff; color: #b400ff; background: rgba(180,0,255,0.1); }
.score-7 { border-color: #ffd700; color: #ffd700; background: rgba(255,215,0,0.1); }

/* ---------- Feature List ---------- */
.feature-list { display: flex; flex-direction: column; gap: 0.6rem; }
.feature-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--text-muted); }
.feature-list li::before { content: '✓'; color: var(--neon-cyan); font-weight: 700; flex-shrink: 0; }

/* ---------- Tabs ---------- */
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border-glow); margin-bottom: 2rem; overflow-x: auto; }
.tab-btn {
  padding: 0.8rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active { color: var(--neon-cyan); border-bottom-color: var(--neon-cyan); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar__menu { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--bg-nav); border-bottom: 1px solid var(--border-glow); padding: 1.5rem; gap: 1.2rem; }
  .navbar__menu.open { display: flex; }
  .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.5rem; }
  .newsletter { padding: 2rem 1.5rem; }
  .contact-form { padding: 1.5rem; }
  .tournament-table { font-size: 0.8rem; }
  .tournament-table th, .tournament-table td { padding: 0.7rem 0.8rem; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cookie-banner__actions { width: 100%; justify-content: center; }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(0,229,255,0.3); }
  50% { box-shadow: 0 0 25px rgba(0,229,255,0.7); }
}
.pulse { animation: pulse-glow 2s infinite; }

/* ---------- Misc ---------- */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border-glow), transparent); margin: 3rem 0; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
