#aboutModal .modal-content {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

@media screen and (max-width: 768px) {
    #aboutModal .modal-content {
        max-width: 90vw;
        max-height: 70vh;
        margin: 10vh auto;
    }
}

@media screen and (max-width: 480px) {
    #aboutModal .modal-content {
        max-width: 95vw;
        max-height: 75vh;
        margin: 5vh auto;
        padding: 20px;
    }
}

.about-content {
    line-height: 1.6;
    color: #ddd;
}

.about-content p {
    margin-bottom: 1em;
}

.about-content h3 {
    color: #00ccff;
    margin-top: 1.5em;
}

.logo-tooltip {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00ffff, #0066ff);
    color: #000;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
    animation: pulseGlow 1.8s infinite alternate;
    cursor: default;
    user-select: none;
    z-index: 9999;
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
        transform: translateX(-50%) scale(1);
    }
    to {
        box-shadow: 0 0 25px rgba(0, 255, 255, 1);
        transform: translateX(-50%) scale(1.05);
    }
}

.logo-tooltip.hidden {
    display: none;
}
