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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  min-height: 100vh;
}

header {
  background: linear-gradient(135deg, #00d455 0%, #00a844 100%);
  padding: 20px;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 212, 85, 0.3);
  position: relative;
}

nav {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  sticky: top;
  z-index: 50;
}

nav a {
  color: #00d455;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
}

nav a:hover {
  background: linear-gradient(135deg, #00d455 0%, #00a844 100%);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 85, 0.4);
}

nav a.active {
  background: linear-gradient(135deg, #00d455 0%, #00a844 100%);
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 212, 85, 0.4);
}

nav a.active::before {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: #000;
  border-radius: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  padding-bottom: 100px;
}

.section {
  background: linear-gradient(135deg, #1e1e1e 0%, #252525 100%);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 212, 85, 0.1);
  transition: all 0.3s ease;
}

.section:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 212, 85, 0.2);
  border-color: rgba(0, 212, 85, 0.3);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: #00d455;
  font-size: 18px;   /* 👈 NORMALNY ROZMIAR */
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(0, 212, 85, 0.3);
}

p, li {
  line-height: 1.8;
  color: #ddd;
}

ul {
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 10px;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 10px;
  min-width: 700px;
  border-radius: 10px;
  overflow: hidden;
}

table thead th {
  background: linear-gradient(135deg, #222 0%, #2a2a2a 100%);
  padding: 15px 12px;
  text-align: center;
  border-bottom: 2px solid #00d455;
  color: #00d455;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

table tbody td {
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
}

table tbody tr {
  transition: all 0.2s ease;
}

table tbody tr:hover {
  background: rgba(0, 212, 85, 0.05);
  transform: scale(1.01);
}

.pos1, .pos2, .pos3 {
  background: rgba(14, 234, 255, 0.15);
}

.pos4 {
  background: rgba(255, 140, 0, 0.15);
}

.pos5 {
  background: rgba(207, 181, 59, 0.15);
}

.mid {
  background: rgba(0, 0, 0, 0.3);
}

.danger_u {
  background: rgba(233, 107, 57, 0.15);
}

.danger {
  background: rgba(139, 0, 0, 0.2);
}

.live {
  background: rgba(102, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.finished {
  background: rgba(0, 102, 0, 0.2);
}

.scheduled {
  background: rgba(102, 102, 0, 0.2);
}

.no-info {
  background: rgba(51, 0, 0, 0.3);
  color: #ff6666;
}

.cancelled {
  background: rgba(139, 0, 0, 0.3);
}

.form {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.win {
  background: linear-gradient(135deg, #00ff44 0%, #00cc33 100%);
}

.draw {
  background: linear-gradient(135deg, #bbb 0%, #999 100%);
}

.lose {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.legend {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.socials {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  border: 2px solid #00d455;
  border-radius: 15px;
  padding: 20px 25px;
  min-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-box:hover {
  background: linear-gradient(135deg, #00d455 0%, #00a844 100%);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 212, 85, 0.4);
}

.social-box:hover a {
  color: #000;
}

.social-box a {
  color: #00d455;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.flex-columns {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.column {
  flex: 1;
  background: linear-gradient(135deg, #1e1e1e 0%, #252525 100%);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 212, 85, 0.1);
  transition: all 0.3s ease;
}

.column:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 85, 0.3);
  box-shadow: 0 10px 30px rgba(0, 212, 85, 0.15);
}

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

.column ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  padding-left: 10px;
}

.column ul li:hover {
  padding-left: 15px;
  color: #00d455;
  border-left: 3px solid #00d455;
}

.column ul li:last-child {
  border-bottom: none;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: #00d455;
  text-align: center;
  padding: 15px;
  z-index: 100;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 212, 85, 0.2);
}

@media (max-width: 768px) {
  .flex-columns {
    flex-direction: column;
  }

  nav {
    justify-content: center;
    gap: 8px;
  }

  nav a {
    padding: 8px 12px;
    font-size: 14px;
  }

  header {
    font-size: 22px;
    padding: 15px;
  }

  table {
    font-size: 14px;
    min-width: 600px;
  }

  table thead th,
  table tbody td {
    padding: 10px 8px;
  }

  .section {
    padding: 10px;
  }

  .container {
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  table {
    font-size: 12px;
  }

  table thead th,
  table tbody td {
    padding: 8px 6px;
  }

  nav a {
    padding: 6px 10px;
    font-size: 13px;
  }

  .social-box {
    min-width: 180px;
    padding: 15px 20px;
  }
}

img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

a {
  transition: all 0.3s ease;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #00d455 0%, #00a844 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #00ff66 0%, #00cc55 100%);
}
.site-header {
  width: 100%;
  display: flex;
  justify-content: center;  /* środek strony */
}

.header-center {
  display: flex;
  align-items: center;      /* środek w pionie */
  gap: 8px;
}

.logo {
  height: 28px;   /* 👈 MNIEJSZE LOGO */
  width: auto;
}

.title {
  font-size: 18px;
  line-height: 1;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.h2-logo {
  height: 26px;          /* jednakowy rozmiar logo */
  width: auto;
  display: block;
}
table {
  border-collapse: collapse;
}

table tbody tr {
  height: 52px;
}

table tbody td {
  vertical-align: middle;
  padding: 12px;
  line-height: 1.2;
}

table tbody tr:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
table td {
  border: none !important;
}
.image-news {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 30px auto;
  border-radius: 14px;
  overflow: hidden;
}

.image-news img {
  width: 100%;
  display: block;
  filter: brightness(0.75);
}

.image-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
  text-shadow: 0 3px 10px rgba(0,0,0,0.9);
}
/* ==== ARTYKUŁ – OBRAZEK Z TYTUŁEM ==== */

.article-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}

.article-img {
  width: 100%;
  display: block;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.image-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 20px;

  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.2)
  );

  z-index: 5;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}
/* ==== MNIEJSZE ZDJĘCIE ARTYKUŁU ==== */

.article-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
  max-height: 220px;          /* 👈 TUTAJ ZMNIEJSZENIE */
}

.article-img {
  width: 100%;
  height: 220px;              /* 👈 MUSI PASOWAĆ */
  object-fit: cover;          /* 👈 ŁADNE PRZYCINANIE */
  display: block;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.image-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px 18px;

  font-size: 18px;            /* 👈 MNIEJSZY TYTUŁ */
  font-weight: 800;
  color: #fff;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.2)
  );

  z-index: 5;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}
/* ==== GRID ARTYKUŁÓW ==== */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* KARTA ARTYKUŁU */
.article-card {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #1e1e1e, #252525);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 212, 85, 0.15);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 212, 85, 0.3);
  border-color: rgba(0, 212, 85, 0.4);
}

/* OBRAZEK */
.article-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TYTUŁ NA ZDJĘCIU */
.image-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  font-weight: 800;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.15)
  );
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

/* OPIS */
.article-card p {
  padding: 15px;
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 900px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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



