:root {
  --primary: #d20a0a;
  --primary-dark: #550101;
  --accent: #ff5a5a;
  --black: #050505;
  --gray-100: #f5f5f5;
  --gray-200: #cfcfcf;
  --gray-600: #8f8f8f;
  --gray-800: #181818;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--black);
}

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

body {
  color: var(--gray-100);
  background: var(--black);
}

.page {
  min-height: 100vh;
}

.top-banner {
  display: grid;
  grid-template-columns: 120px 1fr 180px;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(90deg, #2b0000, #910000);
  color: var(--gray-100);
  padding: 1rem 8vw;
}

.top-banner .button-link {
  background: var(--accent);
  border: none;
  border-radius: 999px;
  padding: 0.35rem 1.25rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--black);
}

.top-banner .banner-logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.top-banner .banner-video {
  text-align: right;
  font-weight: 500;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--black);
  color: var(--gray-100);
  padding: 0 8vw;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.brand-mark {
  background: var(--gray-100);
  color: var(--black);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-right: 0.4rem;
}

.brand-name {
  color: var(--accent);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.nav-item {
  position: relative;
}

.nav-trigger {
  background: none;
  border: none;
  color: var(--gray-100);
  font: inherit;
  padding: 0.25rem 0;
  cursor: pointer;
  text-decoration: none;
}

.nav-trigger:hover,
.nav-trigger:focus,
.nav-trigger.active {
  color: var(--accent);
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 1.5rem;
  background: #111;
  color: var(--gray-100);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
  width: max-content;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.dropdown-panel.single-column {
  grid-template-columns: 1fr;
  min-width: 180px;
}

.dropdown-panel.two-column {
  grid-template-columns: repeat(2, minmax(150px, 1fr));
}

.nav-item:hover .dropdown-panel,
.nav-item:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-column h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-600);
  margin-bottom: 0.6rem;
}

.dropdown-column a {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-100);
  text-decoration: none;
  padding: 0.2rem 0;
}

.dropdown-column a:hover {
  color: var(--blue);
}

.auth-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.auth-actions a {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.25rem 0.9rem;
  background: transparent;
  color: white;
  font-weight: 600;
  text-decoration: none;
}

/* Hide admin link by default - only show if user is admin */
.auth-actions [data-admin-link] {
  display: none !important;
}

/* Show admin link only when explicitly shown (not hidden and display is set) */
.auth-actions [data-admin-link]:not([hidden]) {
  display: flex !important;
}

.auth-actions button {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.25rem 0.9rem;
  background: transparent;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.auth-actions .primary {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.search-icon {
  font-size: 1.2rem;
  text-decoration: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.content {
  display: grid;
  grid-template-columns: 250px minmax(0, 3fr) 300px;
  gap: 1.5rem;
  padding: 2rem 8vw;
}

.card {
  background: #181818;
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  color: var(--gray-100);
}

.button-link {
  display: inline-block;
  background: var(--blue);
  color: white;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.button-link:hover {
  background: #03386a;
  color: white;
}

.button-link.primary {
  background: var(--yellow);
  color: var(--navy);
}

.button-link.inverse {
  background: white;
  color: #f36d21;
}

.button-link.full {
  width: 100%;
  text-align: center;
  border-radius: 6px;
}

.text-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}

.text-link:hover {
  color: #022e4f;
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 33, 58, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 200;
}

.search-overlay.is-visible {
  display: flex;
}

.search-panel {
  background: #101010;
  width: min(720px, 100%);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  color: var(--gray-100);
}

.search-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.search-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1rem;
  background: #0c0c0c;
  color: var(--gray-100);
}

.search-results {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 60vh;
  overflow-y: auto;
}

.search-result {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1rem;
  align-items: center;
  background: #1a1a1a;
}

.search-result__avatar {
  flex-shrink: 0;
}

.search-result__avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.search-result__name {
  font-weight: 600;
  color: var(--gray-100);
}

.search-result__meta,
.search-result__rating {
  color: var(--gray-200);
  font-size: 0.9rem;
}

.search-empty {
  color: var(--gray-200);
  text-align: center;
}

.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 33, 58, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 210;
}

.auth-overlay.is-visible {
  display: flex;
}

.auth-panel {
  background: white;
  color: #1a1a1a;
  width: min(520px, 100%);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-panel h2,
.auth-panel p,
.auth-panel label {
  color: #1a1a1a;
}

.auth-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: none;
  font-size: 1.5rem;
  color: #1a1a1a;
  cursor: pointer;
}

.auth-close:hover {
  color: var(--primary);
}

.auth-code {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  background: #f1f5f9;
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

.auth-code code {
  font-family: "Courier New", Courier, monospace;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #1a1a1a;
}

.auth-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 1rem;
  background: white;
  color: #1a1a1a;
}

.auth-input::placeholder {
  color: #94a3b8;
}

.auth-panel .button-link {
  background: var(--primary);
  color: white;
}

.auth-panel .button-link:hover {
  background: var(--primary-dark);
  color: white;
}

.auth-panel .button-link.primary {
  background: var(--primary);
  color: white;
}

.auth-panel .button-link.primary:hover {
  background: var(--primary-dark);
  color: white;
}

.auth-status {
  min-height: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
}

.auth-status[data-state="success"] {
  color: #0f8a5f;
}

.auth-status[data-state="error"] {
  color: #b42318;
}

.user-profile-card {
  background: #04182c;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 8vw;
  gap: 1rem;
}

.user-profile-card[hidden] {
  display: none !important;
}

.user-card__label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.user-card__rating {
  font-weight: 600;
  margin-top: 0.25rem;
}

.user-card__ranks {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.35rem;
}

.user-chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.25rem 0.9rem;
  background: rgba(4, 33, 58, 0.4);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.user-chip[hidden] {
  display: none !important;
}

.user-logout {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 0.4rem 1.2rem;
  background: transparent;
  color: white;
  cursor: pointer;
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.quick-links a {
  color: var(--gray-200);
  text-decoration: none;
}

.vip-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 1rem;
}

.vip-card .button-link {
  background: var(--accent);
  color: var(--black);
}

.vip-pill {
  background: #1fad4a;
  color: white;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.ad-card {
  margin-top: 1rem;
  background: #f36d21;
  color: white;
  text-align: center;
  font-weight: 600;
}

.ad-card .button-link {
  margin-top: 1rem;
}

main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero {
  background-image: var(--hero-gradient, linear-gradient(135deg, rgba(5, 0, 0, 0.92), rgba(165, 0, 0, 0.9))),
    var(--hero-image, url("https://images.unsplash.com/photo-1483721310020-03333e577078?auto=format&fit=crop&w=1200&q=80"));
  background-size: cover;
  background-position: center;
  color: var(--gray-100);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 320px;
}

.hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.2;
}

.hero .cta {
  align-self: flex-start;
  margin-top: 1rem;
}

.hero-tag,
.hero-author {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gray-200);
}

.stories {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  color: var(--gray-100);
}

.stories h2 {
  color: var(--gray-100);
  margin-bottom: 0.75rem;
}

.story-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.story-grid article,
.story-list article {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
}

.story-grid article:first-child,
.story-list article:first-child {
  border-top: none;
  padding-top: 0;
}

.story-grid h3,
.story-list h3 {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--gray-100);
}

.story-grid p,
.story-list p {
  color: var(--gray-200);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.story-author {
  color: var(--gray-200);
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.story-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rankings ol {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rankings li {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--gray-800);
}

.newsletter {
  margin-top: 1.5rem;
}

.newsletter input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  margin: 0.75rem 0;
  background: #0f0f0f;
  color: var(--gray-100);
}

.newsletter input::placeholder {
  color: var(--gray-600);
}

.newsletter .button-link {
  display: block;
  width: 100%;
  border-radius: 6px;
  text-align: center;
}

.player-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 2rem 8vw;
}

.player-hero {
  grid-column: 1 / -1;
}

.player-hero__content {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.player-avatar {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  background-size: cover;
  background-position: center;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.player-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.player-meta {
  color: var(--gray-600);
  margin-top: 0.5rem;
}

.player-stars {
  margin-top: 0.75rem;
  font-weight: 600;
}

.player-stats {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.player-stats li {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.75rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.admin-content {
  display: block;
}

.admin-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.admin-form-grid label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 0.4rem;
}

.admin-form-grid input,
.admin-form-grid textarea,
.admin-form-grid select {
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

.admin-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.admin-custom-card {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 1rem;
}

footer {
  text-align: center;
  padding: 2rem 8vw 3rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .content {
    grid-template-columns: 220px minmax(0, 2.5fr);
  }
}

.article-full {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  color: var(--gray-100);
  max-width: 900px;
  margin: 0 auto;
}

.article-loading {
  text-align: center;
  padding: 3rem;
  color: var(--gray-200);
}

.article-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.article-back {
  display: inline-block;
  color: var(--gray-200);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  transition: color 0.2s ease;
}

.article-back:hover {
  color: var(--primary);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray-200);
}

.article-author {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-badge {
  background: #1fad4a;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--gray-100);
}

.article-blurb {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--gray-200);
  font-weight: 400;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-100);
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--gray-100);
}

.article-body h2 {
  font-size: 1.8rem;
}

.article-body h3 {
  font-size: 1.5rem;
}

.article-body h4 {
  font-size: 1.3rem;
}

.article-body ul,
.article-body ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body a {
  color: var(--primary);
  text-decoration: underline;
}

.article-body a:hover {
  color: var(--accent);
}

@media (max-width: 860px) {
  .article-full {
    padding: 1.5rem;
  }

  .article-title {
    font-size: 1.8rem;
  }

  .article-blurb {
    font-size: 1.1rem;
  }

  .article-body {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .content {
    grid-template-columns: 220px minmax(0, 2.5fr);
  }

  .right-rail {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
  position: relative;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--gray-100);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 860px) {
  .top-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0.75rem 5vw;
    gap: 0.75rem;
  }

  .top-banner .banner-logo {
    font-size: 1.25rem;
  }

  .top-banner .banner-message {
    font-size: 0.9rem;
  }

  .top-banner .banner-video {
    display: none;
  }

  .main-nav {
    position: relative;
    flex-wrap: wrap;
    height: auto;
    min-height: 64px;
    padding: 0.75rem 5vw;
    gap: 0.5rem;
  }

  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 5vw 2rem;
    gap: 0;
    overflow-y: auto;
    z-index: 99;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .nav-links[data-mobile-open="true"] {
    display: flex;
    transform: translateX(0);
  }

  .nav-item {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-trigger {
    display: block;
    width: 100%;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-item .dropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 0;
    padding: 0.5rem 0 0.5rem 1.5rem;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    width: 100%;
    min-width: auto;
    display: none;
    grid-template-columns: 1fr;
  }

  .nav-item[data-dropdown-open="true"] .dropdown-panel {
    display: grid;
  }

  .dropdown-column h4 {
    font-size: 0.9rem;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .dropdown-column a {
    padding: 0.75rem 0;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .auth-actions {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.5rem;
    order: -1;
  }

  .auth-actions a,
  .auth-actions button {
    flex: 1;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  /* Hide admin link on mobile if not admin - use !important to override flex */
  .auth-actions [data-admin-link][hidden] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  
  .auth-actions [data-admin-link][style*="display: none"] {
    display: none !important;
  }

  .search-icon {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
  }

  .content {
    grid-template-columns: 1fr;
    padding: 1.5rem 5vw;
    gap: 1.5rem;
  }

  .left-rail,
  .right-rail {
    display: contents;
  }

  .card {
    padding: 1rem;
  }

  .player-hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .player-avatar {
    margin: 0 auto;
  }

  /* Improve touch targets for all interactive elements */
  .button-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
  }

  .quick-links a,
  .story-card a,
  .text-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
  }

  /* Hero section mobile improvements */
  .hero {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  /* Story cards mobile */
  .story-card {
    padding: 1rem;
  }

  .story-card h3 {
    font-size: 1.1rem;
  }

  /* Additional mobile improvements */
  .hero .button-link {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .vip-card,
  .newsletter-card {
    margin-top: 1rem;
  }

  /* Improve form inputs on mobile */
  input[type="email"],
  input[type="text"],
  textarea {
    min-height: 44px;
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.75rem;
  }

  /* Footer mobile */
  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
  .top-banner {
    padding: 0.5rem 4vw;
    font-size: 0.85rem;
  }

  .main-nav {
    padding: 0.5rem 4vw;
  }

  .content {
    padding: 1rem 4vw;
  }

  .hero {
    padding: 1.5rem 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .card {
    padding: 0.75rem;
  }

  .brand {
    font-size: 1.25rem;
  }

  .nav-trigger {
    font-size: 1rem;
  }
}

