@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-main: #06070d;
    --bg-glass: rgba(13, 15, 28, 0.7);
    --bg-glass-hover: rgba(20, 24, 45, 0.8);
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-glass-active: rgba(255, 51, 102, 0.3);
    --text-primary: #f5f6f9;
    --text-muted: #8b8f9f;
    --accent: #ff3366;
    --accent-glow: rgba(255, 51, 102, 0.4);
    --success: #00e676;
    --warning: #ffb300;
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-main: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 51, 102, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 230, 118, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ─── Layout ────────────────────────────────────────────────────────────────── */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, #ff3366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-muted);
    border: 1px solid var(--border-glass);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    -webkit-text-fill-color: initial;
}

/* ─── Glassmorphism Utilities ──────────────────────────────────────────────── */

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--bg-glass-hover);
    border-color: rgba(255, 255, 255, 0.1);
}

/* ─── Hero Section ─────────────────────────────────────────────────────────── */

.hero {
    text-align: center;
    margin: 5rem 0 3rem 0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ─── Search Component ──────────────────────────────────────────────────────── */

.search-box-wrapper {
    max-width: 700px;
    margin: 0 auto 4rem auto;
    position: relative;
}

.search-box {
    display: flex;
    align-items: center;
    padding: 0.4rem;
    border-radius: 50px;
    background: rgba(13, 15, 28, 0.9);
    border: 1px solid var(--border-glass);
    box-shadow: var(--card-shadow), 0 0 0 0 rgba(255, 51, 102, 0);
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--accent);
    box-shadow: var(--card-shadow), 0 0 20px 0 var(--accent-glow);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 1.15rem;
    padding: 0.8rem 1.5rem;
    font-family: inherit;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    outline: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: #ff4d7d;
    box-shadow: 0 0 15px 0 var(--accent-glow);
}

/* ─── Stats Ticker ─────────────────────────────────────────────────────────── */

.stats-ticker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.stat-item {
    padding: 1.5rem;
    text-align: center;
}

.stat-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.2rem;
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── Search Results ────────────────────────────────────────────────────────── */

.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.car-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.2rem;
    align-items: center;
    cursor: pointer;
}

.car-thumb {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.02);
}

.car-card-info {
    flex: 1;
}

.car-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.car-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.car-card-specs span::after {
    content: " •";
    margin-left: 1rem;
}

.car-card-specs span:last-child::after {
    content: "";
}

.car-card-price {
    text-align: right;
}

.car-card-price-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.car-card-status {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-top: 0.4rem;
    font-weight: 600;
}

.status-active {
    background: rgba(0, 230, 118, 0.1);
    color: var(--success);
}

.status-sold {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.status-not-found {
    background: rgba(255, 51, 102, 0.15);
    color: #ff3366;
    border: 1px solid rgba(255, 51, 102, 0.3);
}

/* ─── Detail View Components ────────────────────────────────────────────────── */

.detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

@media (max-width: 900px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
    .car-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .car-thumb {
        width: 100%;
        height: 200px;
    }
    .car-card-price {
        text-align: left;
        margin-top: 0.5rem;
    }
}

.detail-main-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
    margin-top: 1rem;
}

.gallery-img {
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.gallery-img:hover, .gallery-img.active {
    border-color: var(--accent);
    transform: scale(1.05);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.spec-box {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
}

.spec-box.anomaly {
    background: rgba(230, 126, 34, 0.12);
    border: 1px solid #e67e22;
    box-shadow: 0 0 12px rgba(230, 126, 34, 0.15);
}

.spec-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.spec-val {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.2rem;
}

/* ─── Charts & Timelines ───────────────────────────────────────────────────── */

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 1.5rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0.45rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-glass);
}

.timeline-event {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.timeline-event:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.timeline-event.selected-event {
    background: rgba(229, 9, 20, 0.15) !important;
    border-left: 3px solid var(--accent);
    padding-left: calc(0.5rem - 3px) !important;
    border-radius: 0 6px 6px 0;
}

.timeline-event::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 0.3rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid var(--bg-main);
}

.timeline-time {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.timeline-desc {
    font-weight: 600;
    margin-top: 0.2rem;
}

.timeline-detail {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ─── Back Button ──────────────────────────────────────────────────────────── */

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.back-btn:hover {
    color: var(--text-primary);
    transform: translateX(-5px);
}

/* ─── Loading Skeleton ──────────────────────────────────────────────────────── */

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

.skeleton {
    animation: pulse 1.5s infinite ease-in-out;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

/* ─── Equipment List ────────────────────────────────────────────────────────── */

.equip-grid-section {
    margin-top: 1.5rem;
}

.equip-category-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.equip-category-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 14px;
    background: var(--accent);
    border-radius: 2px;
}

.equip-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.equip-item {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.equip-item-icon {
    color: var(--accent);
    font-weight: bold;
    font-size: 0.95rem;
}

@media (min-width: 900px) {
    .recent-drops-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ─── Custom Dropdowns ─────────────────────────────────────────────────────── */

.custom-select-wrapper {
    position: relative;
    user-select: none;
    cursor: pointer;
    min-width: 150px;
    display: inline-block;
}

.custom-select-wrapper.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.65rem;
    font-size: 0.88rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 500;
    transition: border-color 0.2s, background-color 0.2s;
}

.custom-select-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.custom-select-trigger::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 2px solid #8b8f9f;
    border-bottom: 2px solid #8b8f9f;
    transform: rotate(45deg);
    transition: transform 0.2s ease, border-color 0.2s;
    margin-left: 0.4rem;
    flex-shrink: 0;
}

.custom-select-wrapper.open .custom-select-trigger::after {
    transform: rotate(-135deg);
    border-color: #fff;
}

.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--accent);
}

.custom-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: rgba(20, 22, 28, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.custom-select-wrapper.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: background 0.15s, color 0.15s;
}

.custom-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.custom-option.selected {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
}

.custom-options::-webkit-scrollbar {
    width: 6px;
}
.custom-options::-webkit-scrollbar-track {
    background: transparent;
}
.custom-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}
.custom-options::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.custom-select-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: inherit;
    width: 100%;
    cursor: text;
    padding: 0;
    margin: 0;
}

.custom-select-input::placeholder {
    color: var(--text-muted);
}

.clear-filters-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.clear-filters-btn:hover {
    background: rgba(255, 75, 75, 0.15);
    border-color: rgba(255, 75, 75, 0.4);
    color: #ff6b6b;
    transform: translateY(-1px);
}

.clear-filters-btn:active {
    transform: translateY(0);
}

/* ─── Navigation Menu ──────────────────────────────────────────────────────── */
.main-nav {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.35rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, var(--accent) 0%, #ff5c8a 100%);
    border-color: rgba(255, 51, 102, 0.2);
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
}

/* ─── Stats Dashboard Grid ─────────────────────────────────────────────────── */
.stats-ticker.dashboard-stats {
    background: linear-gradient(135deg, rgba(20, 24, 45, 0.7) 0%, rgba(10, 12, 22, 0.7) 100%);
    margin-bottom: 2rem;
}

.stat-item .stat-val.loss-color {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(255, 51, 102, 0.3);
}

.stat-item .stat-val.gain-color {
    color: var(--success);
    text-shadow: 0 0 15px rgba(0, 230, 118, 0.3);
}

.stat-item .stat-val.rolled-color {
    color: var(--warning);
    text-shadow: 0 0 15px rgba(255, 179, 0, 0.3);
}

/* Responsiveness for navigation */
@media (max-width: 900px) {
    header {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        margin-bottom: 2.5rem;
    }
    .main-nav {
        width: 100%;
        border-radius: 20px;
        padding: 0.4rem;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    .nav-link {
        flex: 1 1 auto;
        text-align: center;
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
}

/* ─── Fun Facts Cards ────────────────────────────────────────────────────────── */
.fun-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.fun-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.fun-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.fun-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.fun-card.loss-accent::before {
    background: linear-gradient(180deg, #ff3366, #ff6b8b);
}

.fun-card.gain-accent::before {
    background: linear-gradient(180deg, #00e676, #00b0ff);
}

.fun-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fun-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.fun-val a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.fun-val a:hover {
    color: var(--accent);
}

.fun-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.fun-desc strong {
    color: var(--text-primary);
    font-weight: 700;
}


/* ─── Notifications / Watches ──────────────────────────────────────────────── */

.watch-badge {
    display: inline-block;
    min-width: 18px;
    padding: 0 5px;
    margin-left: 6px;
    border-radius: 9px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    vertical-align: middle;
}

.watch-input {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    outline: none;
    width: 100%;
}

.watch-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.watch-mini-btn {
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.watch-mini-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.watch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    margin-bottom: 0.6rem;
    border-radius: 10px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    flex-wrap: wrap;
}

.watch-row-title {
    font-weight: 600;
    color: var(--text-primary);
}

.watch-row-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.watch-remove-btn {
    padding: 0.35rem 0.8rem;
    border-radius: 6px;
    background: transparent;
    border: 1px solid rgba(255, 51, 102, 0.35);
    color: var(--accent);
    font-family: var(--font-main);
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.watch-remove-btn:hover {
    background: rgba(255, 51, 102, 0.12);
}

.watch-empty {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    border: 1px dashed var(--border-glass);
    border-radius: 10px;
    font-size: 0.92rem;
}

.watch-inbox-item {
    display: block;
    padding: 0.85rem 1.1rem;
    margin-bottom: 0.5rem;
    border-radius: 10px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-left: 3px solid var(--border-glass);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.watch-inbox-item:hover {
    background: var(--bg-glass-hover);
}

.watch-inbox-item.unread {
    border-left-color: var(--accent);
}

.watch-inbox-item.type-drop  { border-left-color: var(--success); }
.watch-inbox-item.type-rise  { border-left-color: var(--warning); }

.watch-inbox-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.watch-inbox-body {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.watch-inbox-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
    margin-top: 0.3rem;
}

/* Car page price-watch button */
.watch-price-btn {
    display: block;
    width: 100%;
    margin-top: 0.8rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.watch-price-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.watch-price-btn.active {
    background: rgba(255, 51, 102, 0.15);
    border-color: var(--border-glass-active);
    color: var(--accent);
}

.watch-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-align: center;
    line-height: 1.4;
}
