body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 900;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #000000;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/background.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(8px);
    opacity: 0.3;
    z-index: -1;
}

.logo-container {
    margin: 0 20px 30px;
    position: relative;
    z-index: 1;
}

.logo-container img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.maintenance-message {
    max-width: 600px;
    padding: 30px;
    margin: 0 20px;
    background: transparent;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        white-space: normal;
        line-height: 1.2;
    }
    
    .logo-container img {
        max-width: 100%;
    }
    
    p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .maintenance-message {
        padding: 20px;
    }
    
    p {
        font-size: 1rem;
    }
}
p {
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 0 10px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
        white-space: normal;
        line-height: 1.2;
        padding: 0 15px;
    }
    
    .logo-container img {
        max-width: 100%;
    }
    
    p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .logo-container {
        margin-bottom: 20px;
    }
    
    .maintenance-message {
        padding: 0 15px;
    }
}
