@import url('https://fonts.googleapis.com/css2?family=Helvetica+Neue:wght@400;700&family=Creepster&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
}

.corporate-shell {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #fff;
    border-bottom: 1px solid #e1e4e8;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #0056b3;
}

nav a {
    text-decoration: none;
    color: #555;
    margin-left: 30px;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    line-height: 1.6;
}

button {
    margin-top: 30px;
    padding: 15px 40px;
    background: #0056b3;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
}

/* The Subliminal Layer */
.subliminal-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #f00;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    font-family: 'Creepster', cursive;
}

.subliminal-flash h2 {
    font-size: 10rem;
    margin: 0;
    transform: scale(2);
}

.eye {
    font-size: 15rem;
    margin: 0;
}
