/* Points Animation Overlay */
.points-animation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    perspective: 1000px;
}

@keyframes pointsSpin {
    0% {
        transform: rotateX(-180deg) scale(0);
    }
    60% {
        transform: rotateX(30deg) scale(1.2);
    }
    100% {
        transform: rotateX(0) scale(1);
    }
}

@keyframes pointsPulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pointsPopup {
    0% {
        transform: scale(0) translateY(20px);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) translateY(-20px);
        opacity: 1;
    }
    100% {
        transform: scale(1) translateY(-50px);
        opacity: 0;
    }
}

.points-popup {
    position: fixed;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: #ff8c00;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 24px;
    font-weight: bold;
    z-index: 1000;
    pointer-events: none;
    animation: pointsPopup 2s ease-out forwards;
}

/* Logo Animation */
.navbar-logo {
    height: 50px;
    margin-right: 15px;
    animation: spin 5s linear infinite;
    filter: drop-shadow(0 0 10px #FF7B00);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hover Animations */
.nav-btn:hover {
    background-color: #FF7B00;
    color: black !important;
    transform: scale(1.05);
    text-shadow: none;
}

.points-display:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
}

/* FAQ Animations */
.faq-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FF7B00;
}

.step-text a {
    color: #FF7B00;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.step-text a:hover {
    color: #ff9d45;
    text-shadow: 0 0 8px rgba(255, 123, 0, 0.3);
}

.step-highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 123, 0, 0.1), rgba(255, 157, 69, 0.1));
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-top: 0.8rem;
    border: 1px solid rgba(255, 123, 0, 0.3);
    cursor: pointer;
    text-decoration: none;
    color: #FF7B00;
    transition: all 0.3s ease;
}

.step-highlight:hover {
    background: linear-gradient(135deg, rgba(255, 123, 0, 0.2), rgba(255, 157, 69, 0.2));
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(255, 123, 0, 0.2);
}

.btn-get-started:hover {
    background-color: black;
    color: #FF7B00;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 123, 0, 0.3);
}

/* ... other animations ... */ 