/* ============================================================
   BANNER — Hexagonal Neon Banner Styles
   ============================================================ */

@keyframes banner-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes banner-holo {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.banner-pulse {
    animation: banner-pulse 2s ease-in-out infinite;
}

.banner-holo {
    animation: banner-holo 4s linear infinite;
}

.banner-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-wrap--large {
    width: 180px;
    height: 180px;
    cursor: pointer;
}

.banner-wrap--small {
    width: 44px;
    height: 44px;
}

.banner-wrap--mini {
    width: 36px;
    height: 36px;
}

/* Picker modal */
.banner-picker-modal {
    max-width: 360px;
    width: 90%;
}

.banner-picker-preview {
    display: flex;
    justify-content: center;
    padding: 16px 0;
}

.banner-picker-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.banner-tab {
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.banner-tab--active {
    background: rgba(0,245,255,0.15);
    color: #00f5ff;
}

.banner-picker-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-height: 240px;
    overflow-y: auto;
    padding: 4px;
}

.banner-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.banner-option:hover {
    background: rgba(255,255,255,0.06);
}

.banner-option--active {
    border-color: #00f5ff;
    background: rgba(0,245,255,0.08);
}

.banner-option--locked {
    opacity: 0.4;
    cursor: not-allowed;
}

.banner-option-label {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    line-height: 1.2;
}

.banner-option-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
}

.banner-option-lock {
    position: absolute;
    top: 2px;
    right: 2px;
    color: rgba(255,255,255,0.4);
}

@keyframes banner-option-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
}

.banner-option-shake {
    animation: banner-option-shake 0.5s ease;
}
