body {
    background: #000;
    color: #fff;
    font-family: 'Blinker', Arial, sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.logo-bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: relative;
    z-index: 2;
    margin-top: 24px;
    margin-bottom: 24px;
}
.responsive-logo {
    height: 150px;
    width: auto;
    max-width: 380px;
    object-fit: contain;
    display: block;
}
#snow-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
}
h1 {
    color: #FF1F3E;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 0.5em;
}
.event-date {
    font-weight: bold;
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 1em;
}
.section-title {
    color: #FF1F3E;
    font-size: 1.2em;
    margin-top: 2em;
    margin-bottom: 0.5em;
}
.back-btn {
    display: inline-block;
    margin-top: 32px;
    background: #FF1F3E;
    color: #fff;
    font-family: 'Blinker', Arial, sans-serif;
    font-size: 1em;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 24px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(255,31,62,0.15);
    transition: background 0.2s;
}
.back-btn:hover {
    background: #d11a34;
}
.back-arrow {
    text-decoration: none;
    display: flex;
    align-items: center;
}
.back-arrow svg {
    fill: #FF1F3E;
}
@media (max-width: 600px) {
    .container {
        max-width: 95vw;
        padding: 20px 5vw;
    }
    h1 {
        font-size: 1.3em;
    }
    .responsive-logo {
            height: 30vw;
            max-width: 55vw;
        }
        .logo-bar {
            gap: 10px;
            margin-bottom: 16px;
            margin-top: 16px;
        }
}

