@font-face {
    font-family: 'Franklin Gothic Heavy';
    src: url('fonts/franklin-gothic-heavy.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #008080;
    font-family: 'MS Sans Serif', 'Franklin Gothic Heavy', sans-serif;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.window {
    background: #c0c0c0;
    border: 2px solid;
    border-color: #fff #808080 #808080 #fff;
    box-shadow: 8px 8px 0 #3338, 0 0 16px #0004;
    max-width: 2000px;
    width: 90vw;
    min-height: 800px;
    display: flex;
    flex-direction: column;
}

.window-title {
    background: #000080;
    color: white;
    padding: 8px 16px;
    font-size: 18px;
    font-family: 'MS Sans Serif', sans-serif;
    border-bottom: 2px solid #808080;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.window-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.window-content {
    flex: 1;
    padding: 32px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    margin-bottom: 24px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo-bg {
    background: #008080;
    padding: 24px 24px;
    display: flex;
    justify-content: center;
}

.logo-svg {
    width: 90%;
    max-width: 500px;
    height: auto;
}

.festival-content {
    width: 100%;
    max-width: 500px;
    text-align: center;
    color: #000;
    padding: 0px 24px;
    margin-top: 12px;
}

.festival-content h1 {
    margin-bottom: 10px;
    font-size: 1.6em;
}

.festival-content p {
    font-size: 1.1em;
    color: #000;
}

.win95-button {
    background: #c0c0c0;
    border: 2px solid;
    border-color: #fff #808080 #808080 #fff;
    padding: 12px 24px;
    font-family: 'MS Sans Serif', sans-serif;
    font-size: 18px;
    cursor: pointer;
    margin: 16px 0;
    min-width: 200px;
}

.win95-button:active {
    border-color: #808080 #fff #fff #808080;
    padding: 13px 23px 11px 25px;
}

.teaser-content {
    width: 100%;
    max-width: 600px;
    text-align: center;
    color: #000;
    padding: 24px;
    margin-top: 24px;
}

.cryptic-message {
    margin-bottom: 32px;
}

.glitch-text {
    font-family: 'MS Sans Serif', monospace;
    color: #000080;
    font-size: 1.2em;
    margin-bottom: 16px;
    animation: glitch 2s infinite;
}

.typing-text {
    font-family: 'MS Sans Serif', monospace;
    color: #000;
    font-size: 1.4em;
    margin: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #000;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

.countdown-placeholder {
    margin: 32px 0;
}

.countdown-box {
    background: #000080;
    color: #fff;
    padding: 16px 32px;
    border: 2px solid #fff;
    display: inline-block;
}

.countdown-text {
    font-family: 'MS Sans Serif', monospace;
    font-size: 1.2em;
    letter-spacing: 1px;
}

.teaser-footer {
    margin-top: 24px;
}

.small-text {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
}

@keyframes glitch {
    0% { transform: translate(0) }
    20% { transform: translate(-2px, 2px) }
    40% { transform: translate(-2px, -2px) }
    60% { transform: translate(2px, 2px) }
    80% { transform: translate(2px, -2px) }
    100% { transform: translate(0) }
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #000 }
} 