/* Winner11 India Guide — premium dark sports-tech, system fonts */
:root {
  --bg-deep: #0c1018;
  --bg-card: #141a24;
  --bg-elevated: #1a2230;
  --border: #2d3748;
  --text: #e8edf4;
  --text-muted: #94a3b8;
  --accent: #38bdf8;
  --accent-dim: #0284c7;
  --accent-glow: rgba(56, 189, 248, 0.12);
  --header-h: 3.25rem;
  --radius: 10px;
  --radius-sm: 8px;
  --max: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
  overflow-x: clip;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--bg-deep);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: #7dd3fc;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  min-height: var(--header-h);
  background: rgba(12, 16, 24, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 0.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  flex-wrap: nowrap;
  width: 100%;
  min-width: 0;
}

@media (min-width: 400px) {
  .site-header__inner {
    padding: 0 0.75rem;
    gap: 0.5rem;
  }
}

.site-brand {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 361px) {
  .site-brand {
    font-size: 0.8125rem;
  }
}

@media (min-width: 400px) {
  .site-brand {
    font-size: 0.875rem;
    letter-spacing: -0.02em;
  }
}

.site-brand:hover {
  color: var(--accent);
}

.site-header__actions {
  display: flex;
  align-items: stretch;
  gap: 0.25rem;
  flex-shrink: 0;
  min-width: 0;
}

@media (min-width: 400px) {
  .site-header__actions {
    gap: 0.35rem;
  }
}

.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  height: 2.25rem;
  min-height: 2.25rem;
  max-height: 2.25rem;
  box-sizing: border-box;
  padding: 0 0.45rem;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

@media (min-width: 361px) {
  .btn-header {
    font-size: 0.6875rem;
    padding: 0 0.5rem;
  }
}

@media (min-width: 400px) {
  .btn-header {
    padding: 0 0.65rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .site-header__inner {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
    gap: 0.2rem;
  }

  .site-brand {
    font-size: 0.6875rem;
  }

  .site-header__actions {
    gap: 0.18rem;
  }

  .btn-header {
    padding: 0 0.32rem;
    font-size: 0.5625rem;
  }

  .btn-header--menu {
    font-size: 0.9375rem;
  }
}

.btn-header--accent {
  border-color: var(--accent-dim);
  background: var(--accent-glow);
  color: var(--accent);
}

.btn-header:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-header--menu {
  width: 2.25rem;
  min-width: 2.25rem;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
}

.btn-header[aria-expanded="true"] {
  border-color: var(--accent);
  color: var(--accent);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 16, 24, 0.97);
  z-index: 99;
  padding: 1rem;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(56, 189, 248, 0.15);
}

.mobile-nav a:hover {
  color: var(--accent);
}

body.nav-open {
  overflow: hidden;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 0.75rem 3rem;
  min-width: 0;
}

.hero {
  padding: 1.5rem 0 2rem;
}

.hero--compact {
  padding: 1rem 0 1.5rem;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.45rem, 5vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.hero__lead {
  margin: 0;
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.disclaimer-strip {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 48rem;
}

.content-figure {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  contain: layout;
}

.content-figure picture.hero-image-card {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 420px;
  overflow: hidden;
  background: var(--bg-elevated);
  position: relative;
  z-index: 0;
  line-height: 0;
}

.content-figure picture.hero-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 180px;
  background: var(--bg-elevated);
}

.content-figure figcaption {
  padding: 0.65rem 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.section {
  margin: 2.5rem 0;
}

.section__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section__lead {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  max-width: 44rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.15s ease;
}

.card:hover {
  border-color: var(--accent-dim);
}

.card__title {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
}

.card__title a {
  color: var(--text);
  text-decoration: none;
}

.card__title a:hover {
  color: var(--accent);
}

.card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.card__meta {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
}

.read-next {
  margin: 2.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.read-next__title {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.read-next__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .read-next__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.read-next__card {
  display: block;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(56, 189, 248, 0.12);
}

.read-next__card:hover {
  border-color: var(--accent-dim);
  color: var(--accent);
}

.read-next__card span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.read-next__card:hover span {
  color: var(--text-muted);
}

@media (max-width: 639px) {
  .read-next {
    margin-top: 2rem;
    padding-top: 1.75rem;
  }

  .read-next__grid {
    gap: 0.875rem;
  }

  .read-next__card {
    padding: 0.95rem 1rem 1.05rem;
    min-height: 4.5rem;
    box-sizing: border-box;
  }

  .read-next__card strong {
    line-height: 1.3;
  }

  .read-next__card span {
    margin-top: 0.4rem;
    line-height: 1.4;
  }
}

.prose {
  max-width: 44rem;
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.prose ul,
.prose ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.prose li {
  margin-bottom: 0.35rem;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

.prose .cta-glass {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 1.15rem 0 1.65rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(2, 132, 199, 0.42);
  background: rgba(20, 26, 36, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(56, 189, 248, 0.07);
}

.prose .cta-glass h3 {
  margin: 0 0 0.45rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
}

.prose .cta-glass__support {
  margin: 0 0 0.9rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.faq {
  margin: 1.5rem 0;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  background: var(--bg-card);
  overflow: hidden;
}

.faq summary {
  padding: 0.85rem 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq .faq__body {
  padding: 0 1rem 1rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.path-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-list li {
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.path-list strong {
  color: var(--text);
}

.site-footer {
  margin-top: auto;
  padding: 2rem 0.75rem;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.site-footer__disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  max-width: 48rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1rem;
}

.site-footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.2rem 0;
  font-size: 0.875rem;
  color: var(--text);
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(56, 189, 248, 0.15);
}

.site-footer__links a:hover {
  color: var(--accent);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}
