* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.video-background {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

#myVideo {
    max-width: 100%;
    max-height: 100vh;
    width: auto;
    height: auto;
}

.maintenance-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    background-color: rgba(39, 66, 27, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(9, 255, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #2196F3;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2196F3;
}

p {
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(238, 238, 238, 0.3);
}

.contact a {
    color: #2196F3;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: rgba(39, 66, 27, 0.95);
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 4px 6px rgba(9, 255, 0, 0.3);
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-button:hover {
    color: #2196F3;
}

.modal h2 {
    color: #2196F3;
    margin-bottom: 20px;
    text-align: center;
}

.news-content {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 10px;
} 