body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: url('/img/background.jpg') no-repeat center center fixed !important;
    background-size: cover !important;
    color: #fff;
    text-align: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.container {
    width: 50%;
    margin: 0 auto;
    padding-top: 30px;
}

.logo {
    margin-bottom: 50px;
}

.logo img {
    max-width: 100%;
    height: auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.opcje {
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.opcja {
    text-decoration: none;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    width: 32%;
    transition: background-color 0.3s, transform 0.3s;
}

.opcja:hover {
    background-color: rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.opcja img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.opcja:hover img {
    transform: scale(1.1);
}

.subtitle {
    font-size: 14px;
    color: #ccc; 
}

.title {
    font-size: 18px;
    font-weight: bold;
}

.playercount {
    display: inline-block;
    margin-top: 5px;
    font-size: 18px;
    background-color: #f60;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.sip {
    font-weight: bold;
    color: #fff;
}

.ip {
    color: #fff;
    font-weight: bold;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .opcja {
        width: 30%;
    }
}

@media (max-width: 480px) {
    .container {
        width: 98%;
    }

    .logo {
        margin-bottom: 20px;
    }

    .logo img {
        width: 50%;
        height: auto;
    }

    .opcja {
        width: 45%;
        margin-bottom: 10px;
    }

    .subtitle {
        font-size: 12px;
    }

    .title {
        font-size: 16px;
    }

    .playercount {
        font-size: 14px;
        padding: 6px;
    }
}
