* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative; 
    background-color: #1a1a1a; 
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), 
                url('img/img_bg.jpg') no-repeat center center fixed;
    background-size: cover;
    filter: blur(8px); 
    transform: scale(1.05); 
    z-index: -1; 
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    position: relative;
    z-index: 1; 
}

.logo-container {
    margin-bottom: 1.5rem;
}

.web-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: 4px;
    color: #F86939;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1rem;
    color: #aaaaaa;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.divider {
    height: 2px;
    width: 100px;
    background-color: #444444;
    margin: 0 auto 2rem auto;
}

.status-box {
    display: inline-flex;
    align-items: center;
    background-color: #262626;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: 1px solid #333333;
}

.pulse-icon {
    width: 10px;
    height: 10px;
    background-color: #F86939; 
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 0 #f8693971;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 #f8693971; }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); }
}

footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #919191;
}

@media (max-width: 600px) {
    body {
        background-attachment: scroll;
    }
    
    .container {
        padding: 1.5rem; 
        width: 100%;
    }

    .web-logo {
        width: 100px; 
    }

    h1 {
        font-size: 1.8rem; 
        letter-spacing: 2px; 
    }

    .subtitle {
        font-size: 0.9rem; 
        margin-bottom: 1.2rem;
    }

    .divider {
        margin: 0 auto 1.5rem auto; 
    }

    .status-box {
        padding: 0.6rem 1.2rem; 
        font-size: 0.9rem;
    }

    footer {
        margin-top: 2.5rem; 
        font-size: 0.75rem;
    }
}