/* Yılbaşı Kar Yağışı Efekti - 2025 */
#snow-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.8;
}

/* Yılbaşı Badge (Opsiyonel) */
.newyear-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    z-index: 10000;
    animation: pulse 2s ease-in-out infinite;
    pointer-events: none;
}

.newyear-badge i {
    margin-right: 8px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Mobil için küçült */
@media (max-width: 768px) {
    .newyear-badge {
        bottom: 10px;
        right: 10px;
        font-size: 12px;
        padding: 8px 16px;
    }
}
