:root {
    /* Musik-inspirierte Farbpalette */
    --primary-purple: #8B5CF6;
    --primary-pink: #EC4899;
    --accent-blue: #3B82F6;
    --accent-cyan: #06B6D4;
    --accent-orange: #F97316;
    --success-green: #10B981;
    
    /* Gradienten - Audio Aura inspiriert */
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-passionate: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-calm: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    --gradient-energetic: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    --gradient-dreamy: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    
    /* Hintergrund */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(255, 255, 255, 0.06);
    --bg-card-hover: rgba(255, 255, 255, 0.1);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --glass-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* Spacing */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-darker);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    color: var(--text-primary);
}

/* Animated Mesh Background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: meshMove 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes meshMove {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 1; }
}

/* Vinyl Decoration */
body::after {
    content: '';
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at center, transparent 30%, rgba(139, 92, 246, 0.05) 31%, transparent 32%),
        radial-gradient(circle at center, transparent 50%, rgba(236, 72, 153, 0.05) 51%, transparent 52%),
        conic-gradient(from 0deg, rgba(255, 255, 255, 0.02), transparent, rgba(255, 255, 255, 0.02));
    bottom: -300px;
    right: -300px;
    z-index: 0;
    opacity: 0.4;
    animation: vinylSpin 30s linear infinite;
}

@keyframes vinylSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

body.modal-open {
    overflow: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.col-md-6 {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 280px;
}

.g-3 {
    gap: 1.25rem;
}

/* Utility Classes */
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.text-center { text-align: center; }
.d-block { display: block; }
.h6 { font-size: 1rem; font-weight: 600; }

/* Header */
.site-header {
    position: relative;
    z-index: 10;
    padding: 1.5rem 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.brand:hover {
    transform: translateX(4px);
}

.brand-logo {
    height: 48px;
    width: 48px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.brand-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: var(--gradient-passionate);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 4rem 0 3rem;
    position: relative;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientFlow 8s ease infinite;
    text-shadow: 0 0 80px rgba(139, 92, 246, 0.3);
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-passionate);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glass-shadow-lg);
    border-color: rgba(255, 255, 255, 0.25);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Form Elements */
.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-label i {
    font-size: 1.1rem;
    color: var(--primary-purple);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

.form-control::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

/* Platform Selection */
.platform-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}

.platform-card {
    position: relative;
    cursor: pointer;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    padding: 1.75rem 1rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, var(--platform-color, transparent) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.platform-card-active {
    border-color: var(--platform-color, var(--primary-purple));
    background: linear-gradient(135deg, 
        rgba(var(--platform-color-rgb, 139, 92, 246), 0.15) 0%, 
        rgba(var(--platform-color-rgb, 139, 92, 246), 0.05) 100%);
    box-shadow: 0 0 0 1px var(--platform-color, var(--primary-purple)),
                0 8px 32px rgba(var(--platform-color-rgb, 139, 92, 246), 0.3);
}

.platform-card-active::before {
    opacity: 0.2;
}

.platform-card[data-platform="spotify"] {
    --platform-color: #1DB954;
    --platform-color-rgb: 29, 185, 84;
}

.platform-card[data-platform="deezer"] {
    --platform-color: #FF0092;
    --platform-color-rgb: 255, 0, 146;
}

.platform-card[data-platform="itunes"] {
    --platform-color: #FA57C1;
    --platform-color-rgb: 250, 87, 193;
}

.platform-card[data-platform="lastfm"] {
    --platform-color: #D51007;
    --platform-color-rgb: 213, 16, 7;
}

.platform-card-inner {
    position: relative;
    z-index: 1;
}

.platform-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    background: var(--platform-color, var(--primary-purple));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.1) rotate(-5deg);
}

.platform-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.platform-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-passionate);
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.6);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
}

.btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-outline-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--accent-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.875rem;
}

.btn-outline-info:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--accent-blue);
    color: #fff;
    transform: scale(1.05);
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
}

/* Recent Searches */
.recent-searches {
    animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recent-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary) !important;
    margin-bottom: 1rem !important;
}

.recent-title i {
    color: var(--primary-purple);
}

.recent-searches-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0 !important;
}

/* Results */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.results-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.02em;
}

.results-header h2 i {
    font-size: 2.25rem;
    background: var(--gradient-passionate);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Platform Section */
.platform-section {
    margin-bottom: 3rem;
}

.platform-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Track List */
.list-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.list-group-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.list-group-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-passionate);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.list-group-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
}

.list-group-item:hover::before {
    opacity: 1;
}

.list-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Track Cover */
.cover-trigger {
    flex-shrink: 0;
    border: none;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.track-cover {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.track-cover:hover {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.track-placeholder {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.track-placeholder i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* Track Info */
.track-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.track-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.track-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-title:hover {
    background: var(--gradient-passionate);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.year-badge {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.track-artist {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.track-artist i {
    color: var(--primary-purple);
}

.track-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.track-album {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.track-album i {
    color: var(--primary-pink);
}

/* Alerts */
.alert-warning {
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-warning i {
    color: var(--accent-orange);
    font-size: 1.25rem;
}

/* Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: rgba(20, 20, 35, 0.98);
    backdrop-filter: blur(32px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
    max-width: 960px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.modal-box-large {
    padding: 2rem 2.5rem;
}

.modal-box-cover {
    padding: 1.5rem;
    max-width: 700px;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-title i {
    color: var(--primary-purple);
}

.modal-body {
    padding: 1.5rem 0;
    overflow-y: auto;
}

.modal-body-cover {
    padding: 1rem 0;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Close Button */
.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    transform: scale(1.1);
}

.btn-icon-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.modal-close-top {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
}

/* Cover Image */
.cover-image {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
}

/* Lyrics */
pre {
    white-space: pre-wrap;
    font-family: 'Inter', monospace;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Text Utilities */
.text-muted {
    color: var(--text-muted);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.text-white {
    color: var(--text-primary);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 3rem;
    }
    
    .platform-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .page-header {
        padding: 2.5rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .glass-card {
        padding: 1.75rem;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .results-header h2 {
        font-size: 1.5rem;
    }
    
    .list-row {
        gap: 1rem;
    }
    
    .track-cover,
    .track-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .modal-box {
        width: 95%;
    }
    
    .modal-box-large {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .site-header-inner {
        justify-content: center;
    }
    
    .brand-title {
        font-size: 1.2rem;
    }
    
    .brand-logo {
        height: 40px;
        width: 40px;
    }
    
    .platform-card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .platform-card {
        padding: 1.25rem 0.75rem;
    }
    
    .platform-icon {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
    }
    
    .btn-primary {
        width: 100%;
        padding: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.5);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.7);
}
/* Footer */
.site-footer {
    position: relative;
    z-index: 10;
    margin-top: 5rem;
    padding: 3rem 0 2rem;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--gradient-passionate);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
    animation: vinylSpin 8s linear infinite;
}

.footer-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.footer-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-passionate);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-version {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: 'Courier New', monospace;
}

.footer-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: var(--primary-pink);
    transform: translateX(4px);
}

.footer-email i {
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.footer-bottom i {
    color: var(--primary-pink);
    font-size: 0.85rem;
    animation: heartBeat 1.5s ease infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 2.5rem 0 1.5rem;
        margin-top: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
        align-items: center;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .footer-icon {
        width: 48px;
        height: 48px;
    }
    
    .footer-icon i {
        font-size: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-email {
        font-size: 0.85rem;
    }
}
