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

:root {
    --primary: #d63384;
    --primary-hover: #e056a0;
    --primary-glow: rgba(214,51,132,0.25);
    --dark: #0a0a0a;
    --dark-card: #141414;
    --dark-surface: #1a1a1a;
    --dark-border: #2a2a2a;
    --text: #f0f0f0;
    --text-muted: #999;
    --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a0a14 50%, #0a0a0a 100%);
    --gradient-accent: linear-gradient(135deg, #d63384, #6f42c1);
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.5);
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--primary); color: #fff; }

/* ── NAVBAR ─────────────────────────────────────── */
.bunny-nav {
    background: rgba(10,10,10,0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    padding: 0.75rem 0;
}

.bunny-nav .navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bunny-nav .nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.bunny-nav .nav-link:hover,
.bunny-nav .nav-link.active {
    color: var(--text) !important;
    background: rgba(255,255,255,0.05);
}

.bunny-nav .btn-nav-accent {
    background: var(--gradient-accent);
    color: #fff !important;
    border: none;
    padding: 0.45rem 1.3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    box-shadow: 0 2px 12px var(--primary-glow);
}

.bunny-nav .btn-nav-accent:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--primary-glow);
}

/* ── HERO ───────────────────────────────────────── */
.hero {
    background: var(--gradient-hero);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: center;
}
.hero .container {
    width: 100%;
}
.hero .section-label {
    display: inline-block;
}
.hero .d-flex {
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero h1 .accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn-hero {
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.hero .btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.hero .btn-hero-outline {
    border: 1px solid var(--dark-border);
    color: var(--text);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    background: transparent;
}

.hero .btn-hero-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(214,51,132,0.05);
}

/* ── SECTION ────────────────────────────────────── */
.section {
    padding: 4rem 0;
}

.section-title {
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.section-label {
    display: inline-block;
    background: var(--gradient-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* ── CARDS ──────────────────────────────────────── */
.bunny-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.bunny-card:hover {
    border-color: rgba(214,51,132,0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.bunny-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.bunny-card .card-body {
    padding: 1.25rem;
}

.bunny-card .card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.bunny-card .card-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.bunny-card .card-meta i {
    width: 16px;
    margin-right: 4px;
    color: var(--primary);
}

.bunny-card-placeholder {
    height: 200px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    opacity: 0.7;
}

/* ── EVENT DETAIL ───────────────────────────────── */
.event-banner {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.event-banner-placeholder {
    width: 100%;
    height: 300px;
    background: var(--gradient-accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.ticket-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.ticket-card:hover {
    border-color: var(--primary);
}

.ticket-card .ticket-name {
    font-weight: 700;
    font-size: 1.05rem;
}

.ticket-card .ticket-price {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
}

.ticket-card .ticket-perks {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0.5rem 0;
}

/* ── MEMBERSHIP ─────────────────────────────────── */
.tier-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tier-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 40px var(--primary-glow);
}

.tier-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.3rem 1rem;
    border-radius: 50px;
}

.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tier-card .tier-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.tier-card .tier-price {
    font-size: 2.2rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-card .tier-period {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.tier-card .tier-perks {
    text-align: left;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.tier-card .tier-perks li {
    padding: 0.4rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
}

.tier-card .tier-perks li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.75rem;
}

/* ── DONATE ─────────────────────────────────────── */
.donate-hero {
    text-align: center;
    padding: 3rem 0;
}

.donate-hero .total-raised {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── FORMS ──────────────────────────────────────── */
.bunny-form .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.bunny-form .form-control,
.bunny-form .form-select {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    color: var(--text);
    border-radius: var(--radius-sm);
    padding: 0.65rem 1rem;
    transition: var(--transition);
}

.bunny-form .form-control:focus,
.bunny-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    background: var(--dark-surface);
    color: var(--text);
}

.bunny-form .form-control::placeholder {
    color: #555;
}

/* ── BUTTONS ────────────────────────────────────── */
.btn-bunny {
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    padding: 0.65rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 2px 12px var(--primary-glow);
}

.btn-bunny:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--primary-glow);
    color: #fff;
}

.btn-bunny-outline {
    background: transparent;
    border: 1px solid var(--dark-border);
    color: var(--text);
    padding: 0.65rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-bunny-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(214,51,132,0.05);
}

.btn-bunny-sm {
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
}

/* ── MEDIA PLAYER PAGE ──────────────────────────── */
.media-section {
    padding: 3rem 0;
}

.media-section .section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.media-section .section-header i {
    font-size: 1.2rem;
    color: var(--primary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.video-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.video-card:hover {
    border-color: rgba(214,51,132,0.3);
    transform: translateY(-2px);
}

.video-card .video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-card .video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card .video-info {
    padding: 1rem;
}

.video-card .video-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.video-card .video-meta {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ── AUDIO PLAYER ───────────────────────────────── */
.audio-player-wrap {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.audio-player-wrap h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.playlist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.playlist-item:hover {
    background: rgba(255,255,255,0.03);
    border-color: var(--dark-border);
}

.playlist-item.active {
    background: rgba(214,51,132,0.1);
    border-color: var(--primary);
}

.playlist-item .track-num {
    font-size: 0.8rem;
    color: var(--text-muted);
    min-width: 24px;
    text-align: center;
}

.playlist-item.active .track-num {
    color: var(--primary);
}

.playlist-item .track-info {
    flex-grow: 1;
}

.playlist-item .track-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.playlist-item .track-artist {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.playlist-item .track-duration {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.playlist-item.active .track-title {
    color: var(--primary);
}

.now-playing-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--dark-surface);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border: 1px solid var(--dark-border);
}

.now-playing-bar .np-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.now-playing-bar .np-info {
    flex-grow: 1;
}

.now-playing-bar .np-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.now-playing-bar .np-artist {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.now-playing-bar audio {
    width: 100%;
    height: 36px;
    border-radius: 8px;
    outline: none;
}

/* Custom audio styling */
audio::-webkit-media-controls-panel { background: var(--dark-surface); }
audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-mute-button { color: var(--text); }

/* ── AUTH PAGES ─────────────────────────────────── */
.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-lg);
}

.auth-card h3 {
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-card .auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.auth-card .auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.auth-card .auth-divider::before,
.auth-card .auth-divider::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: var(--dark-border);
}

/* ── ACCOUNT ────────────────────────────────────── */
.account-sidebar {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.account-sidebar .sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-bottom: 0.2rem;
}

.account-sidebar .sidebar-link:hover {
    color: var(--text);
    background: rgba(255,255,255,0.03);
}

.account-sidebar .sidebar-link.active {
    color: var(--primary);
    background: rgba(214,51,132,0.1);
}

.account-sidebar .sidebar-link i {
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
}

.account-content {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2rem;
}

.account-content h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--dark-border);
}

/* ── STAT CARDS ─────────────────────────────────── */
.stat-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(214,51,132,0.2);
}

.stat-card .stat-label {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.stat-card .stat-value {
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1;
}

.stat-card .stat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* ── TABLES ─────────────────────────────────────── */
.bunny-table {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.bunny-table table {
    margin-bottom: 0;
    color: var(--text);
}

.bunny-table thead th {
    background: var(--dark-surface);
    border-bottom: 1px solid var(--dark-border);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.85rem 1rem;
    border: none;
}

.bunny-table tbody td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--dark-border);
    vertical-align: middle;
    font-size: 0.9rem;
}

.bunny-table tbody tr:last-child td {
    border-bottom: none;
}

.bunny-table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}

/* ── BADGES ─────────────────────────────────────── */
.badge-bunny {
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
}

.badge-pending { background: rgba(255,193,7,0.15); color: #ffc107; }
.badge-approved, .badge-active, .badge-completed { background: rgba(25,135,84,0.15); color: #198754; }
.badge-rejected, .badge-suspended, .badge-void { background: rgba(220,53,69,0.15); color: #dc3545; }
.badge-draft { background: rgba(108,117,125,0.15); color: #6c757d; }
.badge-published, .badge-valid { background: rgba(13,202,240,0.15); color: #0dcaf0; }
.badge-used, .badge-expired { background: rgba(108,117,125,0.15); color: #6c757d; }

/* ── CHECKOUT ───────────────────────────────────── */
.checkout-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2rem;
}

.payment-option {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
}

.payment-option:hover,
.payment-option.active {
    border-color: var(--primary);
}

.payment-detail-box {
    background: var(--dark);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-top: 0.75rem;
}

.payment-detail-box code {
    color: var(--primary);
    word-break: break-all;
    background: none;
    font-size: 0.85rem;
}

/* ── FLASH MESSAGES ─────────────────────────────── */
.alert-bunny-success {
    background: rgba(25,135,84,0.1);
    border: 1px solid rgba(25,135,84,0.3);
    color: #198754;
    border-radius: var(--radius-sm);
}

.alert-bunny-error {
    background: rgba(220,53,69,0.1);
    border: 1px solid rgba(220,53,69,0.3);
    color: #dc3545;
    border-radius: var(--radius-sm);
}

/* ── FOOTER ─────────────────────────────────────── */
.bunny-footer {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.bunny-footer h6 {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.bunny-footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: block;
    padding: 0.25rem 0;
}

.bunny-footer a:hover {
    color: var(--primary);
}

.bunny-footer .footer-bottom {
    border-top: 1px solid var(--dark-border);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.bunny-footer .footer-bottom .brand {
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── 404 ────────────────────────────────────────── */
.error-page {
    text-align: center;
    padding: 6rem 0;
}

.error-page .error-code {
    font-size: 8rem;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.error-page h2 {
    font-weight: 700;
    margin: 1rem 0;
}

.error-page p {
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto 2rem;
}

/* ── UTILITIES ──────────────────────────────────── */
.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    height: 1px;
    background: var(--dark-border);
    margin: 2rem 0;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
    .hero { padding: 3rem 0 2.5rem; }
    .hero h1 { font-size: 2.2rem; }
    .video-grid { grid-template-columns: 1fr; }
    .tier-card { margin-bottom: 1rem; }
    .section { padding: 2.5rem 0; }
    .account-sidebar { margin-bottom: 1rem; }
}

/* ── SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #444; }

/* ── PULSE ANIMATION ────────────────────────────── */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 var(--primary-glow); }
    50% { box-shadow: 0 0 20px 5px var(--primary-glow); }
}

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