/* ============================================
   Sidechain - Modern UI Enhancements
   ============================================ */

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

/* ===== Custom Properties ===== */
:root {
    --studio-black: #0A0A0B;
    --fader-grey: #1A1A1E;
    --card-grey: #23232A;
    --border-grey: #2A2A32;
    --text-primary: #F5F5F7;
    --text-secondary: #98989F;
    --phantom-blue: #5D5FEF;
    --phantom-blue-glow: rgba(93, 95, 239, 0.3);
    --signal-green: #00E096;
    --signal-green-glow: rgba(0, 224, 150, 0.2);
    --waveform-purple: #B28CFF;
    --recording-red: #FF4D4D;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow-blue: 0 0 20px var(--phantom-blue-glow);
    --shadow-glow-green: 0 0 20px var(--signal-green-glow);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Base Styles ===== */
body {
    background: radial-gradient(ellipse at top, #1A1A1E 0%, #0A0A0B 50%);
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Glass Morphism ===== */
.glass {
    background: rgba(26, 26, 30, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-light {
    background: rgba(35, 35, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ===== Card Enhancements ===== */
.card-elevated {
    background: linear-gradient(135deg, rgba(35, 35, 42, 0.8) 0%, rgba(26, 26, 30, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.card-elevated:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(93, 95, 239, 0.3);
}

.card-gradient {
    background: linear-gradient(135deg,
        rgba(93, 95, 239, 0.1) 0%,
        rgba(178, 140, 255, 0.05) 100%);
    border: 1px solid rgba(93, 95, 239, 0.2);
}

.card-stat {
    background: linear-gradient(135deg,
        rgba(35, 35, 42, 0.95) 0%,
        rgba(26, 26, 30, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.card-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--phantom-blue), var(--waveform-purple));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.card-stat:hover::before {
    opacity: 1;
}

.card-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(93, 95, 239, 0.3);
}

/* ===== Button Enhancements ===== */
.btn-primary {
    background: linear-gradient(135deg, #5D5FEF 0%, #7D7FFF 100%);
    box-shadow: 0 4px 12px rgba(93, 95, 239, 0.3);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 95, 239, 0.4);
}

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

.btn-success {
    background: linear-gradient(135deg, #00E096 0%, #00FFA3 100%);
    box-shadow: 0 4px 12px rgba(0, 224, 150, 0.3);
    transition: all var(--transition-base);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 224, 150, 0.4);
}

/* ===== Status Badges ===== */
.badge {
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: all var(--transition-base);
}

.badge-idea {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.2), rgba(107, 114, 128, 0.2));
    color: #D1D5DB;
    border: 1px solid rgba(156, 163, 175, 0.3);
}

.badge-demo {
    background: linear-gradient(135deg, rgba(93, 95, 239, 0.2), rgba(125, 127, 255, 0.15));
    color: #9D9FFF;
    border: 1px solid rgba(93, 95, 239, 0.4);
    box-shadow: 0 0 15px rgba(93, 95, 239, 0.2);
}

.badge-mixing {
    background: linear-gradient(135deg, rgba(178, 140, 255, 0.2), rgba(198, 170, 255, 0.15));
    color: #C8AAFF;
    border: 1px solid rgba(178, 140, 255, 0.4);
    box-shadow: 0 0 15px rgba(178, 140, 255, 0.2);
}

.badge-mastered, .badge-released {
    background: linear-gradient(135deg, rgba(0, 224, 150, 0.2), rgba(0, 255, 163, 0.15));
    color: #00FFA3;
    border: 1px solid rgba(0, 224, 150, 0.4);
    box-shadow: 0 0 15px rgba(0, 224, 150, 0.2);
}

/* ===== Input Enhancements ===== */
.input-enhanced {
    background: rgba(10, 10, 11, 0.6);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.input-enhanced:focus {
    background: rgba(10, 10, 11, 0.8);
    border-color: var(--phantom-blue);
    box-shadow: 0 0 0 3px rgba(93, 95, 239, 0.1), var(--shadow-glow-blue);
    outline: none;
}

.input-enhanced:hover:not(:focus) {
    border-color: rgba(255, 255, 255, 0.15);
}

select.input-enhanced {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239CA3AF' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* ===== Form Component System ===== */
.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(10, 10, 11, 0.6);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    color: #F5F5F7;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.form-input:focus {
    background: rgba(10, 10, 11, 0.8);
    border-color: var(--phantom-blue);
    box-shadow: 0 0 0 3px rgba(93, 95, 239, 0.1), 0 0 20px rgba(93, 95, 239, 0.2);
    outline: none;
    transform: translateY(-1px);
}

.form-input:hover:not(:focus) {
    border-color: rgba(255, 255, 255, 0.15);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.form-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    accent-color: var(--phantom-blue);
    transition: all var(--transition-base);
}

.form-checkbox:hover {
    transform: scale(1.1);
}

.form-label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 500;
    font-size: 0.9375rem;
    color: #F5F5F7;
    transition: color var(--transition-base);
}

.form-label-hint {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 400;
    margin-left: 0.25rem;
}

.form-section {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(35, 35, 42, 0.5) 0%, rgba(26, 26, 30, 0.5) 100%);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.form-section:focus-within {
    border-color: rgba(93, 95, 239, 0.3);
    box-shadow: 0 0 20px rgba(93, 95, 239, 0.15);
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #F5F5F7;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section-title::before {
    content: '';
    width: 4px;
    height: 1.5rem;
    background: linear-gradient(180deg, var(--phantom-blue), var(--waveform-purple));
    border-radius: 2px;
}

.form-error {
    background: rgba(255, 77, 77, 0.1);
    border: 1.5px solid var(--recording-red);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* ===== Table Enhancements ===== */
.table-modern {
    border-spacing: 0;
    border-collapse: separate;
}

.table-modern thead {
    background: linear-gradient(180deg, rgba(35, 35, 42, 0.8) 0%, rgba(26, 26, 30, 0.8) 100%);
    position: sticky;
    top: 0;
    z-index: 10;
}

.table-modern th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 1rem 1.5rem;
    white-space: nowrap;
}

.table-modern tbody tr {
    transition: all var(--transition-fast);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-modern tbody tr:hover {
    background: linear-gradient(90deg,
        rgba(93, 95, 239, 0.08) 0%,
        rgba(93, 95, 239, 0.04) 50%,
        rgba(93, 95, 239, 0.08) 100%);
    transform: scale(1.005);
    box-shadow: 0 2px 12px rgba(93, 95, 239, 0.15);
}

.table-modern tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.15);
}

.table-modern td {
    padding: 1rem 1.5rem;
}

/* ===== Progress Indicators ===== */
.progress-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.75rem;
    white-space: nowrap;
    transition: all var(--transition-base);
}

.progress-yes {
    background: linear-gradient(135deg, rgba(0, 224, 150, 0.2), rgba(0, 255, 163, 0.1));
    color: #00FFA3;
    border: 2px solid rgba(0, 224, 150, 0.5);
    box-shadow: 0 0 12px rgba(0, 224, 150, 0.3);
}

.progress-started {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.1));
    color: #FBBF24;
    border: 2px solid rgba(251, 191, 36, 0.5);
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.2);
}

.progress-no {
    background: rgba(55, 65, 81, 0.3);
    color: #6B7280;
    border: 2px solid rgba(75, 85, 99, 0.3);
}

/* ===== Tag Pills ===== */
.tag-pill {
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.tag-pill:hover {
    transform: translateY(-1px);
    filter: brightness(1.2);
}

/* ===== Icon Buttons ===== */
.icon-btn {
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    background: rgba(93, 95, 239, 0.15);
    transform: scale(1.1);
}

.icon-btn-danger:hover {
    background: rgba(255, 77, 77, 0.15);
    transform: scale(1.1);
}

/* ===== Loading States ===== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.08) 40px,
        rgba(255, 255, 255, 0.03) 80px
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
    border-radius: 0.5rem;
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton-title {
    height: 2rem;
    width: 60%;
    margin-bottom: 1rem;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn var(--transition-base) ease-out;
}

.animate-fade-in-scale {
    animation: fadeInScale var(--transition-base) ease-out;
}

.animate-slide-down {
    animation: slideDown var(--transition-base) ease-out;
}

/* ===== Stagger Animation (Enhanced) ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-item {
    opacity: 0;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.05s; }
.stagger-item:nth-child(2) { animation-delay: 0.1s; }
.stagger-item:nth-child(3) { animation-delay: 0.15s; }
.stagger-item:nth-child(4) { animation-delay: 0.2s; }
.stagger-item:nth-child(5) { animation-delay: 0.25s; }
.stagger-item:nth-child(6) { animation-delay: 0.3s; }
.stagger-item:nth-child(7) { animation-delay: 0.35s; }
.stagger-item:nth-child(8) { animation-delay: 0.4s; }

/* ===== Navigation Enhancement ===== */
.nav-link {
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--phantom-blue), var(--waveform-purple));
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===== Empty States ===== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    opacity: 0.4;
    animation: float 3s ease-in-out infinite;
}

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

/* ===== Tooltips ===== */
.tooltip {
    position: relative;
}

.tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 0.5rem 0.75rem;
    background: rgba(10, 10, 11, 0.95);
    color: white;
    font-size: 0.8125rem;
    border-radius: 0.375rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
}

.tooltip:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-12px);
}

/* ===== Search Enhancement ===== */
.search-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

.search-input {
    padding-left: 3rem;
}

.search-input:focus + .search-icon {
    color: var(--phantom-blue);
}

/* ===== Filter Chips ===== */
.filter-chip {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-base);
    border: 1.5px solid transparent;
}

.filter-chip:hover {
    background: rgba(93, 95, 239, 0.15);
    border-color: rgba(93, 95, 239, 0.3);
    transform: translateY(-1px);
}

.filter-chip.active {
    background: linear-gradient(135deg, rgba(93, 95, 239, 0.2), rgba(125, 127, 255, 0.15));
    border-color: var(--phantom-blue);
    color: var(--phantom-blue);
    box-shadow: 0 0 15px rgba(93, 95, 239, 0.2);
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(26, 26, 30, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(93, 95, 239, 0.3);
    border-radius: 6px;
    border: 2px solid rgba(26, 26, 30, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(93, 95, 239, 0.5);
}

/* ===== Enhanced Focus Ring System ===== */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--phantom-blue);
    outline-offset: 3px;
    border-radius: 0.375rem;
}

/* Specific focus states for buttons */
.btn-primary:focus-visible,
.btn-success:focus-visible {
    outline-color: white;
    outline-width: 3px;
    outline-offset: 4px;
}

/* Form input focus already has custom styling */
.form-input:focus-visible {
    outline: none; /* Using box-shadow instead */
}

/* Link focus */
a:focus-visible {
    outline-color: var(--phantom-blue);
    outline-offset: 2px;
    border-radius: 0.25rem;
}

/* Icon button focus */
.icon-btn:focus-visible,
.icon-btn-danger:focus-visible {
    outline: 2px solid var(--phantom-blue);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-to-main {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    background: var(--phantom-blue);
    color: white;
    border-radius: 0 0 0.5rem 0.5rem;
    font-weight: 600;
    z-index: 1000;
    transition: top var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.skip-to-main:focus {
    top: 0;
    outline: none;
}

/* ===== Mobile Song Card Styles (base - hidden on desktop) ===== */
.mobile-song-cards {
    display: none;
}

/* ===== Responsive Enhancements ===== */
@media (max-width: 768px) {
    .card-elevated:hover {
        transform: none;
    }

    .table-modern tbody tr:hover {
        transform: none;
    }

    /* Mobile Song Cards - show on mobile, hide table */
    .table-responsive {
        display: none !important;
    }

    .mobile-song-cards {
        display: block !important;
    }

    /* Touch Target Optimization */
    .icon-btn,
    .icon-btn-danger,
    button,
    .btn-primary,
    .btn-success {
        min-height: 44px;
        min-width: 44px;
    }

    /* Prevent iOS Zoom on Focus */
    .form-input,
    .form-textarea,
    input,
    textarea,
    select {
        font-size: 16px !important;
    }
}

.song-card-mobile {
    background: linear-gradient(135deg, rgba(35, 35, 42, 0.8), rgba(26, 26, 30, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    margin-bottom: 0.5rem;
    transition: all var(--transition-base);
}

.song-card-mobile:active {
    transform: scale(0.98);
    border-color: rgba(93, 95, 239, 0.3);
    background: linear-gradient(135deg, rgba(45, 45, 52, 0.9), rgba(36, 36, 40, 0.9));
}

.song-card-mobile:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

/* ===== Button Press Feedback ===== */
.button-clicked {
    animation: buttonPress 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes buttonPress {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* Smooth pulse for loading indicators */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===== Spotlight Search ===== */
#spotlight-search input::placeholder {
    opacity: 0.6;
}

#spotlight-search kbd {
    font-family: 'JetBrains Mono', 'SF Mono', Monaco, monospace;
}

/* Spotlight result highlight animation */
@keyframes spotlight-result-enter {
    from {
        opacity: 0;
        transform: translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#spotlight-search a {
    animation: spotlight-result-enter 0.2s ease-out;
}

#spotlight-search a:nth-child(1) { animation-delay: 0s; }
#spotlight-search a:nth-child(2) { animation-delay: 0.03s; }
#spotlight-search a:nth-child(3) { animation-delay: 0.06s; }
#spotlight-search a:nth-child(4) { animation-delay: 0.09s; }
#spotlight-search a:nth-child(5) { animation-delay: 0.12s; }
#spotlight-search a:nth-child(6) { animation-delay: 0.15s; }
#spotlight-search a:nth-child(7) { animation-delay: 0.18s; }
#spotlight-search a:nth-child(8) { animation-delay: 0.21s; }
#spotlight-search a:nth-child(9) { animation-delay: 0.24s; }
#spotlight-search a:nth-child(10) { animation-delay: 0.27s; }

/* ===== HTMX Loading Indicators ===== */
.htmx-indicator {
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease-out;
}

.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator {
    display: inline-flex;
    opacity: 1;
}

/* Smooth transition for content updates */
#song-results {
    transition: opacity 0.15s ease-out;
}

/* Results loading state */
#song-results.htmx-swapping {
    opacity: 0.5;
}

/* Animate in new results */
#song-results > * {
    animation: htmx-fade-in 0.25s ease-out;
}

@keyframes htmx-fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Print Styles ===== */
@media print {
    .glass,
    .glass-light,
    .card-elevated {
        background: white;
        color: black;
        border: 1px solid #ddd;
    }
}
