body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1248px;
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.image-container {
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 1248px;
}

.social-links {
    margin-top: 1.5rem;
}

.facebook-link,
.facebook-link:visited {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
    font-size: 1.1rem;
    display: inline-block; /* Helps with clickable area */
}

.facebook-link:hover,
.facebook-link:active {
    color: #4267B2; /* Facebook Brand Color */
    border-bottom-color: #4267B2;
}

footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.production-info {
    font-size: 0.9rem;
    color: #888888;
    line-height: 1.6;
}

.production-info a {
    color: #bbbbbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.production-info a:hover {
    color: #ffffff;
}
