body{
    font-family: 'Minecraftia', sans-serif;
    scroll-behavior: smooth;
}

.jumbotron-bg {
    background: url('background.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    position: relative;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.jumbotron-bg::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6); /* dark overlay */
    backdrop-filter: blur(4px);
    z-index: 1;
}

.jumbotron-bg > * {
    position: relative;
    z-index: 2;
}

h1, .lead {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

.btn-play {
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    background-color: #ff69b4;
    border: 2px solid white;
    border-radius: 8px;
    transition: 0.3s ease;
}

.btn-play:hover {
    background-color: white;
    color: #ff69b4;
    border-color: #ff69b4;
}

.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.section {
    padding: 80px 20px;
}

.ip-display {
    font-size: 1.25rem;
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-brand {
    color: #000;
    font-family: 'Minecraftia', sans-serif;
}

li {
    text-align: left;
}
.info {
        text-align: left;

}