body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #004225; /* British Racing Green */
    color: #fff;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1); /* Transparent white */
    backdrop-filter: blur(10px); /* Glossy/frosted glass effect */
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 4rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.logo-img {
    height: 6rem;
    width: auto;
}

.subtitle {
    font-style: italic;
    color: #e0e0e0;
    font-size: 1.2rem;
}

footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}