:root {
  --playoff-primary: #1a73e8;
  --playoff-primary-dark: #1557b0;
  --playoff-accent: #ff6b35;
  --playoff-accent-dark: #e85a28;
  --playoff-dark: #0d1b2a;
  --playoff-darker: #000814;
  --playoff-light: #f8f9fa;
  --playoff-gray: #6c757d;
  --playoff-border: #e0e0e0;
  --playoff-success: #34a853;
  --playoff-text: #212529;
  --playoff-text-light: #5f6368;
  --playoff-sidebar-width: 260px;
  --playoff-shadow: 0 1px 3px rgba(0,0,0,0.08);
  --playoff-shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

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

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

table {
  width: 100%;
  border-collapse: collapse;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--playoff-text);
  background: var(--playoff-light);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  padding-left: var(--playoff-sidebar-width);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--playoff-text);
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--playoff-text-light);
  margin-bottom: 1rem;
}

a {
  color: var(--playoff-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--playoff-primary-dark);
}

.playoff-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--playoff-sidebar-width);
  height: 100vh;
  background: var(--playoff-darker);
  padding: 2rem 0;
  z-index: 1000;
  overflow-y: auto;
  box-shadow: 2px 0 8px rgba(0,0,0,0.1);
}

.playoff-sidebar-header {
  padding: 0 1.5rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.playoff-sidebar-header a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.playoff-sidebar-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.playoff-sidebar-brand {
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.playoff-sidebar-brand span {
  color: var(--playoff-accent);
}

.playoff-sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.playoff-sidebar-menu li {
  margin: 0;
}

.playoff-menu-link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.playoff-menu-link i {
  font-size: 1.125rem;
  width: 20px;
  text-align: center;
}

.playoff-menu-link:hover,
.playoff-menu-link.active {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-left-color: var(--playoff-accent);
}

.playoff-menu-highlight {
  margin: 1.5rem 1.5rem 0;
  padding: 0.875rem 1.25rem;
  background: linear-gradient(135deg, var(--playoff-primary) 0%, var(--playoff-accent) 100%);
  color: #fff !important;
  border-radius: 8px;
  border-left: none !important;
  justify-content: center;
  font-weight: 600;
}

.playoff-menu-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,107,53,0.3);
}

.playoff-mobile-toggle {
  display: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1001;
  background: var(--playoff-darker);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.playoff-content {
  min-height: 100vh;
  width: 100%;
}

.playoff-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

.playoff-hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a73e8 100%);
  color: #fff;
  overflow: hidden;
}

.playoff-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  max-width: 100vw;
  background: radial-gradient(circle, rgba(255,107,53,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.playoff-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 5rem 2rem;
}

.playoff-hero-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.playoff-hero-wrapper h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.playoff-hero-lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
}

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

.playoff-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.playoff-btn-primary {
  background: var(--playoff-accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.playoff-btn-primary:hover {
  background: var(--playoff-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
  color: #fff;
}

.playoff-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.playoff-btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.playoff-values-section {
  padding: 5rem 0;
  background: #fff;
}

.playoff-section-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.playoff-badge {
  display: inline-block;
  background: var(--playoff-accent);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.playoff-section-heading {
  margin-bottom: 1rem;
}

.playoff-section-subtitle {
  font-size: 1.125rem;
  color: var(--playoff-text-light);
  max-width: 750px;
  margin: 0 auto;
}

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

.playoff-value-card {
  background: var(--playoff-light);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--playoff-border);
  transition: all 0.3s ease;
}

.playoff-value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--playoff-shadow-lg);
}

.playoff-card-accent {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(26,115,232,0.05) 0%, rgba(255,107,53,0.05) 100%);
  border: 2px solid var(--playoff-primary);
}

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

.playoff-value-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.playoff-sports-section {
  padding: 5rem 0;
  background: var(--playoff-light);
}

.playoff-sports-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

.playoff-sport-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--playoff-shadow);
  border: 1px solid var(--playoff-border);
  transition: all 0.3s ease;
  grid-column: span 6;
}

.playoff-sport-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--playoff-shadow-lg);
}

.playoff-sport-large {
  grid-column: span 6;
}

.playoff-sport-title h3 {
  color: var(--playoff-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--playoff-accent);
}

.playoff-sport-details ul {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.playoff-sport-details li {
  padding: 0.5rem 0;
  color: var(--playoff-text-light);
  font-size: 0.9375rem;
}

.playoff-sport-details li::before {
  content: '• ';
  color: var(--playoff-primary);
  font-weight: bold;
  margin-right: 0.5rem;
}

.playoff-vendor-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.playoff-vendor-link {
  display: inline-block;
  background: linear-gradient(135deg, var(--playoff-primary) 0%, var(--playoff-accent) 100%);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(26,115,232,0.25);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.playoff-vendor-link:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 18px rgba(26,115,232,0.35);
  color: #fff;
}

.playoff-footer {
  background: var(--playoff-darker);
  color: rgba(255,255,255,0.85);
  padding: 3.5rem 0 1.5rem;
}

.playoff-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.playoff-footer-about h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.playoff-footer-about p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

.playoff-contact-info {
  margin-top: 1.5rem;
}

.playoff-contact-info p {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
}

.playoff-contact-info a {
  color: rgba(255,255,255,0.85);
}

.playoff-contact-info a:hover {
  color: #fff;
}

.playoff-footer-links-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.playoff-footer-column h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.playoff-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.playoff-footer-column li {
  margin-bottom: 0.625rem;
}

.playoff-footer-column a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.playoff-footer-column a:hover {
  color: #fff;
}

.playoff-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 2rem 0;
}

.playoff-footer-bottom {
  text-align: center;
}

.playoff-disclaimer {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.playoff-disclaimer p {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
}

.playoff-disclaimer a {
  color: var(--playoff-accent);
}

.playoff-copyright {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.playoff-copyright a {
  color: rgba(255,255,255,0.75);
  margin: 0 0.5rem;
}

.playoff-copyright a:hover {
  color: #fff;
}

.playoff-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--playoff-dark);
  color: #fff;
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.playoff-cookie-banner.hidden {
  display: none;
}

.playoff-cookie-content {
  flex: 1;
}

.playoff-cookie-content h5 {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.playoff-cookie-content p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.playoff-cookie-content a {
  color: var(--playoff-accent);
}

.playoff-cookie-actions {
  display: flex;
  gap: 1rem;
}

.playoff-page-header {
  background: linear-gradient(135deg, var(--playoff-dark) 0%, var(--playoff-primary) 100%);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.playoff-page-title {
  color: #fff;
  font-size: 2.5rem;
  margin: 0;
}

.playoff-content-box {
  background: #fff;
  padding: 3rem 0;
}

.playoff-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.playoff-content-wrapper h2 {
  color: var(--playoff-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.playoff-content-wrapper h3 {
  color: var(--playoff-text);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.playoff-content-wrapper ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.playoff-content-wrapper ul li {
  margin-bottom: 0.5rem;
  color: var(--playoff-text-light);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.playoff-content-wrapper p,
.playoff-content-wrapper h2,
.playoff-content-wrapper h3 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.playoff-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.playoff-contact-info h2 {
  color: var(--playoff-dark);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.playoff-contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
}

.playoff-contact-details li {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.playoff-contact-details strong {
  color: var(--playoff-dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.playoff-contact-details a {
  color: var(--playoff-primary);
}

.playoff-form-area {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--playoff-shadow-lg);
  border: 1px solid var(--playoff-border);
}

.playoff-form-area h2 {
  color: var(--playoff-dark);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

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

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

.playoff-form-control {
  width: 100%;
  max-width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--playoff-border);
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.playoff-form-control:focus {
  outline: none;
  border-color: var(--playoff-primary);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.1);
}

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

.playoff-submit-loading {
  display: none;
}

.playoff-submit-loading.visible {
  display: inline-flex;
}

.playoff-submit-text.hidden {
  display: none;
}

.playoff-faq-section {
  margin-top: 4rem;
}

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

.playoff-faq-item {
  background: #fff;
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: var(--playoff-shadow);
  border: 1px solid var(--playoff-border);
}

.playoff-faq-item h4 {
  color: var(--playoff-dark);
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.playoff-faq-item p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.playoff-hidden {
  display: none;
}

.playoff-visible {
  display: block;
}

@media (max-width: 1200px) {
  body {
    padding-left: 0;
    width: 100%;
    max-width: 100%;
  }

  .playoff-sidebar {
    left: -100%;
    width: 280px;
    transition: left 0.3s ease;
  }

  .playoff-sidebar.open {
    left: 0;
  }

  .playoff-mobile-toggle {
    display: block;
  }

  .playoff-values-cards {
    grid-template-columns: 1fr;
  }

  .playoff-card-accent {
    grid-column: span 1;
  }

  .playoff-sports-masonry {
    grid-template-columns: 1fr;
  }

  .playoff-sport-card,
  .playoff-sport-large,
  .playoff-sport-wide {
    grid-column: span 1;
  }

  .playoff-footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .playoff-footer-links-group {
    grid-template-columns: repeat(2, 1fr);
  }

  .playoff-contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .playoff-faq-grid {
    grid-template-columns: 1fr;
  }

  .playoff-cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }

  .playoff-cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .playoff-cookie-actions button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .row {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }

  .row [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 100%;
    max-width: 100%;
  }

  .playoff-container {
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .playoff-hero-overlay {
    padding: 3.5rem 1rem;
  }

  .playoff-hero-lead {
    font-size: 1rem;
  }

  .playoff-hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .playoff-btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .playoff-values-section,
  .playoff-sports-section {
    padding: 3rem 0;
  }

  .playoff-form-area {
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .playoff-content-wrapper {
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .playoff-footer-links-group {
    grid-template-columns: 1fr;
  }

  table {
    width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.875rem;
  }

  table thead,
  table tbody,
  table tr {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  table th,
  table td {
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .playoff-container {
    padding: 0 0.875rem;
  }

  .playoff-page-title {
    font-size: 1.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 0.5rem;
  }

  .playoff-badge {
    font-size: 0.75rem;
    padding: 0.375rem 1rem;
  }

  .playoff-hero-overlay {
    padding: 3rem 0.875rem;
  }

  .playoff-content-wrapper {
    padding: 0 0.875rem;
  }

  .playoff-form-area {
    padding: 1.25rem;
  }

  .playoff-vendor-link {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }

  .playoff-disclaimer {
    padding: 1.25rem;
    font-size: 0.8125rem;
  }

  .playoff-cookie-banner {
    padding: 1.25rem;
  }

  .playoff-cookie-content h5 {
    font-size: 1rem;
  }

  .playoff-cookie-content p {
    font-size: 0.875rem;
  }
}
