/**
 * xDREAM Gaming - Hamburger Menu Hint Animation
 * First-time user guidance for mobile navigation
 * Only appears on home page, only on mobile view
 */

/* Container for the hint arrow - positioned relative to hamburger menu */
.hamburger-hint-container {
    position: fixed;
    top: 10px;
    right: 70px; /* Position to the left of hamburger menu */
    z-index: 9999; /* Above everything else */
    pointer-events: none; /* Don't block clicks */
    display: none; /* Hidden by default, shown via JavaScript */
}

/* Arrow image */
.hamburger-hint-arrow {
    width: 120px;
    height: 80px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 255, 255, 0.5));
}

/* Blinking animation - fade in/out slowly */
@keyframes hintBlink {
    0% {
        opacity: 0;
        transform: translateX(10px);
    }
    15% {
        opacity: 1;
        transform: translateX(0);
    }
    85% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(10px);
    }
}

/* Apply animation when active */
.hamburger-hint-container.active {
    display: block;
    animation: hintBlink 2.5s ease-in-out;
}

/* Hide on desktop - only show on mobile */
@media (min-width: 769px) {
    .hamburger-hint-container {
        display: none !important;
    }
}

/* Responsive positioning for different mobile breakpoints */
@media (max-width: 768px) {
    .hamburger-hint-container {
        top: 15px;
        right: 70px;
    }
}

@media (max-width: 414px) {
    .hamburger-hint-container {
        top: 12px;
        right: 65px;
    }
    
    .hamburger-hint-arrow {
        width: 100px;
        height: 66px;
    }
}

@media (max-width: 375px) {
    .hamburger-hint-container {
        top: 10px;
        right: 60px;
    }
    
    .hamburger-hint-arrow {
        width: 90px;
        height: 60px;
    }
}

@media (max-width: 320px) {
    .hamburger-hint-container {
        top: 8px;
        right: 55px;
    }
    
    .hamburger-hint-arrow {
        width: 80px;
        height: 53px;
    }
}

