.easter-egg-infinity {
    position: fixed;
    font-size: 120px;
    color: var(--accent-gold);
    font-weight: bold;
    z-index: 9999;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    text-shadow: 
        0 0 20px rgba(214, 158, 46, 0.8),
        0 0 40px rgba(214, 158, 46, 0.6),
        0 0 60px rgba(214, 158, 46, 0.4);
    filter: drop-shadow(0 10px 30px rgba(214, 158, 46, 0.5));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.easter-egg-infinity.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    animation: infinityHeartbeat 1s ease-in-out 0.5s 5;
}

@keyframes infinityHeartbeat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    14% {
        transform: translate(-50%, -50%) scale(1.3);
    }
    28% {
        transform: translate(-50%, -50%) scale(1);
    }
    42% {
        transform: translate(-50%, -50%) scale(1.3);
    }
    56% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.quote-section {
    cursor: pointer;
    user-select: none;
}

@media (max-width: 768px) {
    .easter-egg-infinity {
        font-size: 80px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .easter-egg-infinity {
        animation: none;
        transition: opacity 0.3s ease;
    }
    
    .easter-egg-infinity.active {
        animation: none;
    }
}
