/* ========================================
   PZRL — Polski Związek Rugby League
   Tymczasowa Strona — Design System
   ======================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* --- Design Tokens --- */
:root {
  /* Colors */
  --pzrl-red: #E2123B;
  --pzrl-red-dark: #B80E2F;
  --pzrl-red-light: #FF2D55;
  --pzrl-red-glow: rgba(226, 18, 59, 0.3);
  --pzrl-white: #FFFFFF;
  --pzrl-off-white: #F8F9FA;
  --pzrl-cream: #FFF5F5;
  --pzrl-dark: #1A1A2E;
  --pzrl-dark-alt: #16213E;
  --pzrl-gray: #6B7280;
  --pzrl-gray-light: #E5E7EB;
  --pzrl-gold: #D4A843;
  --pzrl-blue: #2563EB;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.16);
  --shadow-red: 0 8px 30px rgba(226, 18, 59, 0.2);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--pzrl-dark);
  background-color: var(--pzrl-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--pzrl-red);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--pzrl-cream);
  border-radius: 100px;
  border: 1px solid rgba(226, 18, 59, 0.15);
}

.section-tag svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--pzrl-dark);
  margin-bottom: 16px;
}

.section-title .highlight {
  color: var(--pzrl-red);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--pzrl-gray);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.4s; }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-medium);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav-brand img {
  height: 44px;
  width: auto;
  transition: var(--transition-fast);
}

.navbar.scrolled .nav-brand img {
  height: 36px;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--pzrl-white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
}

.nav-brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition-fast);
}

.navbar.scrolled .nav-brand-name {
  color: var(--pzrl-dark);
}

.navbar.scrolled .nav-brand-sub {
  color: var(--pzrl-gray);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pzrl-red);
  transition: var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.navbar.scrolled .nav-links a {
  color: var(--pzrl-dark);
}

.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 24px;
  background: var(--pzrl-red);
  color: var(--pzrl-white) !important;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-cta:hover {
  background: var(--pzrl-red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--pzrl-white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.navbar.scrolled .hamburger span {
  background: var(--pzrl-dark);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--pzrl-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.7) 0%,
    rgba(26, 26, 46, 0.5) 40%,
    rgba(226, 18, 59, 0.3) 100%
  );
}

/* Animated Chevrons Overlay */
.hero-chevrons {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-chevron {
  position: absolute;
  width: 200%;
  left: -50%;
  height: 60px;
  opacity: 0.08;
}

.hero-chevron::before,
.hero-chevron::after {
  content: '';
  position: absolute;
  width: 51%;
  height: 100%;
  background: var(--pzrl-red);
}

.hero-chevron::before {
  left: 0;
  transform: skewY(4deg);
}

.hero-chevron::after {
  right: 0;
  transform: skewY(-4deg);
}

.hero-chevron:nth-child(1) { bottom: 15%; animation: chevronPulse 4s ease-in-out infinite; }
.hero-chevron:nth-child(2) { bottom: 22%; animation: chevronPulse 4s ease-in-out 0.5s infinite; }
.hero-chevron:nth-child(3) { bottom: 29%; animation: chevronPulse 4s ease-in-out 1s infinite; }

@keyframes chevronPulse {
  0%, 100% { opacity: 0.06; }
  50% { opacity: 0.14; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 32px;
  animation: logoFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--pzrl-white);
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .red {
  color: var(--pzrl-red-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--pzrl-red);
  color: var(--pzrl-white);
  box-shadow: 0 4px 20px rgba(226, 18, 59, 0.4);
}

.btn-primary:hover {
  background: var(--pzrl-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(226, 18, 59, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--pzrl-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--pzrl-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   CHEVRON DIVIDERS
   ============================================= */
.chevron-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  background: var(--pzrl-white);
}

.chevron-divider--cream {
  background: var(--pzrl-cream);
}

.chevron-divider-inner {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.chevron-stripe {
  width: 100%;
  height: 20px;
  position: relative;
}

.chevron-stripe::before,
.chevron-stripe::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50.5%;
  height: 100%;
}

.chevron-stripe::before {
  left: 0;
  background: var(--pzrl-red);
  transform: skewY(2deg);
  transform-origin: bottom right;
}

.chevron-stripe::after {
  right: 0;
  background: var(--pzrl-red);
  transform: skewY(-2deg);
  transform-origin: bottom left;
}

.chevron-stripe:nth-child(1) { opacity: 0.12; }
.chevron-stripe:nth-child(2) { opacity: 0.2; }
.chevron-stripe:nth-child(3) { opacity: 0.35; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
  padding: var(--section-padding);
  background: var(--pzrl-white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--pzrl-dark);
}

.about-text p {
  font-size: 1.05rem;
  color: var(--pzrl-gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text .highlight-bar {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: var(--pzrl-red);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* Value Cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--pzrl-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--pzrl-gray-light);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pzrl-red);
  transform: scaleX(0);
  transition: var(--transition-medium);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pzrl-cream);
  border-radius: var(--radius-md);
  color: var(--pzrl-red);
  transition: var(--transition-fast);
}

.value-card:hover .value-icon {
  background: var(--pzrl-red);
  color: var(--pzrl-white);
}

.value-icon svg {
  width: 28px;
  height: 28px;
}

.value-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--pzrl-dark);
}

.value-card p {
  font-size: 0.85rem;
  color: var(--pzrl-gray);
  line-height: 1.6;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--pzrl-gray-light);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--pzrl-red);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--pzrl-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =============================================
   SPORT SECTION
   ============================================= */
.sport {
  padding: var(--section-padding);
  background: var(--pzrl-cream);
  position: relative;
}

.sport-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sport-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.sport-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.sport-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(226, 18, 59, 0.1),
    transparent
  );
}

.sport-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--pzrl-dark);
}

.sport-info p {
  font-size: 1.05rem;
  color: var(--pzrl-gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.sport-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.sport-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--pzrl-white);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.sport-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.sport-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pzrl-red);
  color: var(--pzrl-white);
  border-radius: var(--radius-sm);
}

.sport-feature-icon svg {
  width: 20px;
  height: 20px;
}

.sport-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--pzrl-dark);
}

.sport-feature p {
  font-size: 0.85rem;
  color: var(--pzrl-gray);
  margin: 0;
  line-height: 1.5;
}

/* =============================================
   COMPETITIONS SECTION
   ============================================= */
.competitions {
  padding: var(--section-padding);
  background: var(--pzrl-dark);
  position: relative;
  overflow: hidden;
}

/* Background chevrons */
.competitions-bg-chevrons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-chevron {
  position: absolute;
  width: 300%;
  left: -100%;
  height: 80px;
  opacity: 0.04;
}

.bg-chevron::before,
.bg-chevron::after {
  content: '';
  position: absolute;
  width: 50.5%;
  height: 100%;
  background: var(--pzrl-red);
}

.bg-chevron::before {
  left: 0;
  transform: skewY(3deg);
}

.bg-chevron::after {
  right: 0;
  transform: skewY(-3deg);
}

.bg-chevron:nth-child(1) { top: 10%; }
.bg-chevron:nth-child(2) { top: 25%; }
.bg-chevron:nth-child(3) { top: 40%; }
.bg-chevron:nth-child(4) { bottom: 30%; }
.bg-chevron:nth-child(5) { bottom: 15%; }

.competitions .section-title {
  color: var(--pzrl-white);
}

.competitions .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.competitions .section-tag {
  background: rgba(226, 18, 59, 0.15);
  border-color: rgba(226, 18, 59, 0.3);
  color: var(--pzrl-red-light);
}

/* Carousel */
.carousel-wrapper {
  position: relative;
  margin-top: 16px;
}

.carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 16px 0 32px;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.competition-card {
  flex: 0 0 350px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-medium);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.competition-card:hover {
  transform: translateY(-8px);
  border-color: rgba(226, 18, 59, 0.4);
  box-shadow: 0 16px 40px rgba(226, 18, 59, 0.2);
}

.competition-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.competition-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.competition-card:hover .competition-card-image img {
  transform: scale(1.08);
}

.competition-card-image .card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--pzrl-red);
  color: var(--pzrl-white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
}

.competition-card-body {
  padding: 24px;
}

.competition-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--pzrl-red-light);
  font-weight: 600;
  margin-bottom: 12px;
}

.competition-card-date svg {
  width: 14px;
  height: 14px;
}

.competition-card-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--pzrl-white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.competition-card-body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pzrl-red-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.card-link:hover {
  gap: 10px;
  color: var(--pzrl-white);
}

.card-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--pzrl-white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--pzrl-red);
  border-color: var(--pzrl-red);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot.active {
  background: var(--pzrl-red);
  width: 28px;
  border-radius: 5px;
}

/* =============================================
   CHAMPIONSHIP SHOWCASE SECTION
   ============================================= */
.championship {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(
    160deg,
    var(--pzrl-dark) 0%,
    #1e1035 25%,
    #2a0a1a 50%,
    var(--pzrl-red-dark) 100%
  );
  overflow: hidden;
}

/* Animated Background Chevrons */
.championship-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.championship-chevrons-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.championship-chevron-bg {
  position: absolute;
  width: 300%;
  left: -100%;
  height: 100px;
  opacity: 0.05;
}

.championship-chevron-bg::before,
.championship-chevron-bg::after {
  content: '';
  position: absolute;
  width: 50.5%;
  height: 100%;
  background: var(--pzrl-white);
}

.championship-chevron-bg::before {
  left: 0;
  transform: skewY(3deg);
}

.championship-chevron-bg::after {
  right: 0;
  transform: skewY(-3deg);
}

.championship-chevron-bg:nth-child(1) { top: 5%; animation: chevronPulse 5s ease-in-out infinite; }
.championship-chevron-bg:nth-child(2) { top: 18%; animation: chevronPulse 5s ease-in-out 0.5s infinite; }
.championship-chevron-bg:nth-child(3) { top: 35%; animation: chevronPulse 5s ease-in-out 1s infinite; }
.championship-chevron-bg:nth-child(4) { bottom: 30%; animation: chevronPulse 5s ease-in-out 1.5s infinite; }
.championship-chevron-bg:nth-child(5) { bottom: 18%; animation: chevronPulse 5s ease-in-out 2s infinite; }
.championship-chevron-bg:nth-child(6) { bottom: 5%; animation: chevronPulse 5s ease-in-out 2.5s infinite; }

/* Header */
.championship-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.championship-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pzrl-red-light);
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(226, 18, 59, 0.15);
  border: 1px solid rgba(226, 18, 59, 0.3);
  border-radius: 100px;
  animation: badgePulse 3s ease-in-out infinite;
}

.championship-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(226, 18, 59, 0.2); }
  50% { box-shadow: 0 0 0 10px rgba(226, 18, 59, 0); }
}

.championship-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--pzrl-white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.championship-title span {
  background: linear-gradient(135deg, var(--pzrl-red-light), var(--pzrl-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.championship-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Info Cards Row */
.championship-info-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.championship-info-card {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-medium);
}

.championship-info-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(226, 18, 59, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(226, 18, 59, 0.15);
}

.championship-info-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(226, 18, 59, 0.15);
  border-radius: var(--radius-md);
  color: var(--pzrl-red-light);
  transition: var(--transition-fast);
}

.championship-info-card:hover .championship-info-icon {
  background: var(--pzrl-red);
  color: var(--pzrl-white);
}

.championship-info-icon svg {
  width: 22px;
  height: 22px;
}

.championship-info-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.championship-info-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pzrl-white);
}

/* Benefits Section */
.championship-benefits {
  position: relative;
  z-index: 2;
  margin-bottom: 64px;
}

.championship-benefits-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--pzrl-white);
  text-align: center;
  margin-bottom: 48px;
}

.championship-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.championship-benefit {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition-medium);
  position: relative;
}

.championship-benefit:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(226, 18, 59, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.championship-benefit-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(226, 18, 59, 0.2);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition-medium);
}

.championship-benefit:hover .championship-benefit-number {
  color: rgba(226, 18, 59, 0.5);
}

.championship-benefit h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pzrl-white);
  margin-bottom: 10px;
}

.championship-benefit p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* Championship CTA */
.championship-cta {
  position: relative;
  z-index: 2;
}

.championship-cta-inner {
  text-align: center;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.championship-cta-inner h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--pzrl-white);
  margin-bottom: 12px;
}

.championship-cta-inner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.championship-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.championship-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--pzrl-white);
}

.championship-cta .btn-outline:hover {
  border-color: var(--pzrl-white);
  background: rgba(255, 255, 255, 0.1);
}

/* Stagger animations for benefits */
.championship-benefits-grid .championship-benefit:nth-child(1) { transition-delay: 0.05s; }
.championship-benefits-grid .championship-benefit:nth-child(2) { transition-delay: 0.1s; }
.championship-benefits-grid .championship-benefit:nth-child(3) { transition-delay: 0.15s; }
.championship-benefits-grid .championship-benefit:nth-child(4) { transition-delay: 0.2s; }
.championship-benefits-grid .championship-benefit:nth-child(5) { transition-delay: 0.25s; }
.championship-benefits-grid .championship-benefit:nth-child(6) { transition-delay: 0.3s; }

/* =============================================
   NATIONAL TEAM SECTION
   ============================================= */
.national-team {
  padding: var(--section-padding);
  background: var(--pzrl-white);
  position: relative;
}

.nt-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

/* Left: Story */
.nt-story {
  position: relative;
  padding-left: 28px;
}

.nt-story-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--pzrl-red), var(--pzrl-red-light), transparent);
  border-radius: 2px;
}

.nt-story h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pzrl-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.nt-story > p {
  font-size: 1.05rem;
  color: var(--pzrl-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Highlights (within story) */
.nt-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.nt-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--pzrl-cream);
  border-radius: var(--radius-md);
  border: 1px solid rgba(226, 18, 59, 0.08);
  transition: var(--transition-fast);
}

.nt-highlight:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(226, 18, 59, 0.15);
}

.nt-highlight-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pzrl-red);
  color: var(--pzrl-white);
  border-radius: var(--radius-sm);
}

.nt-highlight-icon svg {
  width: 20px;
  height: 20px;
}

.nt-highlight h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pzrl-dark);
  margin-bottom: 4px;
}

.nt-highlight p {
  font-size: 0.85rem;
  color: var(--pzrl-gray);
  line-height: 1.5;
}

/* Right: Timeline */
.nt-timeline {
  position: relative;
  padding-left: 32px;
}

.nt-timeline-line {
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--pzrl-red), var(--pzrl-gray-light));
  border-radius: 1px;
}

.nt-milestone {
  position: relative;
  padding-bottom: 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.nt-milestone:last-child {
  padding-bottom: 0;
}

.nt-milestone-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--pzrl-white);
  border: 3px solid var(--pzrl-red);
  border-radius: 50%;
  z-index: 2;
  transition: var(--transition-fast);
}

.nt-milestone:hover .nt-milestone-dot {
  background: var(--pzrl-red);
  box-shadow: 0 0 0 6px rgba(226, 18, 59, 0.15);
}

.nt-milestone-content {
  flex: 1;
}

.nt-milestone-step {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pzrl-red);
  padding: 3px 10px;
  background: var(--pzrl-cream);
  border-radius: 100px;
  border: 1px solid rgba(226, 18, 59, 0.15);
  margin-bottom: 10px;
}

.nt-milestone-content h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pzrl-dark);
  margin-bottom: 8px;
}

.nt-milestone-content p {
  font-size: 0.9rem;
  color: var(--pzrl-gray);
  line-height: 1.6;
}

/* Player CTA Banner */
.nt-player-cta {
  margin-top: 16px;
}

.nt-player-cta-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 40px;
  background: linear-gradient(135deg, var(--pzrl-dark), var(--pzrl-dark-alt));
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.nt-player-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(226, 18, 59, 0.15));
  pointer-events: none;
}

.nt-player-cta-flag {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(226, 18, 59, 0.15);
  border-radius: var(--radius-md);
  color: var(--pzrl-red-light);
  position: relative;
  z-index: 2;
}

.nt-player-cta-flag svg {
  width: 28px;
  height: 28px;
}

.nt-player-cta-text {
  flex: 1;
  position: relative;
  z-index: 2;
}

.nt-player-cta-text h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--pzrl-white);
  margin-bottom: 6px;
}

.nt-player-cta-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.nt-player-cta .btn {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta {
  padding: var(--section-padding);
  background: var(--pzrl-white);
  position: relative;
  overflow: hidden;
}

.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--pzrl-red), var(--pzrl-red-dark));
  border-radius: var(--radius-xl);
  padding: 64px;
  overflow: hidden;
  text-align: center;
}

/* CTA chevrons */
.cta-chevrons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-chevron {
  position: absolute;
  width: 200%;
  left: -50%;
  height: 40px;
}

.cta-chevron::before,
.cta-chevron::after {
  content: '';
  position: absolute;
  width: 51%;
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-chevron::before {
  left: 0;
  transform: skewY(3deg);
}

.cta-chevron::after {
  right: 0;
  transform: skewY(-3deg);
}

.cta-chevron:nth-child(1) { bottom: 20px; }
.cta-chevron:nth-child(2) { bottom: 55px; }
.cta-chevron:nth-child(3) { bottom: 90px; }
.cta-chevron:nth-child(4) { top: 20px; }
.cta-chevron:nth-child(5) { top: 55px; }

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--pzrl-white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--pzrl-white);
  color: var(--pzrl-red);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-outline-white {
  background: transparent;
  color: var(--pzrl-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  border-color: var(--pzrl-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* =============================================
   PARTNERS & SPONSORS SECTION
   ============================================= */
.partners {
  padding: var(--section-padding);
  background: var(--pzrl-cream);
  position: relative;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  background: var(--pzrl-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--pzrl-gray-light);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  min-height: 160px;
}

.partner-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pzrl-red), var(--pzrl-red-light));
  transform: scaleX(0);
  transition: var(--transition-medium);
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.partner-card:hover::before {
  transform: scaleX(1);
}

.partner-card-logo {
  width: 100%;
  max-width: 160px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition-medium);
}

.partner-card:hover .partner-card-logo {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-card-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pzrl-dark);
  margin-top: 16px;
  text-align: center;
  transition: var(--transition-fast);
}

.partner-card:hover .partner-card-name {
  color: var(--pzrl-red);
}

.partner-card-tier {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pzrl-gray);
  margin-top: 8px;
  padding: 3px 10px;
  background: var(--pzrl-off-white);
  border-radius: 100px;
  border: 1px solid var(--pzrl-gray-light);
}

.partner-card-tier--gold {
  color: var(--pzrl-gold);
  background: rgba(212, 168, 67, 0.08);
  border-color: rgba(212, 168, 67, 0.25);
}

.partner-card-tier--silver {
  color: #8E8E93;
  background: rgba(142, 142, 147, 0.08);
  border-color: rgba(142, 142, 147, 0.25);
}

/* Partners CTA */
.partners-cta {
  text-align: center;
  margin-top: 16px;
}

.partners-cta p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pzrl-dark);
  margin-bottom: 20px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--pzrl-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  height: 48px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--pzrl-red);
  color: var(--pzrl-white);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pzrl-white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--pzrl-red-light);
  transform: translateX(4px);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}

.footer-portal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(226, 18, 59, 0.1);
  border-radius: 100px;
  color: var(--pzrl-red-light);
  font-size: 0.75rem;
  font-weight: 600;
}

.portal-dot {
  width: 6px;
  height: 6px;
  background: var(--pzrl-red);
  border-radius: 50%;
  animation: portalPulse 2s ease-in-out infinite;
}

@keyframes portalPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sport-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sport-image-wrapper {
    order: -1;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .competition-card {
    flex: 0 0 300px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .championship {
    padding: 80px 0;
  }

  .championship-info-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .championship-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nt-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--pzrl-dark);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 24px;
    transition: var(--transition-medium);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
  }

  .hero-logo {
    width: 80px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .competition-card {
    flex: 0 0 280px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .partner-card {
    padding: 24px 16px;
    min-height: 140px;
  }

  .championship {
    padding: 64px 0;
  }

  .championship-info-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .championship-benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .championship-benefit {
    padding: 24px 20px;
  }

  .championship-cta-inner {
    padding: 32px 20px;
  }

  .championship-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .nt-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nt-story {
    padding-left: 20px;
  }

  .nt-story h3 {
    font-size: 1.4rem;
  }

  .nt-player-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }

  .nt-player-cta-text p {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* =============================================
   MOBILE NAV OVERLAY
   ============================================= */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-medium);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* =============================================
   PARTNERS SECTION CLASSES (Extracted from inline)
   ============================================= */
.partners-tier-title {
  text-align: center;
  margin-bottom: 24px;
  color: var(--pzrl-gray);
  font-size: 1.25rem;
}
.partners-tier-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.partner-logo-card {
  width: 250px;
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.2s ease;
}
.partner-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.partner-logo-img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}
.partner-logo-name {
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.9rem;
}
.club-placeholder-card {
  width: 120px;
  height: 120px;
  background: #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
}
.club-placeholder-text {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: bold;
}
.sponsors-cta-banner {
  background: url('assets/sponsors.png') center/cover no-repeat;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  padding: 64px 24px;
}
.sponsors-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 28, 54, 0.85);
}
.sponsors-cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  color: white;
}
.sponsors-cta-title {
  font-size: 2rem;
  margin-bottom: 16px;
}
p.sponsors-cta-subtitle {
  font-size: 1.15rem;
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  margin-bottom: 32px;
}
.sponsors-cta-btn {
  font-size: 1.1rem;
  padding: 16px 32px;
}
.sponsors-cta-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* =============================================
   ABOUT PAGE CLASSES (Extracted from inline)
   ============================================= */
.about-stats-gray-box {
  background: var(--pzrl-gray-light);
  padding: 32px;
  border-radius: 8px;
  max-width: 600px;
}
.about-stats-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat-label {
  font-size: 0.85rem;
  color: var(--pzrl-gray);
  text-transform: uppercase;
}
.about-stat-number {
  font-weight: 700;
  font-size: 1.25rem;
}

/* =============================================
   CUSTOM TRANSLATION WIDGET
   ============================================= */
.custom-lang-switcher {
  display: flex;
  align-items: center;
  margin-left: 16px;
  font-family: var(--font-heading);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
}

.lang-btn:hover, .lang-btn.active {
  color: #ffffff;
}

.lang-sep {
  color: rgba(255,255,255,0.3);
  margin: 0 8px;
}

/* Kiedy nawigacja zjeżdża w dół na białe tło (klasa SCROLLED) */
.scrolled .lang-btn {
  color: rgba(14,28,54,0.6);
}

.scrolled .lang-btn:hover, .scrolled .lang-btn.active {
  color: var(--pzrl-red);
}

.scrolled .lang-sep {
  color: rgba(14,28,54,0.2);
}

/* CAŁKOWITE Ukrycie paska błędu/skoku i natywnego widżetu Google Translate */
body {
  top: 0 !important;
}

.skiptranslate iframe.goog-te-banner-frame {
  display: none !important;
}

#google_translate_element {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
