* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #0d1b2a;
            color: #e0e1dd;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Slider tla */
        .slider {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
        }
        
        .slides {
            width: 400%;
            height: 100%;
            display: flex;
            animation: slide 20s infinite;
        }
        
        .slide {
            width: 25%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }
        
        .slide:nth-child(1) {
            background-image: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.7)), 
                             url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        }
        
        .slide:nth-child(2) {
            background-image: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.7)), 
                             url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        }
        
        .slide:nth-child(3) {
            background-image: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.7)), 
                             url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        }
        
        .slide:nth-child(4) {
            background-image: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.7)), 
                             url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        }
        
        @keyframes slide {
            0% { transform: translateX(0); }
            20% { transform: translateX(0); }
            25% { transform: translateX(-25%); }
            45% { transform: translateX(-25%); }
            50% { transform: translateX(-50%); }
            70% { transform: translateX(-50%); }
            75% { transform: translateX(-75%); }
            95% { transform: translateX(-75%); }
            100% { transform: translateX(0); }
        }
        
        header {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            position: relative;
        }
        
        .logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.5rem;
            background: rgba(13, 27, 42, 0.8);
            border-radius: 20px;
            box-shadow: 0 0 20px rgba(252, 163, 17, 0.5);
            animation: pulse 3s infinite;
            z-index: 1;
        }
                        
        h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: #ff6b6b;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .tagline {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: #fca311;
        }
        
        .server-ip {
            background-color: rgba(26, 83, 92, 0.8);
            padding: 15px 30px;
            border-radius: 5px;
            font-size: 1.2rem;
            margin-bottom: 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid #415a77;
        }
        
        .server-ip:hover {
            background-color: rgba(38, 112, 124, 0.8);
            transform: scale(1.05);
        }
        
        .btn {
            display: inline-block;
            background-color: #415a77;
            color: white;
            width: 12rem;
            padding: 12px 24px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            margin: 5px;
        }
        
        .btn:hover {
            background-color: #778da9;
            transform: translateY(-3px);
        }
        
        section {
            padding: 80px 20px;
            background-color: rgba(13, 27, 42, 0.9);
            position: relative;
            z-index: 1;
        }
        
        .container-1 {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #fca311;
        }

        h4 {
            text-align: center;
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: #fca311;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .feature {
            background-color: #1b263b;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease;
            border: 2px solid #415a77;
        }

        .statistics-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
            gap: 15px;
            margin-top: 40px;
        }

        .statistic {
            background-color: #1b263b;
            border: 2px solid #415a77;
            padding: 10px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .feature:hover {
            transform: translateY(-10px);
        }
        
        .feature i {
            font-size: 3rem;
            color: #ff6b6b;
            margin-bottom: 20px;
        }
        
        .feature h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #fca311;
        }
        
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        
        .gallery img:hover {
            transform: scale(1.05);
        }
        
        .rules {
            background-color: #1b263b;
            padding: 40px;
            border-radius: 10px;
            margin-top: 40px;
            border: 2px solid #415a77;
        }
        
        .rules ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .rules li {
            margin-bottom: 10px;
        }
        
        .staff {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .staff-member {
            background-color: #1b263b;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }
        
        .staff-member img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
        }
        
        footer {
            background-color: #0d1b2a;
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid #415a77;
            position: relative;
            z-index: 1;
        }
        
        .social-links {
            margin-bottom: 20px;
        }
        
        .social-links a {
            display: inline-block;
            margin: 0 10px;
            color: #e0e1dd;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }
        
        .social-links a:hover {
            color: #fca311;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 20px rgba(252, 163, 17, 0.5); }
            50% { box-shadow: 0 0 30px rgba(252, 163, 17, 0.8); }
            100% { box-shadow: 0 0 20px rgba(252, 163, 17, 0.5); }
        }
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            .tagline {
                font-size: 1.2rem;
            }
            
            .logo {
                padding: 20px;
            }
            
            .logo-image {
                width: 120px;
                height: 120px;
            }
            
            .logo-image i {
                font-size: 50px;
            }
        }



.container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.container-video {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #415a77;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.server-info, .players-list {
  background: rgba(0, 0, 0, 0.2);
  border: 2px solid #415a77;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

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

.players-list li {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #415a77;
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
}

/* -------------- Tabela z graczami -------------- */
.players-list table {
    width: 100%;
    max-width: 800px;               /* dopasuj do szerokości kontenera, jeśli chcesz */
    margin: 20px auto 0;            /* wyśrodkuj tabelę */
    border-collapse: collapse;
    background: rgba(0,0,0,0.2);    /* lekko przezroczyste tło */
    border: 2px solid #415a77;
    border-radius: 10px;
    overflow: hidden;               /* aby rogi były zaokrąglone także wewnątrz */
}

.players-list th,
.players-list td {
    padding: 12px 15px;
    text-align: center;
    font-size: 1rem;
    border-bottom: 1px solid #415a77;
}

.players-list th {
    background: #1b263b;
    color: #fca311;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.players-list td {
    color: #e0e1dd;
}

/* ostatni wiersz – brak dolnej linii */
.players-list tbody tr:last-child td {
    border-bottom: none;
}

/* hover‑effect – opcjonalnie */
.players-list tbody tr:hover {
    background: rgba(255,255,255,0.05);
}

