/* Watchlist Page */
.watchlist-page {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.watchlist-page .page-header {
    text-align: center;
    margin-bottom: 48px;
}

.watchlist-page .page-header h1 {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.watchlist-page .page-header p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Add wallet form */
.watchlist-add {
    max-width: 700px;
    margin: 0 auto 48px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.watchlist-add h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.watchlist-add-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.watchlist-add-form input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.85rem;
    font-family: var(--font-mono);
    transition: border-color 0.2s;
}

.watchlist-add-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.watchlist-add-form input::placeholder {
    color: var(--text-muted);
}

.watchlist-add-btn {
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--gold), #b8860b);
    border: none;
    border-radius: 10px;
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.watchlist-add-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

/* Stats bar */
.watchlist-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 36px;
}

.watchlist-stat {
    text-align: center;
    padding: 16px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.watchlist-stat-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
}

.watchlist-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Wallet cards */
.watchlist-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.watchlist-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.watchlist-card:hover {
    border-color: rgba(212, 168, 83, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.watchlist-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), rgba(139, 92, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.watchlist-card-info {
    flex: 1;
    min-width: 0;
}

.watchlist-card-label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.watchlist-card-address {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.watchlist-card-meta {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.watchlist-card-meta span {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.watchlist-card-risk {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    min-width: 60px;
}

.watchlist-card-risk.high {
    background: rgba(244, 63, 94, 0.1);
    color: var(--crimson);
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.watchlist-card-risk.medium {
    background: rgba(212, 168, 83, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 168, 83, 0.2);
}

.watchlist-card-risk.low {
    background: rgba(52, 211, 153, 0.1);
    color: var(--emerald);
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.watchlist-card-actions {
    display: flex;
    gap: 8px;
}

.watchlist-btn-check, .watchlist-btn-remove {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.watchlist-btn-check:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.watchlist-btn-remove:hover {
    border-color: var(--crimson);
    color: var(--crimson);
}

/* Empty state */
.watchlist-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.watchlist-empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.watchlist-empty p {
    font-size: 0.9rem;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Alerts section */
.watchlist-alerts {
    max-width: 800px;
    margin: 48px auto 0;
}

.watchlist-alerts h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(244, 63, 94, 0.03);
    border: 1px solid rgba(244, 63, 94, 0.1);
    border-radius: 10px;
    margin-bottom: 8px;
}

.alert-item-icon {
    font-size: 1.1rem;
}

.alert-item-text {
    flex: 1;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.alert-item-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}
