/* Music Trails - Complete Dark Theme Styling System */

/* Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #ff006e;
    --secondary-teal: #4ecdc4;
    --dark-teal: #2c5f5d;
    --bg-black: #0a0a0a;
    --bg-dark: #1a1a1a;
    --bg-card: #2a2a2a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --text-dark-gray: #808080;
    --border-dark: #404040;
    --error-red: #ef4444;
    --success-green: #10b981;
    --warning-yellow: #f59e0b;
    
    /* Gradients */
    --gradient-pink: linear-gradient(135deg, #ff006e 0%, #ff0080 100%);
    --gradient-teal: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    
    /* Glows */
    --glow-pink: 0 0 20px rgba(255, 0, 110, 0.5);
    --glow-teal: 0 0 20px rgba(78, 205, 196, 0.5);
    --glow-red: 0 0 20px rgba(239, 68, 68, 0.5);
}

/* =========================================
   GLOBAL UI TOKENS
========================================= */

:root {
    --mt-bg: #050509;
    --mt-bg-alt: #101018;
    --mt-surface: #151524;
    --mt-border-subtle: rgba(255,255,255,0.06);

    --mt-primary: #6f3ff5;
    --mt-primary-soft: rgba(111,63,245,0.12);
    --mt-primary-hover: #5b32cc;

    --mt-accent: #ff5ea8;
    --mt-success: #22c55e;
    --mt-danger: #ef4444;
    --mt-warning: #f59e0b;

    --mt-text-main: #f9fafb;
    --mt-text-muted: #9ca3af;
    --mt-text-softer: #6b7280;

    --mt-radius-sm: 8px;
    --mt-radius-md: 12px;
    --mt-radius-lg: 18px;

    --mt-shadow-soft: 0 10px 30px rgba(0,0,0,0.45);
    --mt-transition-fast: 0.18s ease-out;
    --mt-transition-med: 0.24s ease;
}

/* =========================================
   BASE BODY (optional – keep if it matches)
========================================= */

body {
    background: radial-gradient(circle at top, #151524 0, #050509 50%, #020208 100%);
    color: var(--mt-text-main);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
                 "Segoe UI", sans-serif;
    margin: 0;
}

/* =========================================
   GENERIC SECTIONS & CARDS
========================================= */

.section {
    padding: 3.5rem 1.5rem;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-header p {
    color: var(--mt-text-muted);
    font-size: 1rem;
}

.card {
    background: linear-gradient(145deg, #151524, #11111b);
    border-radius: var(--mt-radius-md);
    border: 1px solid var(--mt-border-subtle);
    box-shadow: var(--mt-shadow-soft);
    padding: 1.75rem;
}

/* =========================================
   BUTTONS
========================================= */

.button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.4rem;
    border-radius: var(--mt-radius-md);
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    background: #1f2933;
    color: var(--mt-text-main);
    transition:
        background var(--mt-transition-fast),
        border-color var(--mt-transition-fast),
        transform var(--mt-transition-fast),
        box-shadow var(--mt-transition-fast),
        color var(--mt-transition-fast);
}

.button:hover,
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
    background: #27313f;
}

.button:disabled,
.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

.button.primary,
.btn-primary {
    background: linear-gradient(135deg, var(--mt-primary), #8b5cfa);
    border-color: rgba(143, 90, 255, 0.5);
    color: #fff;
}

.button.primary:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, var(--mt-primary-hover), #7b4de8);
}

.button.secondary,
.btn-secondary {
    background: #111827;
    border-color: rgba(156,163,175,0.4);
    color: var(--mt-text-main);
}

.button.secondary:hover,
.btn-secondary:hover {
    background: #1f2937;
}

.button.danger,
.btn-danger {
    background: #7f1d1d;
    border-color: rgba(239,68,68,0.5);
    color: #fee2e2;
}

.button.danger:hover,
.btn-danger:hover {
    background: #991b1b;
}

.button.outline,
.btn-outline {
    background: transparent;
    border-color: rgba(148,163,184,0.7);
    color: var(--mt-text-main);
}

.button.outline:hover,
.btn-outline:hover {
    background: rgba(148,163,184,0.08);
}

.button.danger.outline,
.btn-danger.btn-outline {
    border-color: rgba(239,68,68,0.7);
    color: #fecaca;
}

.button.danger.outline:hover,
.btn-danger.btn-outline:hover {
    background: rgba(239,68,68,0.08);
}

.button.sm,
.btn-sm {
    padding: 0.45rem 0.9rem;
    font-size: 0.86rem;
}

.button.full,
.btn-full {
    width: 100%;
    justify-content: center;
}

/* =========================================
   FORMS & INPUTS
========================================= */

form {
    max-width: 600px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.1rem;
}

.form-label {
    font-size: 0.9rem;
    color: var(--mt-text-muted);
    font-weight: 500;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 0.65rem 0.8rem;
    border-radius: var(--mt-radius-sm);
    border: 1px solid rgba(148,163,184,0.5);
    background: #020617;
    color: var(--mt-text-main);
    font-size: 0.95rem;
    outline: none;
    transition:
        border-color var(--mt-transition-fast),
        box-shadow var(--mt-transition-fast),
        background var(--mt-transition-fast);
}

.form-control:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: var(--mt-primary);
    box-shadow: 0 0 0 1px rgba(111,63,245,0.4);
    background: #020617;
}

textarea {
    min-height: 90px;
    resize: vertical;
}

.form-check-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--mt-text-softer);
}

.form-error,
#account-error,
#profile-error,
#security-error,
#preferences-error,
#subscription-error {
    margin-top: 0.3rem;
    font-size: 0.88rem;
    color: #fecaca;
    background: rgba(239,68,68,0.12);
    border-radius: var(--mt-radius-sm);
    padding: 0.5rem 0.7rem;
    display: none;
}

.form-success,
#profile-success,
#security-success,
#preferences-success,
#subscription-success {
    margin-top: 0.3rem;
    font-size: 0.88rem;
    color: #bbf7d0;
    background: rgba(34,197,94,0.12);
    border-radius: var(--mt-radius-sm);
    padding: 0.5rem 0.7rem;
    display: none;
}

.form-error.visible,
.form-success.visible,
#account-error.visible,
#profile-error.visible,
#security-error.visible,
#preferences-error.visible,
#subscription-error.visible,
#profile-success.visible,
#security-success.visible,
#preferences-success.visible,
#subscription-success.visible {
    display: block;
}

/* =========================================
   ACCOUNT TABS
========================================= */

.account-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(148,163,184,0.4);
    padding-bottom: 0.5rem;
}

.account-tab-button {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: var(--mt-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition:
        background var(--mt-transition-fast),
        color var(--mt-transition-fast);
}

.account-tab-button:hover {
    background: rgba(148,163,184,0.1);
    color: var(--mt-text-main);
}

.account-tab-button.active {
    background: var(--mt-primary-soft);
    color: #f9fafb;
}

.account-tab-panel {
    display: none;
    margin-top: 0.75rem;
}

.account-tab-panel.active {
    display: block;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(148,163,184,0.2);
    color: var(--mt-text-main);
}

.badge.trial {
    background: rgba(52,211,153,0.18);
    color: #a7f3d0;
}

.badge.warning {
    background: rgba(245,158,11,0.18);
    color: #fed7aa;
}

.badge.danger {
    background: rgba(239,68,68,0.18);
    color: #fecaca;
}

.alert-banner {
    padding: 0.75rem 1rem;
    border-radius: var(--mt-radius-md);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.alert-banner.info {
    background: rgba(59,130,246,0.12);
    color: #bfdbfe;
}

.alert-banner.warning {
    background: rgba(245,158,11,0.12);
    color: #fed7aa;
}

.alert-banner.danger {
    background: rgba(239,68,68,0.12);
    color: #fecaca;
}

.stack-v {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stack-v.lg {
    gap: 1.25rem;
}

.stack-h {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stack-h.wrap {
    flex-wrap: wrap;
}

/* ---------------------------
   PRICING SECTION
---------------------------- */

.pricing-section {
    padding: 4rem 1.5rem;
    background: #fafafa;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.pricing-section .pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-section .pricing-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pricing-section .pricing-header p {
    color: #666;
    font-size: 1.1rem;
}

/* ---------------------------
   RESPONSIVE GRID
---------------------------- */

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---------------------------
   PRICING CARD
---------------------------- */

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.pricing-card--recommended {
    border: 2px solid #6f3ff5;
    box-shadow: 0 6px 28px rgba(111, 63, 245, 0.15);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #6f3ff5;
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---------------------------
   CARD CONTENT
---------------------------- */

.pricing-card-header h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.pricing-tag {
    margin-top: 0.25rem;
    color: #777;
    font-size: 0.95rem;
}

.pricing-price {
    margin: 1.5rem 0;
}

.pricing-price-main {
    font-size: 1.9rem;
    font-weight: 700;
    color: #333;
}

.pricing-price-main span {
    font-size: 0.9rem;
    margin-left: 3px;
    color: #777;
}

.pricing-price-alt {
    margin-top: 0.35rem;
    color: #666;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.pricing-features li {
    padding: 0.45rem 0;
    color: #444;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.pricing-features li::before {
    content: "✓";
    color: #6f3ff5;
    font-weight: 700;
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* ---------------------------
   CARD FOOTER
---------------------------- */

.pricing-card-footer {
    margin-top: auto;
    text-align: center;
}

.pricing-cta {
    display: inline-block;
    background: #6f3ff5;
    color: #fff !important;
    padding: 0.8rem 1.4rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: background 0.2s ease;
}

.pricing-cta:hover {
    background: #542fc9;
}

/* ---------------------------
   ERROR
---------------------------- */

.pricing-error {
    color: #c62828;
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
}

/* ---------------------------
   DARK MODE SUPPORT (optional)
---------------------------- */

@media (prefers-color-scheme: dark) {
    .pricing-section {
        background: #111;
        border-top-color: rgba(255,255,255,0.08);
    }
    .pricing-card {
        background: #1a1a1a;
        border-color: rgba(255,255,255,0.08);
        box-shadow: 0 6px 20px rgba(0,0,0,0.45);
    }
    .pricing-card-header h3,
    .pricing-price-main,
    .pricing-features li {
        color: #eee;
    }
    .pricing-price-main span,
    .pricing-tag,
    .pricing-price-alt,
    .pricing-header p {
        color: #bbb;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-white);
    line-height: 1.6;
    background: var(--bg-black);
    min-height: 100vh;
}

.top-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    position: relative;
    z-index: 10;
    background: transparent; /* Clear background */
}

.top-logo {
    max-width: 750px; /* Bigger size */
    max-height: 375px; /* Bigger size */
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1; /* Full opacity */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(16, 26, 37, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-dark);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-brand span {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-menu-container {
    position: relative;
}

.brand-dropdown {
    position: absolute;
    top: 64px;
    left: 0;
    min-width: 220px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1400;
}

.brand-dropdown.open {
    display: flex;
}

.brand-dropdown .brand-item {
    color: var(--text-white);
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
    display: block;
    font-weight: 600;
}

.brand-dropdown .brand-item:hover {
    background: rgba(255,255,255,0.08);
    color: var(--secondary-teal);
}

.account-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(10,10,10,0.65);
    color: #fff;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    margin-right: 10px;
}

.avatar-circle {
    background: linear-gradient(135deg, #ff006e 0%, #4ecdc4 100%);
    color: #0a0a0a;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.avatar-sm {
    width: 36px;
    height: 36px;
}

.account-menu {
    position: absolute;
    right: 20px;
    top: 72px;
    min-width: 260px;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1400;
}

.account-menu.open {
    display: flex;
}

.account-menu-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 6px;
}

.account-menu-text .account-name {
    font-weight: 700;
    color: var(--text-white);
}

.account-menu-text .account-email {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.account-menu-item {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text-white);
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    font-weight: 600;
}

.account-menu-item:hover {
    background: rgba(255,255,255,0.08);
    color: var(--secondary-teal);
}

.logo {
    height: 48px;
    width: 48px;
    background: url('../assets/MusicTrails-LOGO.png') center/contain no-repeat;
    border-radius: 12px;
    box-shadow: 0 0 18px rgba(255, 0, 174, 0.45);
    background-color: rgba(0, 0, 0, 0.6);
}

.logo::before {
    content: '';
}

@keyframes glow-pink {
    from { text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 0, 110, 0.6); }
    to { text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 0, 110, 0.8); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(10,10,10,0.6);
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    width: 20px;
    margin: 0 auto;
    background: var(--text-white);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-teal);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--secondary-teal);
}

.nav-user-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(78, 205, 196, 0.12);
    border-radius: 999px;
    color: var(--text-white);
    font-weight: 600;
    box-shadow: 0 0 12px rgba(78, 205, 196, 0.2);
}

/* Mobile slide-out navigation */
@media (max-width: 768px) {
    .navbar .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 260px;
        padding: 80px 24px 24px;
        background: rgba(12, 12, 12, 0.98);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.6);
        transform: translateX(100%);
        transition: transform 0.25s ease-out;
        display: flex;
        flex-direction: column;
        gap: 16px;
        z-index: 1200;
    }

    body.nav-open .navbar .nav-links,
    .navbar .nav-links.active {
        transform: translateX(0);
    }

    .mobile-menu-btn {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
    }

    .mobile-menu-btn span {
        width: 20px;
        height: 2px;
        background: #fff;
        border-radius: 999px;
    }

    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 1100;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-pink);
    color: var(--text-white);
    box-shadow: var(--glow-pink);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 0, 110, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-teal);
    border: 2px solid var(--secondary-teal);
}

.btn-secondary:hover {
    background: var(--secondary-teal);
    color: var(--bg-black);
    transform: translateY(-2px);
    box-shadow: var(--glow-teal);
}

.btn-outline {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border-dark);
}

.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--secondary-teal);
    color: var(--secondary-teal);
}

.btn-ghost {
    background: transparent;
    color: var(--text-gray);
    border: 1px dashed rgba(255, 255, 255, 0.25);
    margin-top: 12px;
    box-shadow: none;
}

.btn-ghost:hover {
    color: var(--secondary-teal);
    border-color: rgba(78, 205, 196, 0.45);
    box-shadow: none;
}

.btn-danger {
    background: var(--error-red);
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
    box-shadow: var(--glow-red);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-gray);
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 16px;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-teal);
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.form-input::placeholder {
    color: var(--text-dark-gray);
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 16px;
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-error {
    color: var(--error-red);
    font-size: 14px;
    margin-top: 5px;
}

.form-success {
    color: var(--success-green);
    font-size: 14px;
    margin-top: 5px;
}

/* Cards */
.card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.card-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-dark);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.card-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Auth Pages */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-black);
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 400px;
}

.auth-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 1px solid var(--border-dark);
}

.auth-logo {
    width: 80px;
    height: 80px;
    background: url('../assets/MusicTrails-LOGO.png') center/contain no-repeat;
    border-radius: 18px;
    margin: 0 auto 24px;
    box-shadow: 0 0 18px rgba(255, 0, 174, 0.45);
    background-color: rgba(0, 0, 0, 0.6);
}

.auth-logo::before {
    content: '';
}

.auth-card h1 {
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-white);
}

.auth-card p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--secondary-teal);
}

.auth-divider {
    text-align: center;
    margin: 30px 0;
    color: var(--text-gray);
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-dark);
    z-index: 1;
}

.auth-divider span {
    background: var(--bg-card);
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

.auth-note {
    margin-top: 30px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-dark-gray);
}

.auth-note a {
    color: var(--secondary-teal);
    text-decoration: none;
}

.auth-note a:hover {
    text-decoration: underline;
}

/* Account Page */
.account-page {
    min-height: 100vh;
    background: var(--bg-black);
    padding-top: 80px;
}

.account-header {
    background: var(--bg-dark);
    padding: 40px 0;
    margin-bottom: 40px;
}

.account-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-dark);
}

.account-nav-item {
    padding: 12px 20px;
    color: var(--text-gray);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.account-nav-item.active,
.account-nav-item:hover {
    color: var(--secondary-teal);
    border-bottom-color: var(--secondary-teal);
}

.account-section {
    margin-bottom: 40px;
}

.account-section h2 {
    margin-bottom: 20px;
    color: var(--text-white);
}

.data-section {
    display: grid;
    gap: 20px;
}

.data-card,
.notification-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

.data-card-header,
.notification-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.data-card-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: var(--secondary-teal);
    color: var(--bg-black);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-muted {
    background: rgba(255,255,255,0.1);
    color: var(--text-gray);
}

.badge-alert {
    background: var(--primary-pink);
    color: white;
}

.notification-card.unread {
    border-color: var(--secondary-teal);
}

.notification-card p {
    color: var(--text-gray);
}

.notification-date {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.empty-state {
    padding: 24px;
    text-align: center;
    border: 1px dashed var(--border-dark);
    border-radius: 12px;
    color: var(--text-gray);
    background: rgba(255,255,255,0.02);
}

.empty-state.error {
    border-color: rgba(239, 68, 68, 0.4);
    color: var(--error-red);
}

.billing-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.billing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-dark);
    font-size: 0.9rem;
}

.billing-label {
    display: inline-block;
    margin-left: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-gray);
}

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

.card-subsection {
    margin-bottom: 24px;
}

.card-subsection h3 {
    margin-bottom: 12px;
}

.helper-text {
    margin-top: 12px;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.membership-banner {
    background: var(--mt-primary-soft);
    border: 1px solid var(--mt-primary);
    color: var(--mt-text-main);
    padding: 12px 16px;
    border-radius: var(--mt-radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 16px;
}

.membership-banner .membership-badge {
    background: var(--mt-primary);
    color: #fff;
    padding: 4px 8px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.document-links {
    display: grid;
    gap: 16px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border-dark);
    background: rgba(255,255,255,0.02);
    text-decoration: none;
    color: var(--text-white);
    transition: transform 0.2s, border-color 0.2s;
}

.document-item:hover {
    transform: translateY(-2px);
    border-color: var(--secondary-teal);
}

.document-icon {
    font-size: 1.5rem;
}

.skeleton-list,
.skeleton-table {
    display: grid;
    gap: 12px;
}

.skeleton-line {
    height: 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    animation: skeleton-pulse 1.4s ease-in-out infinite;
}

@keyframes skeleton-pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* Subscription Status */
.subscription-status {
    background: var(--gradient-teal);
    color: var(--bg-black);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

.subscription-status.trial {
    background: var(--gradient-pink);
}

.subscription-status.expired {
    background: var(--error-red);
    color: white;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert-info {
    background: rgba(78, 205, 196, 0.1);
    border-color: var(--secondary-teal);
    color: var(--secondary-teal);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--warning-yellow);
    color: var(--warning-yellow);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--error-red);
    color: var(--error-red);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--success-green);
    color: var(--success-green);
}

.amount-monthly {
    font-weight: bold;
    font-size: 1.4rem;
    color: var(--text-white);
    position: relative;
    z-index: 20;
}
.amount-annual {
    font-weight: bold;
    font-size: 1.4rem;
    color: var(--text-white);
    position: relative;
    z-index: 20;
}

/* Loading Spinner */
.spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-dark);
    border-top: 2px solid var(--secondary-teal);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    border: 1px solid var(--border-dark);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
}

.modal-close:hover {
    color: var(--text-white);
}

/* Hero Section (Homepage) */
.hero {
    background: var(--bg-black);
    color: var(--text-white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 0, 110, 0.18) 0%, transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.22) 0%, transparent 55%);
    opacity: 0.9;
    animation: float 28s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(78, 205, 196, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(78, 205, 196, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(78, 205, 196, 0.7), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(78, 205, 196, 0.5), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(78, 205, 196, 0.8), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particles 25s var(--gradient-dark) infinite;
    z-index: 0;
}

@keyframes particles {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-200px) translateX(100px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    border-radius: 40px;
    padding: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.phone-screen {
    border-radius: 28px;
    padding: 32px 24px;
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.08);
    min-height: 360px;
}

.app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.05);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.app-badge:hover {
    transform: translateY(-2px);
    border-color: var(--secondary-teal);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-dark);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.membership-section {
    padding: 60px 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    margin-top: 40px;
}

.membership-heading {
    text-align: center;
    margin-bottom: 32px;
}

.membership-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: var(--glow-teal);
    letter-spacing: 0.02em;
    font-size: 0.95rem;
}

.membership-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.subscription-intro {
    padding: 60px 0;
    background: var(--bg-dark);
    text-align: center;
}

.subscription-plans {
    padding: 40px 0;
}

.plan-notice {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    min-height: 360px;
}

.plan-card--recommended {
    border-color: var(--secondary-teal);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.25);
}

.plan-card--selected {
    border-color: var(--mt-primary);
    box-shadow: 0 12px 32px rgba(111, 63, 245, 0.32);
}

.recommended-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--secondary-teal);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-price {
    font-size: 1.4rem;
    margin: 8px 0;
    color: var(--text-white);
}

.plan-ideal {
    color: var(--text-gray);
    margin-bottom: 12px;
}

.plan-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.plan-feature-list li {
    display: flex;
    gap: 8px;
    align-items: center;
}

.plan-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-error {
    color: var(--error-red);
    text-align: center;
    margin-bottom: 12px;
    min-height: 20px;
}
.form-error.visible {
    font-weight: 600;
}

.membership-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border-dark);
    background: var(--bg-card);
    min-width: 900px;
}

.membership-table th,
.membership-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-dark);
    border-right: 1px solid var(--border-dark);
    text-align: left;
    font-size: 0.95rem;
}

.membership-table th {
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    letter-spacing: 0.02em;
}

.membership-table td:last-child,
.membership-table th:last-child {
    border-right: none;
}

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

.membership-table tbody tr:hover {
    background: rgba(78, 205, 196, 0.08);
}

.plan-features {
    margin: 16px 0;
}

.plan-features h4 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.plan-features ul {
    display: grid;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.plan-features li {
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.perk-icon {
    font-size: 1.2rem;
}

.billing-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.billing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
}

.billing-row .billing-label {
    margin-left: 8px;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.billing-row a {
    color: var(--secondary-teal);
    font-weight: 600;
}

.billing-row {
    position: relative;
}

.invoice-chart {
    position: relative;
    width: 180px;
    height: 50px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    margin: 6px 0 0;
    overflow: hidden;
    padding: 8px;
}

.invoice-chart span {
    display: block;
    height: 6px;
    width: 100%;
    background: var(--secondary-teal);
    border-radius: 999px;
    margin-top: 30px;
}

.invoice-sparkline {
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: 164px;
    height: 34px;
    pointer-events: none;
}

.invoice-sparkline {
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 140px;
    height: 40px;
    pointer-events: none;
    opacity: 0.9;
}

.invoice-tooltip {
    position: absolute;
    top: -36px;
    left: 0;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 6px;
    font-size: 0.75rem;
    color: #fff;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.billing-row:hover .invoice-tooltip {
    opacity: 1;
}

.billing-row {
    position: relative;
}

@media (max-width: 1024px) {
    .membership-table {
        min-width: 700px;
    }
}

@media (max-width: 768px) {
    .membership-section {
        padding: 40px 0;
    }

    .membership-table th,
    .membership-table td {
        padding: 12px;
        font-size: 0.85rem;
    }
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid var(--border-dark);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(78, 205, 196, 0.2);
    border-color: var(--secondary-teal);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.5));
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-gray);
}

.pricing {
    padding: 100px 0;
    background: var(--bg-black);
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 45px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    padding: 36px 28px;
    border-radius: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pricing-card.featured {
    border-color: var(--secondary-teal);
    box-shadow: 0 20px 60px rgba(78,205,196,0.2);
}

.pricing-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.price-display {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    color: var(--text-white);
}

.price-display .currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-display .amount {
    font-size: 3rem;
    font-weight: 700;
}

.price-display .period {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.price-note {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.features-list {
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--text-gray);
    padding: 0;
}

.features-list li::before {
    content: '✓';
    margin-right: 8px;
    color: var(--secondary-teal);
}

.pricing-cta {
    margin-top: auto;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-section a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-dark);
    color: var(--text-dark-gray);
}

/* Members Hub */
.members-page {
    background: var(--bg-black);
}

.member-hero {
    padding: 80px 0 40px;
    background: radial-gradient(circle at top left, rgba(255, 0, 110, 0.12), transparent 60%);
}

.member-hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: stretch;
}

.member-hero-text {
    flex: 1 1 320px;
}

.member-hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.member-hero-text p {
    color: var(--text-gray);
    max-width: 520px;
}

.overline {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-teal);
    margin-bottom: 20px;
}

.member-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.member-hero-panel {
    flex: 1 1 280px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.member-hero-panel .panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.member-hero-panel .panel-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--text-dark-gray);
}

.panel-status {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.panel-status.status-published {
    background: rgba(78, 205, 196, 0.2);
    color: var(--secondary-teal);
}

.panel-status.status-draft {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

.member-hero-panel .panel-body {
    color: var(--text-gray);
    line-height: 1.5;
}

.panel-empty {
    color: var(--text-dark-gray);
    font-style: italic;
}

.member-hero-panel .next-event-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.member-hero-panel .panel-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.member-stats {
    padding: 20px 0 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: 14px;
    border: 1px solid var(--border-dark);
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(78, 205, 196, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.stat-card:hover::after {
    opacity: 0.35;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--text-dark-gray);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 12px 0;
}

.stat-trend {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.stat-trend.positive {
    color: var(--secondary-teal);
}

.stat-trend.neutral {
    color: var(--text-gray);
}

.member-collections {
    padding: 20px 0 60px;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.collection-card .card-header {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.collection-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.collection-item {
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.collection-item:hover {
    transform: translateY(-4px);
    border-color: rgba(78, 205, 196, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.collection-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.collection-item-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
}

.collection-item-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.collection-meta {
    list-style: none;
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
    color: var(--text-gray);
}

.collection-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    background: rgba(78, 205, 196, 0.14);
    color: var(--secondary-teal);
}

.tag-muted {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-dark-gray);
}

.collection-empty {
    margin-top: 24px;
    padding: 24px;
    border: 1px dashed var(--border-dark);
    border-radius: 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-gray);
}

.member-events {
    padding: 20px 0 80px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-card {
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(34, 34, 34, 0.92);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.event-card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
}

.event-date {
    color: var(--secondary-teal);
    font-weight: 600;
    font-size: 0.95rem;
}

.event-location,
.event-description {
    color: var(--text-gray);
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.event-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.event-status {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    border-radius: 999px;
    padding: 6px 12px;
}

.status-draft {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-gray);
}

.status-published {
    background: rgba(78, 205, 196, 0.2);
    color: var(--secondary-teal);
}

.events-empty {
    padding: 24px;
    border: 1px dashed var(--border-dark);
    border-radius: 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-gray);
}

.events-empty.hidden,
.collection-empty.hidden {
    display: none;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 16px;
}

.form-hint {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body.nav-ready .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        margin-top: 16px;
    }

    .navbar .container {
        flex-wrap: wrap;
        gap: 12px;
    }

    body.nav-ready .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        left: 20px;
        background: rgba(18, 18, 18, 0.98);
        border: 1px solid var(--border-dark);
        border-radius: 12px;
        padding: 16px;
        box-shadow: 0 18px 40px rgba(0,0,0,0.4);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
        margin-top: 0;
    }

    .nav-links a,
    .nav-links .btn,
    .nav-links .nav-user-pill {
        width: 100%;
    }

    .nav-links .nav-user-pill {
        justify-content: center;
    }

    body.nav-ready .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        align-items: center;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .member-hero {
        padding: 60px 0 30px;
    }

    .member-hero-content {
        flex-direction: column;
        gap: 32px;
    }

    .member-hero-panel {
        width: 100%;
    }

    .member-actions {
        width: 100%;
    }

    .member-actions .btn {
        flex: 1 1 100%;
    }

    .stats-grid,
    .collections-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .app-badges {
        justify-content: center;
        width: 100%;
    }

    .hero-image {
        width: 100%;
        order: -1;
    }

    .phone-screen {
        min-height: 300px;
        padding: 24px;
    }

    .top-logo-container {
        padding: 30px 0;
    }

    .top-logo {
        max-width: 260px;
        max-height: 130px;
    }

    .features-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing {
        padding: 60px 0;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .account-nav {
        flex-direction: column;
        gap: 10px;
    }

    .auth-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .features {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .navbar .container {
        padding: 1rem 15px;
    }

    .phone-mockup {
        max-width: 300px;
        padding: 12px;
    }

    .phone-screen {
        padding: 20px;
    }

    .app-badge {
        width: 100%;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.hidden { display: none; }
.visible { display: block; }

.text-pink { color: var(--primary-pink); }
.text-teal { color: var(--secondary-teal); }
.text-gray { color: var(--text-gray); }
.text-white { color: var(--text-white); }
.text-error { color: var(--error-red); }
.text-success { color: var(--success-green); }
.membership-banner {
    background: linear-gradient(
        90deg,
        rgba(255, 140, 0, 0.12),
        rgba(255, 0, 110, 0.12)
    );
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.membership-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.membership-badge {
    font-weight: 600;
    color: #ffb347;
}

.pro-badge {
    display: inline-block;
    margin-left: 10px;
    padding: 3px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(90deg, #ff6a00, #ee0979);
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.pro-badge.hidden {
    display: none;
}

.pro-badge:hover {
    cursor: default;
    filter: brightness(1.1);
}

.basic-badge {
    display: inline-block;
    margin-left: 10px;
    padding: 3px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #494949;
    background: #dcdcdc;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.basic-badge.hidden {
    display: none;
}

/* --- Shared helpers --- */
.hidden {
    display: none !important;
}

/* --- Account icon / avatar --- */
.navbar .container {
    position: relative; /* anchor the dropdown */
}

.account-toggle {
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    cursor: pointer;
    padding: 4px;
}

.account-toggle .avatar-circle {
    width: 32px;
    height: 32px;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff2fb0, #18e0ff);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 0 14px rgba(255, 47, 176, 0.6);
}

.avatar-circle.avatar-sm {
    width: 28px;
    height: 28px;
    font-size: 13px;
}

/* --- Account dropdown menu --- */
.account-menu {
    position: absolute;
    top: 64px;
    left: 16px;
    width: 240px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(8, 8, 12, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 1500;
}

.account-menu.is-open,
.account-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.account-menu-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 4px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 6px;
}

.account-menu-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.account-name {
    font-size: 14px;
    font-weight: 600;
}

.account-email {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    word-break: break-all;
}

.account-menu-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 6px;
    margin-top: 4px;
    border-radius: 10px;
    font-size: 14px;
    border: none;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.account-menu-item:hover {
    background: radial-gradient(circle at top left, rgba(255, 47, 176, 0.25), transparent 60%),
                radial-gradient(circle at bottom right, rgba(24, 224, 255, 0.25), transparent 60%);
}

.account-menu-logout {
    margin-top: 6px;
    color: #ff6b81;
}

/* On very small screens, keep dropdown inside view */
@media (max-width: 600px) {
    .account-menu {
        left: 8px;
        right: 8px;
        width: auto;
    }
}

/* --- Account avatar + slide-out drawer --- */

.account-toggle {
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  cursor: pointer;
  padding: 0;
}

.account-toggle.hidden {
  display: none;
}

.avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.4);
}

.avatar-lg {
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
}

/* Container for the sliding menu */
.account-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  max-width: 80%;
  height: 100vh;
  background: rgba(6, 9, 18, 0.98);
  color: #f9fafb;
  box-shadow: 3px 0 20px rgba(0, 0, 0, 0.5);
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 220ms ease-out, opacity 220ms ease-out;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1rem 1.5rem;
}

/* Inner layout so content scrolls if tall */
.account-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

/* When JS adds .is-open, it slides in */
.account-menu.is-open {
  transform: translateX(0);
  opacity: 1;
}

.account-menu-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(148,163,184,0.35);
}

.account-menu-text {
  min-width: 0;
}

.account-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e5e7eb;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.account-email {
  font-size: 0.8rem;
  color: #9ca3af;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.account-menu-nav {
  display: flex;
  flex-direction: column;
  margin-top: 0.75rem;
  gap: 0.25rem;
}

.account-menu-item {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 0.9rem;
  padding: 0.55rem 0.25rem;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
}

.account-menu-item:hover {
  background: rgba(51, 65, 85, 0.85);
  color: #f9fafb;
}

.account-menu-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(148,163,184,0.35);
}

.account-menu-logout {
  color: #f97373;
}

/* Backdrop behind drawer */

.account-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease-out;
  z-index: 1090;
}

/* When menu is open, let click-through and show backdrop.
   We rely on document-click handler in main.js to close it. */

.account-menu.is-open ~ .account-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* --- Account avatar + slide-out drawer --- */

.account-toggle {
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  cursor: pointer;
  padding: 0;
}

.account-toggle.hidden {
  display: none;
}

.avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.4);
}

.avatar-lg {
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
}

/* Container for the sliding menu */
.account-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  max-width: 80%;
  height: 100vh;
  background: rgba(6, 9, 18, 0.98);
  color: #f9fafb;
  box-shadow: 3px 0 20px rgba(0, 0, 0, 0.5);
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 220ms ease-out, opacity 220ms ease-out;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1rem 1.5rem;
}

/* Inner layout so content scrolls if tall */
.account-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

/* When JS adds .is-open, it slides in */
.account-menu.is-open {
  transform: translateX(0);
  opacity: 1;
}

.account-menu-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(148,163,184,0.35);
}

.account-menu-text {
  min-width: 0;
}

.account-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e5e7eb;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.account-email {
  font-size: 0.8rem;
  color: #9ca3af;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.account-menu-nav {
  display: flex;
  flex-direction: column;
  margin-top: 0.75rem;
  gap: 0.25rem;
}

.account-menu-item {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 0.9rem;
  padding: 0.55rem 0.25rem;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
}

.account-menu-item:hover {
  background: rgba(51, 65, 85, 0.85);
  color: #f9fafb;
}

.account-menu-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(148,163,184,0.35);
}

.account-menu-logout {
  color: #f97373;
}

/* Backdrop behind drawer */

.account-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease-out;
  z-index: 1090;
}

/* When menu is open, let click-through and show backdrop.
   We rely on document-click handler in main.js to close it. */

.account-menu.is-open ~ .account-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

/* --- Onboarding: “What are you looking for?” chips --- */

.onboarding-section {
  margin-top: 1.5rem;
}

.onboarding-section h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.onboarding-section .subtext {
  font-size: 0.9rem;
  color: var(--text-gray, #9ca3af);
  margin-bottom: 0.75rem;
}

.looking-for-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-check {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.25rem 0.8rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.7);
  transition: background 150ms ease, border-color 150ms ease, transform 80ms ease;
}

.chip-check input {
  display: none;
}

.chip-check span {
  pointer-events: none;
}

.chip-check:hover {
  border-color: #f97316;
  transform: translateY(-1px);
}

.chip-check input:checked + span,
.chip-check input:checked ~ span {
  font-weight: 600;
}

.chip-check input:checked ~ span {
  color: #fbbf24;
}
