/* =====================================================
   OVERLIVE — Post-Apocalyptic Survival Horror Theme
   ===================================================== */

/* --- CSS Custom Properties --- */
:root {
  --clr-green: #2d5016;
  --clr-green-light: #4a7a25;
  --clr-green-glow: #3d7a1c;
  --clr-brown: #8b4513;
  --clr-brown-light: #a0622d;
  --clr-gray: #3a3a3a;
  --clr-gray-light: #5a5a5a;
  --clr-yellow: #d4c478;
  --clr-yellow-dim: #b3a45e;
  --clr-bg: #111111;
  --clr-bg-card: #1a1a1a;
  --clr-bg-elevated: #1e1e1e;
  --clr-text: #c9c9c9;
  --clr-text-muted: #888888;
  --clr-white: #e8e8e8;
  --clr-danger: #8b1a1a;
  --ff-heading: 'Creepster', cursive;
  --ff-body: 'Source Sans 3', sans-serif;
  --container-max: 1140px;
  --radius: 6px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--ff-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: var(--clr-gray);
  border-radius: 5px;
  border: 2px solid #0a0a0a;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-green);
}

/* Firefox */
html {
  scrollbar-color: var(--clr-gray) #0a0a0a;
  scrollbar-width: thin;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  color: var(--clr-yellow);
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

a {
  color: var(--clr-green-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--clr-yellow);
}

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

ul, ol {
  list-style: none;
}

/* --- Section Spacing --- */
section {
  padding: 60px 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: clamp(1.1rem, 4.5vw, 2rem);
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--clr-green);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* --- Grunge Decorative Elements --- */
.grunge-spot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,80,22,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

section:not(.hero)::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--clr-brown) 0px,
    var(--clr-brown) 8px,
    transparent 8px,
    transparent 16px,
    var(--clr-gray) 16px,
    var(--clr-gray) 24px,
    transparent 24px,
    transparent 32px
  );
  opacity: 0.3;
}

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

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

/* =====================================================
   HEADER / NAVIGATION
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(45, 80, 22, 0.3);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  color: var(--clr-green-light);
  letter-spacing: 3px;
  text-decoration: none;
  position: relative;
}

.logo span {
  color: var(--clr-yellow);
}

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

.nav-links a {
  font-size: 0.95rem;
  color: var(--clr-text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-green-light);
  transition: width var(--transition);
}

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

.nav-links a:hover {
  color: var(--clr-green-light);
}

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

.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--clr-yellow);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 20px 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('images/hero-ruins.webp') center/cover no-repeat;
  filter: brightness(0.25) saturate(0.5);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center bottom, rgba(45, 80, 22, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at left top, rgba(139, 69, 19, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, rgba(17,17,17,0.4) 0%, rgba(17,17,17,0.9) 100%);
  z-index: 1;
}

/* Green fog effect */
.hero-fog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(45, 80, 22, 0.12), transparent);
  z-index: 2;
  animation: fogPulse 6s ease-in-out infinite;
}

@keyframes fogPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: 5rem;
  color: var(--clr-yellow);
  letter-spacing: 12px;
  margin-bottom: 20px;
  text-shadow:
    0 0 30px rgba(45, 80, 22, 0.6),
    0 0 60px rgba(45, 80, 22, 0.3),
    3px 3px 0 var(--clr-bg);
  display: inline-block;
}

/* Broken text effect */
.hero-title span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.hero-title span:nth-child(2) {
  transform: translateY(3px) rotate(-2deg);
  color: var(--clr-green-light);
}

.hero-title span:nth-child(4) {
  transform: translateY(-4px) rotate(3deg);
}

.hero-title span:nth-child(6) {
  transform: translateX(3px) rotate(-1deg);
  color: var(--clr-brown-light);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--clr-text);
  margin-bottom: 1.2rem;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1.8;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.hero-description {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

/* Dog Tag CTA */
.cta-dogtag {
  display: inline-block;
  background: linear-gradient(145deg, #5a5a5a, #3a3a3a);
  color: var(--clr-white);
  padding: 16px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  position: relative;
  border: 2px solid var(--clr-gray-light);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 4px 15px rgba(0,0,0,0.5);
  transition: all var(--transition);
  animation: pulseCta 3s ease-in-out infinite;
}

.cta-dogtag::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--clr-gray-light);
  background: var(--clr-gray);
}

.cta-dogtag::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 10px;
  background: var(--clr-gray-light);
}

.cta-dogtag:hover {
  background: linear-gradient(145deg, var(--clr-green), #1a3a0a);
  border-color: var(--clr-green-light);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    0 6px 25px rgba(45, 80, 22, 0.4);
}

@keyframes pulseCta {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 15px rgba(0,0,0,0.5); }
  50% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 25px rgba(45,80,22,0.4); }
}

.hero-downloads {
  display: block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  letter-spacing: 1px;
}

/* =====================================================
   HISTORIA (Story) SECTION
   ===================================================== */
.story-section {
  background: var(--clr-bg);
}

.diary-entry {
  font-style: italic;
  color: var(--clr-yellow-dim);
  font-size: 1.1rem;
  line-height: 1.9;
  padding: 30px;
  border-left: 3px solid var(--clr-brown);
  background: rgba(139, 69, 19, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 30px;
  position: relative;
}

.diary-entry::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 4rem;
  color: var(--clr-brown);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.story-text p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: var(--clr-text);
}

.story-text strong {
  color: var(--clr-yellow);
}

/* =====================================================
   ZIGZAG SECTION (Dlaczego warto grac)
   ===================================================== */
.zigzag-section {
  background: var(--clr-bg);
}

.zigzag-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.zigzag-text h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: var(--clr-yellow);
}

.zigzag-text p {
  font-size: 1.05rem;
  color: var(--clr-text);
  line-height: 1.8;
}

.zigzag-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(45, 80, 22, 0.2);
}

.zigzag-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
  transition: filter var(--transition), transform 0.5s ease;
}

.zigzag-img:hover img {
  filter: brightness(0.85) saturate(1);
  transform: scale(1.03);
}

.zigzag-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.15), transparent);
  pointer-events: none;
}

/* =====================================================
   REVIEWS SECTION
   ===================================================== */
.reviews-section {
  background: rgba(26, 26, 26, 0.5);
}

.reviews-wrapper {
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 20px;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--clr-bg-card);
  border: 1px solid rgba(45, 80, 22, 0.2);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

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

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-green), var(--clr-brown));
  border-radius: var(--radius) var(--radius) 0 0;
}

.review-stars {
  color: var(--clr-yellow);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  color: var(--clr-text);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.review-author {
  font-weight: 700;
  color: var(--clr-green-light);
  font-size: 0.9rem;
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.reviews-nav button {
  background: var(--clr-gray);
  border: 1px solid var(--clr-gray-light);
  color: var(--clr-yellow);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-nav button:hover {
  background: var(--clr-green);
  border-color: var(--clr-green-light);
}

/* =====================================================
   GUIDE SECTION (Poradnik)
   ===================================================== */
.guide-section {
  background: var(--clr-bg);
}

.tips-list {
  max-width: 800px;
  margin: 0 auto 40px;
  counter-reset: tip-counter;
}

.tip-item {
  counter-increment: tip-counter;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  margin-bottom: 16px;
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  border-left: 3px solid var(--clr-green);
  transition: border-color var(--transition), background var(--transition);
}

.tip-item:hover {
  border-left-color: var(--clr-yellow);
  background: var(--clr-bg-elevated);
}

.tip-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--clr-green);
  color: var(--clr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--ff-heading);
}

.tip-text {
  font-size: 1.05rem;
  color: var(--clr-text);
  line-height: 1.6;
  padding-top: 6px;
}

.guide-cta {
  text-align: center;
}

/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
  background: linear-gradient(180deg, rgba(45,80,22,0.08), var(--clr-bg));
  text-align: center;
}

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

.stat-item {
  padding: 30px 15px;
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 80, 22, 0.2);
  transition: transform var(--transition), border-color var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: var(--clr-green);
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  color: var(--clr-green-light);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(45, 80, 22, 0.2);
  padding: 40px 0 20px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-links a {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--clr-green-light);
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--clr-gray-light);
}

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-gray);
  color: var(--clr-text);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--clr-green);
  color: var(--clr-white);
}

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

/* =====================================================
   GDPR COOKIE BANNER
   ===================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.97);
  border-top: 2px solid var(--clr-green);
  padding: 20px;
  transform: translateY(0);
  transition: transform 0.5s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cookie-banner.hidden {
  transform: translateY(110%);
}

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--clr-text);
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-accept {
  background: var(--clr-green);
  color: var(--clr-white);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background var(--transition);
}

.cookie-accept:hover {
  background: var(--clr-green-light);
}

.cookie-link {
  font-size: 0.85rem;
  color: var(--clr-green-light);
}

/* =====================================================
   LEGAL PAGES (Privacy, Terms, GDPR)
   ===================================================== */
.legal-page {
  padding-top: 100px;
  padding-bottom: 60px;
  min-height: 100vh;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.legal-page .legal-date {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  margin-bottom: 30px;
  display: block;
}

.legal-page h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--clr-green-light);
}

.legal-page h3 {
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--clr-yellow-dim);
}

.legal-page p {
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-page ul,
.legal-page ol {
  margin-bottom: 14px;
  padding-left: 24px;
}

.legal-page ul {
  list-style: disc;
}

.legal-page ol {
  list-style: decimal;
}

.legal-page li {
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.7;
}

.legal-page a {
  color: var(--clr-green-light);
  text-decoration: underline;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-page {
  padding-top: 100px;
  padding-bottom: 60px;
  min-height: 100vh;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.contact-detail svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: var(--clr-green-light);
  margin-top: 3px;
}

.contact-detail span,
.contact-detail a {
  font-size: 1rem;
  color: var(--clr-text);
}

.contact-hours {
  margin-top: 20px;
  padding: 16px;
  background: var(--clr-bg-card);
  border-radius: var(--radius);
  border-left: 3px solid var(--clr-green);
}

.contact-hours h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-hours p {
  color: var(--clr-text);
  font-size: 0.95rem;
}

.map-placeholder {
  width: 100%;
  height: 200px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-gray);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(45,80,22,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,80,22,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* Contact Form */
.contact-form h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--clr-yellow-dim);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-gray);
  border-radius: var(--radius);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-green);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.2);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-submit {
  background: var(--clr-green);
  color: var(--clr-white);
  border: none;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-submit:hover {
  background: var(--clr-green-light);
  transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE: 480px+
   ===================================================== */
@media (min-width: 480px) {
  .hero-title {
    font-size: 5.5rem;
  }

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

  .cookie-inner {
    flex-direction: row;
    text-align: left;
  }

  .cookie-text {
    flex: 1;
  }
}

/* =====================================================
   RESPONSIVE: 768px+
   ===================================================== */
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.4rem; }

  .section-title {
    font-size: 2.4rem;
  }

  .hero-title {
    font-size: 6rem;
    letter-spacing: 16px;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .zigzag-item {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .zigzag-item:nth-child(even) .zigzag-text {
    order: 2;
  }

  .zigzag-item:nth-child(even) .zigzag-img {
    order: 1;
  }

  .zigzag-img img {
    height: 320px;
  }

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

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

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

  .review-card {
    flex: 0 0 320px;
  }
}

/* =====================================================
   RESPONSIVE: 1024px+
   ===================================================== */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 7rem;
    letter-spacing: 20px;
  }

  .zigzag-item {
    gap: 60px;
  }

  .zigzag-img img {
    height: 360px;
  }
}

/* --- Mobile Nav --- */
@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(17, 17, 17, 0.98);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(45, 80, 22, 0.3);
  }

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

  .nav-links a {
    font-size: 1.1rem;
  }
}

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

/* =====================================================
   GALLERY SECTION (Zrzuty z gry)
   ===================================================== */
.gallery-section {
  background: var(--clr-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid var(--clr-brown);
  position: relative;
  transition: transform 0.3s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.5));
  pointer-events: none;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.8);
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Evidence Strip - Screenshots */
.evidence-section {
  padding: 4rem 0;
  background: #0a0a0a;
}
.evidence-strip {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0 2rem;
  scrollbar-width: thin;
  scrollbar-color: #b71c1c rgba(255,255,255,0.05);
}
.evidence-strip::-webkit-scrollbar {
  height: 6px;
}
.evidence-strip::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
}
.evidence-strip::-webkit-scrollbar-thumb {
  background: #b71c1c;
  border-radius: 3px;
}
.evidence-strip__inner {
  display: flex;
  gap: 1.2rem;
  min-width: max-content;
  padding: 0.5rem;
}
.evidence-frame {
  flex: 0 0 auto;
  width: 200px;
  text-align: center;
  position: relative;
}
.evidence-frame img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid rgba(183,28,28,0.5);
  border-radius: 4px;
  filter: brightness(0.85) contrast(1.1);
  transition: filter 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.evidence-frame:hover img {
  filter: brightness(1) contrast(1);
  transform: scale(1.05);
  border-color: #b71c1c;
}
.evidence-label {
  display: block;
  margin-top: 0.5rem;
  font-family: 'Source Sans 3', monospace;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .evidence-frame {
    width: 240px;
  }
}
