/* Make the hidden link look like regular text */
.hidden-link {
    color: inherit; /* Same color as normal text */
    text-decoration: none; /* Remove underline */
    cursor: pointer; /* Show pointer on hover */
    position: relative;
}

/* Optional: Subtle hover effect */
.hidden-link:hover {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Popup Overlay */
.easter-egg-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.5s ease;
}

/* Popup Content */
.popup-content {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* Close Button */
.close-btn {
    margin-top: 15px;
    padding: 8px 16px;
    border: none;
    background-color: #ff5555;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
