.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HST eSports Official Site - Main Stylesheet
   Pure CSS / No Framework / Production Ready
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ========== CSS Variables ========== */
:root {
  --accent: #FF8907;
  --bg: #000000;
  --text: #EDEDED;
  --muted: #9A9A9A;
  --transition: 250ms ease-in-out;
}

::selection {
  background-color: #FF8907;
  color: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  padding-top: 64px;
}

body.is-nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #FFA040;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ========== Header (Updated) ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
}

.site-header__inner {
  width: min(1180px, 100% - 32px);
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.site-logo__mark {
  width: 38px;
  height: auto;
  display: block;
}

.site-logo__text {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1rem;
}

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 200ms ease;
}

.site-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.site-header__toggle span + span {
  margin-top: 6px;
}

.site-header__toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-header__toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hamburger {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
  z-index: 2000;
}

.hamburger__line {
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.sp-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.sp-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sp-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding-bottom: 3px;
}

.sp-nav a.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

/* ========== Page Header (1500×500) ========== */
.page-header {
  position: relative;
  width: 100%;
  min-height: 420px;
  background: #111;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.page-header picture,
.page-header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.65));
}

.page-header__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  color: var(--text);
}

.page-title {
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: 0.02em;
  margin: 0 0 0.25rem;
  font-weight: 700;
}

.page-subtitle {
  color: var(--muted);
  margin: 0;
  font-size: clamp(14px, 1.5vw, 18px);
}

/* ========== Main Content ========== */
main {
  min-height: calc(100vh - 200px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section {
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.section-content {
  line-height: 1.8;
}

.philosophy-content p {
  font-size: clamp(1rem, 1.9vw, 1.2rem);
}

.philosophy-content strong {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.activities-content h3 {
  margin-top: 24px;
  font-size: 1.05rem;
  color: #fff;
}

.activities-content ul {
  margin: 0 0 16px 1.2rem;
  padding: 0;
  list-style: disc;
  color: rgba(255,255,255,0.75);
}

.activities-content p {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.85);
}

/* ========== History Table ========== */
.history-content {
  margin-top: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.history-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.25);
}

.history-table thead {
  background: rgba(255, 137, 7, 0.1);
}

.history-table th,
.history-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.history-table th {
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.85rem;
}

.history-table td {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
}

.history-table tr:last-child td {
  border-bottom: none;
}

.history-table__year {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-right: 0.35rem;
}

.history-table__month {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 64px);
  padding: 0;
  background: #000;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: #111;
}

.hero-slider__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 600ms ease;
}

.hero-slider__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.hero-slider__slide img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}

.hero-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 200ms ease, transform 200ms ease;
}

.hero-slider__btn:hover {
  background: rgba(255, 137, 7, 0.8);
}

.hero-slider__btn--prev {
  left: 32px;
}

.hero-slider__btn--next {
  right: 32px;
}

.hero-slider__indicators {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.hero-slider__indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease;
}

.hero-slider__indicator.is-active {
  transform: scale(1.15);
  background: var(--accent);
}

.hero-slider__indicator:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(255, 137, 7, 0.35), transparent 55%);
  pointer-events: none;
}


.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  border-radius: 4px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.cta-button:hover {
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 137, 7, 0.3);
}

/* ========== Card Grid ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 137, 7, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.card h3 {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

/* ========== News List ========== */
.news-list {
  list-style: none;
}

.news-item {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--accent);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: background var(--transition);
}

.news-item:hover {
  background: rgba(255, 137, 7, 0.05);
}

.news-date {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.news-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.news-excerpt {
  color: var(--muted);
  line-height: 1.6;
}

/* ========== History Timeline ========== */
.history-content {
  margin-top: 2.5rem;
}

.history-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.25);
}

.history-table thead {
  background: rgba(255, 137, 7, 0.1);
}

.history-table th,
.history-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.history-table th {
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.85rem;
}

.history-table td {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
}

.history-table tr:last-child td {
  border-bottom: none;
}

.history-table__year {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-right: 0.35rem;
}

.history-table__month {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
  .history-table th,
  .history-table td {
    padding: 0.85rem 0.85rem;
  }

  .history-table {
    font-size: 0.9rem;
    min-width: 520px;
  }

  .history-content {
    margin-top: 2rem;
  }
}

/* ========== Member Roster ========== */
.members-section {
  margin-top: 3rem;
}

.members-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.member-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
}

.member-filter__item {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  padding: 0;
  transition: color 200ms ease;
}

.member-filter__item::before {
  content: "►";
  margin-right: 0.35rem;
  color: rgba(255, 255, 255, 0.4);
}

.member-filter__item.is-active,
.member-filter__item:hover {
  color: #fff;
}

.member-filter__item.is-active::before,
.member-filter__item:hover::before {
  color: var(--accent);
}

.member-filter::-webkit-scrollbar {
  display: none;
}

.member-roster {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem 2rem;
  justify-items: center;
}

.member-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.member-tile.is-hidden {
  display: none;
}

.member-tile__photo {
  width: min(180px, 45vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  display: grid;
  place-items: center;
  border: 4px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.25);
}

.member-tile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.member-tile__meta {
  min-width: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.member-tile:hover .member-tile__meta {
  transform: translateY(-3px);
  border-color: rgba(255, 137, 7, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.member-tile__name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.member-tile__role {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ========== News Article Template ========== */
.news-article {
  background: #0b0b0b;
  padding: 70px 0 90px;
  color: #fff;
}

.news-article__inner {
  width: min(1100px, 100% - 32px);
  margin: 0 auto;
}

.news-article .breadcrumb {
  display: flex;
  gap: 6px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}

.news-article .breadcrumb a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.news-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 34px;
}

.news-article__content {
  background: #101010;
  border: 1px solid rgba(255,137,7,0.03);
  border-radius: 16px;
  padding: 26px 26px 38px;
}

.news-article__header {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-article__category {
  display: inline-block;
  background: #FF8907;
  color: #000;
  font-size: 0.65rem;
  letter-spacing: .04em;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-weight: 700;
}

.news-article__title {
  font-size: 2rem;
  line-height: 1.25;
  margin: 0;
}

.news-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
}

.news-article__tags {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-article__tags li {
  background: rgba(255,137,7,0.12);
  border: 1px solid rgba(255,137,7,0.4);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.65rem;
}

.news-article__body {
  line-height: 1.75;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
}

.news-article__body h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  border-left: 3px solid #FF8907;
  padding-left: 10px;
  font-size: 1.15rem;
}

.news-article__body ul {
  padding-left: 1.3rem;
  margin-bottom: 12px;
}

.news-article__side {
  position: sticky;
  top: 82px;
  height: fit-content;
}

.news-side-card {
  background: #111;
  border: 1px solid rgba(255,137,7,0.1);
  border-radius: 16px;
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.news-side-card h3 {
  font-size: .85rem;
  margin: 0;
  color: #fff;
}

.news-side-card__btn {
  display: inline-block;
  margin-top: 12px;
  background: #FF8907;
  color: #000;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.news-side-card__btn:hover {
  background: #ffa53e;
}

@media (max-width: 900px) {
  .news-article__layout {
    display: block;
  }

  .news-article__content {
    padding: 22px 18px 34px;
  }

  .news-article__side {
    position: static;
    margin-top: 24px;
  }

  .news-article__title {
    font-size: 1.6rem;
  }
}

/* ========== Contact Form ========== */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.form-group .required {
  color: var(--accent);
  margin-left: 0.25rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 137, 7, 0.3);
  border-radius: 4px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition), background var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.submit-button {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 137, 7, 0.3);
}

.submit-button:active {
  transform: translateY(0);
}

.submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Honeypot (hidden) */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ========== Footer ========== */
footer {
  background: rgba(0, 0, 0, 0.95);
  border-top: 1px solid rgba(255, 137, 7, 0.2);
  padding: 2rem 1.5rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-copyright {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ========== Thanks Page ========== */
.thanks-container {
  max-width: 600px;
  margin: 4rem auto;
  text-align: center;
  padding: 3rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 137, 7, 0.2);
  border-radius: 8px;
}

.thanks-container h1 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: clamp(28px, 4vw, 40px);
}

.thanks-container p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.back-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  border-radius: 4px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.back-button:hover {
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 137, 7, 0.3);
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
  .site-header__inner {
    width: 100%;
    padding: 0 16px;
  }

  .hamburger {
    display: flex;
  }

  .sp-nav {
    position: fixed;
    inset: 64px 0 0;
    padding: 1.75rem 1.5rem 3rem;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    transform: translateY(-110%);
    transition: transform 250ms ease;
    z-index: 1050;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sp-nav.is-open {
    display: block;
    transform: translateY(0);
  }

  .sp-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .sp-nav li {
    width: 100%;
  }

  .sp-nav a {
    display: inline-block;
    font-size: 0.95rem;
  }

  .hero {
    min-height: clamp(360px, 80vh, 520px);
  }

  .hero-slider__btn {
    width: 38px;
    height: 38px;
  }

  .hero-slider__btn--prev {
    left: 16px;
  }

  .hero-slider__btn--next {
    right: 16px;
  }

  .container {
    padding: 2.5rem 1.25rem;
  }

  .page-header {
    min-height: 320px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .member-roster {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem 1.5rem;
  }

  .member-tile__photo {
    width: min(150px, 55vw);
  }

  .member-tile__meta {
    min-width: 150px;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ========== Accessibility ========== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: #000;
  padding: 0.5rem 1rem;
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}


