/* Premium US Bank Lookup Pro – VIP Frontend Design 2025 */

@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Premium Styles */
.usblp-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    font-family: 'Inter', sans-serif;
    color: white;
}

.usblp-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #a0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.usblp-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

#usblp-search {
    width: 100%;
    padding: 20px 24px;
    font-size: 1.3rem;
    border: none;
    border-radius: 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

#usblp-search::placeholder {
    color: rgba(255,255,255,0.7);
}

#usblp-search:focus {
    outline: none;
    background: rgba(255,255,255,0.25);
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

#usblp-results {
    margin-top: 30px;
    display: grid;
    gap: 20px;
}

.usblp-result {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.usblp-result:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.25);
}

.usblp-logo, .usblp-logo-fallback {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    object-fit: contain;
    background: white;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.usblp-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.usblp-info strong {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 8px;
}

.usblp-info code {
    background: rgba(255,255,255,0.3);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: bold;
}

#usblp-loading {
    text-align: center;
    font-size: 1.5rem;
    padding: 30px;
    animation: pulse 1.5s infinite;
}

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

.no-result {
    text-align: center;
    padding: 60px;
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Dark mode fallback */
.dark-mode .usblp-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}