
#konami-snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: twinkle 3s ease-in-out infinite alternate;
    pointer-events: none;
    user-select: none;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.konami-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.konami-message.show {
    opacity: 1;
}

/* Make snowflakes different colors occasionally */
.snowflake:nth-child(3n) {
    color: #E6F3FF;
}

.snowflake:nth-child(5n) {
    color: #CCE7FF;
}

.snowflake:nth-child(7n) {
    color: #B3DAFF;
}

.snowflake:nth-child(11n) {
    color: #99D6FF;
}

/* Add some rotation to snowflakes */
.snowflake:nth-child(2n) {
    animation: twinkle 3s ease-in-out infinite alternate, rotate 10s linear infinite;
}

.snowflake:nth-child(4n) {
    animation: twinkle 4s ease-in-out infinite alternate, rotate-reverse 15s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Special effects for different icons */
.snowflake:contains('⭐'),
.snowflake:contains('✨'),
.snowflake:contains('🌟'),
.snowflake:contains('💫') {
    text-shadow: 0 0 15px rgba(255, 255, 0, 0.8);
}

.snowflake:contains('⚡') {
    text-shadow: 0 0 15px rgba(255, 255, 0, 1);
    animation: twinkle 0.5s ease-in-out infinite alternate;
}

.snowflake:contains('💎'),
.snowflake:contains('🔸'),
.snowflake:contains('🔹') {
    text-shadow: 0 0 20px rgba(255, 255, 255, 1);
}
