/* Solana Wallet Reminder Banner Styles */
.wallet-banner-section {
    padding: 30px 0;
    background: linear-gradient(90deg, #14F195 0%, #9945FF 50%, #14F195 100%);
    background-size: 200% 100%;
    animation: gradientShift 5s ease infinite;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.wallet-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

/* Icon */
.wallet-banner__icon {
    flex-shrink: 0;
}

.wallet-banner__solana-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Content */
.wallet-banner__content {
    flex: 1;
}

.wallet-banner__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}

.wallet-banner__highlight {
    color: #14F195;
    text-transform: uppercase;
    font-size: 0.9em;
}

.wallet-banner__message {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.5;
}

.wallet-banner__message strong {
    color: #14F195;
}

/* Actions */
.wallet-banner__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.wallet-banner__cta {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, #14F195 0%, #9945FF 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
    animation: pulse 2s infinite;
}

.wallet-banner__cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(20, 241, 149, 0.3);
    color: #fff;
}

.wallet-banner__cta i {
    font-size: 1.1em;
}

.wallet-banner__cta-secondary {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.wallet-banner__cta-secondary:hover {
    color: #14F195;
}

/* Dismiss button (optional) */
.wallet-banner__dismiss {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.wallet-banner__dismiss:hover {
    color: #fff;
}

/* Pulsing attention animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(20, 241, 149, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(20, 241, 149, 0); }
    100% { box-shadow: 0 0 0 0 rgba(20, 241, 149, 0); }
}

/* Responsive */
@media (max-width: 992px) {
    .wallet-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .wallet-banner__content {
        order: 1;
    }
    
    .wallet-banner__icon {
        order: 0;
    }
    
    .wallet-banner__actions {
        order: 2;
        width: 100%;
    }
    
    .wallet-banner__cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .wallet-banner-section {
        padding: 20px 0;
    }
    
    .wallet-banner {
        padding: 20px;
    }
    
    .wallet-banner__title {
        font-size: 1.2rem;
    }
    
    .wallet-banner__message {
        font-size: 0.9rem;
    }
    
    .wallet-banner__solana-logo {
        width: 50px;
        height: 50px;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .wallet-banner-section {
        animation: none;
        background: linear-gradient(90deg, #14F195 0%, #9945FF 100%);
    }
    
    .wallet-banner__cta {
        animation: none;
    }
}
