/* General Reset and Base Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: white;
    box-sizing: border-box;
}

/* Server Status Box */
.server-status-box {
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid orange;
    border-radius: 15px;
    padding: 30px 25px;
    max-width: 420px;
    margin: 40px auto;
    color: white;
    box-shadow: 0 0 18px orange;
    text-align: center;
    backdrop-filter: blur(6px);
    animation: fadeIn 1s ease;
}

/* Logo Inside the Box */
.server-status-box .logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 25px;
}

/* Heading and Text */
.server-status-box h2 {
    color: orange;
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.server-status-box .status,
.server-status-box .players {
    font-size: 1.2rem;
    margin: 6px 0;
    font-weight: 500;
}

/* Play Now Button */
.play-now-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 26px;
    background-color: orange;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #ff9500;
}

.play-now-btn:hover {
    background-color: #ff9900;
    color: white;
    box-shadow: 0 0 16px #ffaa00;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Video Container (if used) */
.video-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 100vh;
    padding: 20px;
}
