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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0f0f1a;
    height: 100vh;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
    padding: 20px;
}

.logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: #a78bfa;
}

.goodbye-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.trans-flag {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    min-width: 333px;
}

.stripe {
    height: 24px;
    width: 100%;
}

.stripe-1, .stripe-5 { background: #5bcefa; }
.stripe-2, .stripe-4 { background: #f5a9b8; }
.stripe-3 { background: #ffffff; }

.flag-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(250, 250, 250, 1);
    font-size: 1.4em;
    font-weight: 600;
    white-space: nowrap;
}

.flag-text-top {
    top: -6px;
}

.flag-text-bottom {
    bottom: 0;
}

.farewell-text {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
}

.snowflake {
    position: fixed;
    color: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: 1000;
}

.snowflake.landed {
    z-index: 999;
}
