body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    scroll-behavior: smooth;
}

header {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 48px;
    font-weight: 700;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bg.png') center/cover;
    background-attachment: fixed;
    filter: blur(10px);
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.header-content {
    position: relative;
    top: 50px;
    z-index: 1;
}

.header-text {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 80px;
    margin-bottom: -20px;
    transition: opacity 1s ease-in-out;
}

.header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    transition: top 0.3s, transform 0.3s, max-width 0.3s;
    z-index: 10;
}

.logo {
    max-width: 700px;
    height: auto;
    padding-top: 20px;
    transition: max-width 0.3s, transform 0.3s;
}

.header-logo.fixed {
    position: fixed;
    top: 0;
    transform: translateX(-50%) scale(0.8);
    z-index: 10;
}

.header-logo.fixed .logo {
    max-width: 250px;
}

.header.scrolled .header-text {
    opacity: 0;
}

.arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.arrow:hover {
    opacity: 0.7;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    justify-content: center;
    flex-grow: 1;
}

.panel {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.panel:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.server-panel {
    background: linear-gradient(135deg, #34a853, #127c44);
    color: white;
}

.server-info {
    background-image: url('images/bg1.png');
    background-size: cover;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.server-info2 {
    background-image: url('images/bg2.png');
    background-size: cover;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.server-name {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.left-side {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
    margin-top: 20px;
}

.left-side p {
    margin: 0;
}

.server-ip {
    font-size: 14px;
    color: #ffcc00;
    font-weight: bold;
    position: absolute;
    bottom: 0px;
    right: 10px;
}

.server-ver {
    font-size: 14px;
    color: #ffcc00;
    font-weight: bold;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

.separator {
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    margin: 10px 0;
}

.connect-btn, .discord-invite {
    background-color: #ffcc00;
    color: black;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
}

.discord-invite {
    background-color: #7289da;
    color: white;
}

.info-panel {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    margin-top: auto;
}

@media (max-width: 768px) {
    .header-logo .logo {
        max-width: 350px;
    }
    .header-bg {
        background-attachment: scroll; /* Tło tła na urządzeniach mobilnych */
    }
}

.features-list {
    text-align: left;  /* Wyrównanie tekstu do lewej */
    margin-top: 10px;
}

.features-list p {
    margin: 5px 0;  /* Odstęp między punktami */
    padding-left: 20px;  /* Przesunięcie tekstu w lewo dla lepszej czytelności */
}

.feature-icon {
    margin-right: 10px;  /* Odstęp między emoji a tekstem */
}