/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4; /* Light Concrete Grey */
    color: #333333; /* Dark Grey text for readability */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Container styling - The "White Card" look */
.container {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 4px; /* Slightly sharper corners for construction feel */
    max-width: 600px;
    width: 100%;
    /* Subtle shadow to make it pop off the background */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    border-top: 8px solid #ff8c00; /* Matching the logo orange */
}

/* Logo Styling */
.logo {
    max-width: 220px; 
    height: auto;
    margin-bottom: 40px;
}

/* The Big Company Name */
.company-name {
    font-size: 4rem; /* Very Big */
    font-weight: 900; /* Extra Bold */
    text-transform: uppercase;
    color: #222;
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
}

/* "Under Construction" Status */
.status {
    font-size: 1.2rem;
    color: #ff8c00; /* Orange text */
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 10px;
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Divider Line */
.divider {
    height: 2px;
    background-color: #eee;
    width: 100px;
    margin: 0 auto 30px auto;
}

/* Button Styling */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #222; /* Black button to contrast with orange/white */
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid #222;
}

.btn:hover {
    background-color: transparent;
    color: #222;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .company-name { font-size: 2rem; }
    .container { padding: 40px 20px; }
}