/* ═══════════════════════════════════════════════════════════════════════════
   ANTIGRAVITY ICON ANIMATION - From antigravity.google
   Bouncing Material Icons with horizontal drift
   ═══════════════════════════════════════════════════════════════════════════ */

.antigravity-icons {
    width: 100%;
    margin-left: 0;
    overflow: hidden;
    padding: 30px 0;
    height: 10vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Marquee wrapper for infinite scroll */
.icon-list-wrapper {
    display: flex;
    width: max-content;
    will-change: transform;
    justify-content: flex-start;
}

.icon-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-shrink: 0;
}

.icon-list .grid-col {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    will-change: transform;
}

.icon-list .bouncer {
    font-family: 'Material Symbols Outlined', sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 55px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    
    /* Circle background */
    width: 98px;
    height: 98px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    
    /* Light mode: dark icons */
    color: rgba(0, 0, 0, 1);
    
    user-select: none;
    pointer-events: auto;
    transition: background 0.3s ease, color 0.3s ease, transform 0.18s ease;
}

.icon-list .bouncer:hover {
    transform: scale(1.1);
}

.icon-list .bouncer.is-text-icon {
    font-family: "Poppins", sans-serif;
    font-size: 66px;
    font-weight: 500;
    line-height: 1;
}

body.dark-mode .icon-list .bouncer {
    background: rgba(255, 255, 255, 0.25);
    color: rgba(255,255,255, 1);
}

body.dark-mode .icon-list .bouncer:hover {
    transform: scale(1.1);
}

/* Responsive - smaller icons on mobile */
@media (max-width: 768px) {
    .antigravity-icons {
        padding: 40px 0;
    }
    
    .icon-list .bouncer {
        font-size: 28px;
        width: 56px;
        height: 56px;
    }
    
    .icon-list {
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .icon-list .bouncer {
        font-size: 24px;
        width: 48px;
        height: 48px;
    }
}
