

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



:root {
    /* Stunning Black Gray White Color Palette */
    --primary: #ffffff;
    --primary-dark: #e5e5e5;
    --primary-light: #f5f5f5;
    --secondary: #a3a3a3;
    --accent: #737373;
    --success: #d4d4d4;
    --warning: #a3a3a3;
    --danger: #8a8a8a;
    --info: #737373;
    
    /* Premium Background Colors */
    --bg-primary: #000000;
    --bg-secondary: #0f0f0f;
    --bg-tertiary: #1a1a1a;
    --bg-card: #1f1f1f;
    --bg-hover: #2a2a2a;
    --bg-elevated: #252525;
    
    /* High Contrast Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #d4d4d4;
    --text-muted: #a3a3a3;
    --text-dim: #737373;
    
    /* Sharp Border Colors */
    --border-color: #333333;
    --border-light: #404040;
    --border-lighter: #525252;
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
    --gradient-secondary: linear-gradient(135deg, #525252 0%, #737373 100%);
    --gradient-dark: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.95) 100%);
    --gradient-subtle: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
    --gradient-shine: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #e5e5e5 100%);
    
    /* Smooth Animations */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Modern Border Radius */
    --radius: 0.5rem;
    --radius-lg: 0.875rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.75rem;
    --radius-full: 9999px;
    
    /* Dramatic Shadows */
    --shadow-sm: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 16px 40px -8px rgba(0, 0, 0, 0.7);
    --shadow-xl: 0 24px 60px -12px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 30px rgba(255, 255, 255, 0.15);
    --shadow-glow-strong: 0 0 40px rgba(255, 255, 255, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, textarea, select {
    font-family: inherit;
}

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

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

.required {
    color: var(--danger);
}

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

.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger,
.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    color: #000000;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    font-weight: 700;
    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.4), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.25), 0 0 30px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #f5f5f5 0%, #d4d4d4 100%);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-success {
    background: var(--success);
    color: white;
}

.btn-success:hover {
    background: #059669;
}

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

.btn-danger:hover {
    background: #dc2626;
}

.btn-text {
    padding: 0.5rem 1rem;
    color: var(--primary);
}

.btn-large {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--bg-hover);
    color: var(--text-primary);
}

.btn-social {
    flex: 1;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    font-weight: 500;
    font-size: 0.8125rem;
}

.btn-logout {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.btn-logout:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
    transition: var(--transition);
}

.logo-img:hover {
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
    transform: translateY(-1px);
}

.logo i {
    font-size: 1.5rem;
    color: #ffffff;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    border-radius: var(--radius);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.5);
    color: #000000;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.btn-primary-nav {
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    color: #000000;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.2);
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.35);
    background: linear-gradient(135deg, #f5f5f5 0%, #d4d4d4 100%);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
}

.hamburger span {
    width: 1.5rem;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

    /* ===================================
       HERO SECTION - CENTERED
       =================================== */

    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 5rem;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        z-index: -1;
    }

    .gradient-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(100px);
        opacity: 0.3;
        animation: float 20s ease-in-out infinite;
    }

    .orb-1 {
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
        top: -250px;
        left: -250px;
    }

    .orb-2 {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(200, 200, 200, 0.12) 0%, rgba(200, 200, 200, 0) 70%);
        bottom: -200px;
        right: -200px;
        animation-delay: -5s;
    }

    .orb-3 {
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(150, 150, 150, 0.1) 0%, rgba(150, 150, 150, 0) 70%);
        top: 50%;
        right: 10%;
        animation-delay: -10s;
    }

    @keyframes float {
        0%, 100% { transform: translate(0, 0) scale(1); }
        33% { transform: translate(30px, -30px) scale(1.1); }
        66% { transform: translate(-20px, 20px) scale(0.9); }
    }

    .hero-container-center {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-content-center {
        max-width: 900px;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 1;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 0.625rem 1.25rem;
        border-radius: var(--radius-full);
        color: #ffffff;
        font-size: 1rem;
        margin-bottom: 2rem;
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
        font-weight: 500;
    }

    .hero-title {
        font-size: 5rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 2rem;
        font-family: 'Poppins', sans-serif;
        color: #ffffff;
        text-shadow: 0 2px 20px rgba(255, 255, 255, 0.2);
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        color: var(--text-secondary);
        margin-bottom: 2.5rem;
        line-height: 1.8;
        text-align: center;
        max-width: 700px;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        margin-bottom: 4rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        width: 100%;
        max-width: 800px;
        justify-items: center;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ffffff;
        text-shadow: 0 2px 12px rgba(255, 255, 255, 0.3);
    }

    .stat-label {
        font-size: 1rem;
        color: var(--text-secondary);
        margin-top: 0.5rem;
        font-weight: 500;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .hero-title {
            font-size: 4rem;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
        }
        
        .hero-stats {
            gap: 2rem;
        }
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 3rem;
        }
        
        .hero-subtitle {
            font-size: 1.125rem;
        }
        
        .hero-badge {
            font-size: 0.875rem;
            padding: 0.5rem 1rem;
        }
        
        .hero-stats {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .stat-number {
            font-size: 2rem;
        }
        
        .stat-label {
            font-size: 0.875rem;
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1rem;
        }
        
        .hero-buttons {
            flex-direction: column;
            width: 100%;
        }
        
        .hero-buttons a {
            width: 100%;
            justify-content: center;
        }
        
        .hero-stats {
            gap: 1.5rem;
        }
    }

/* ===================================
   SECTIONS & FEATURES (Part 2)
   =================================== */

/* Sections */
.features, .platforms, .pricing, .about, .contact {
    padding: 6rem 0;
    position: relative;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.2);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-light);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    background: var(--bg-elevated);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Platforms */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.platform-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    color: #ffffff;
    font-weight: 600;
}

.platform-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    background: var(--bg-hover);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.platform-item i {
    font-size: 2.5rem;
    color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.platforms-more {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Pricing */
.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    background: var(--bg-card);
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.toggle-btn.active {
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    color: #000000;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.pricing-card.featured {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3), 0 8px 32px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%), var(--bg-card);
}

.pricing-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-badge.popular {
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    color: #000000;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    border: none;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

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

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.3);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    font-size: 1.125rem;
}

.fa-check {
    color: #ffffff;
}

.fa-times {
    color: var(--text-muted);
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    color: #000000;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.about-feature h4 {
    margin-bottom: 0.25rem;
    color: #ffffff;
    font-weight: 700;
}

.about-feature p {
    color: var(--text-secondary);
    margin: 0;
}

.about-visual {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #ffffff;
    opacity: 0.5;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    color: #000000;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.contact-item h4 {
    margin-bottom: 0.25rem;
    color: #ffffff;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    border-color: transparent;
    transform: translateY(-3px);
    color: #000000;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

/* ==== CONTACT FORM ==== */
#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 90%; /* Esnek genişlik */
    width: 100%;     /* Tam genişlik almasını sağlar */
    margin: 0 auto;
    box-sizing: border-box; /* Padding ve border'ı genişliğe dahil eder */
}
#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #2c2c2c;
    background-color: #111;
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border 0.25s ease, background 0.25s ease;
    width: 100%;
}


#contactForm input:focus,
#contactForm textarea:focus {
    border-color: #020086; 
    background-color: #181818;
}

/* Placeholder rengi */
#contactForm ::placeholder {
    color: #888;
}


#contactForm button {
    background: #020086;
    color: #000;
    font-weight: 600;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

#contactForm button:hover {
    background: #020086;
    transform: translateY(-2px);
}


@media (max-width: 600px) {
    #contactForm {
        width: 90%;
    }
}


/* Forms */
.contactForm,
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: #ffffff;
    margin-bottom: 0;
    display: block;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

.form-input,
select.form-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 0.8125rem;
    transition: var(--transition);
}

.input-wrapper .form-input {
    padding-left: 2.5rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

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

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
    accent-color: #ffffff;
}

.checkbox-label:hover {
    color: #ffffff;
}

.checkbox-label a {
    color: #ffffff;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--text-secondary);
}

.checkbox-group {
    margin: 0;
}

.checkbox-group .checkbox-label {
    font-size: 0.8125rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0 1.5rem 0;
    gap: 1rem;
}

.forgot-password {
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
}

.forgot-password:hover {
    color: var(--text-secondary);
    text-decoration: none;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-bottom i {
    color: #ffffff;
}

body.no-scroll {
    overflow: hidden;
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--bg-tertiary);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    animation: slideInRight 0.3s ease-out;
    z-index: 9999;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.success { border-left: 4px solid var(--success); }
.toast.error { border-left: 4px solid var(--danger); }
.toast.warning { border-left: 4px solid var(--warning); }
.toast.info { border-left: 4px solid var(--info); }

.toast-icon { font-size: 1.5rem; }
.toast.success .toast-icon { color: var(--success); }
.toast.error .toast-icon { color: var(--danger); }
.toast.warning .toast-icon { color: var(--warning); }
.toast.info .toast-icon { color: var(--info); }

.toast-content { flex: 1; }
.toast-title { font-weight: 600; margin-bottom: 0.25rem; }
.toast-message { font-size: 0.875rem; color: var(--text-secondary); }

.toast-close {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: var(--text-secondary);
    cursor: pointer;
}

.toast-close:hover { background: var(--bg-hover); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--bg-hover); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--border-light); }

::selection { background: var(--primary); color: white; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-title { font-size: 3rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .charts-row, .content-row { grid-template-columns: 1fr; }
    .contact-content, .about-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .sidebar { transform: translateX(-100%); }
    .sidebar.active { transform: translateX(0); }
    .main-content { margin-left: 0; }
    .mobile-menu-toggle { display: flex; }
    .hamburger { display: flex; }
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .features-grid, .pricing-grid { grid-template-columns: 1fr; }
    .platforms-grid { grid-template-columns: repeat(2, 1fr); }
    .search-box { display: none; }
    .stats-grid { grid-template-columns: 1fr; }
}

/* ===================================
   AUTH PAGES & DASHBOARD (Part 3)
   =================================== */

/* Auth Pages */
.auth-page { min-height: 100vh; max-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 1rem; position: relative; overflow: hidden; }
.auth-bg { position: absolute; inset: 0; z-index: -1; }
.auth-container { width: 100%; max-width: 580px; max-height: 95vh; z-index: 1; overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none; }
.auth-container::-webkit-scrollbar { width: 0; display: none; }
.auth-container::-webkit-scrollbar-track { background: transparent; }
.auth-container::-webkit-scrollbar-thumb { background: transparent; }
.auth-container::-webkit-scrollbar-thumb:hover { background: transparent; }
.auth-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 0.875rem 2.25rem 0.875rem; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.auth-form { display: flex; flex-direction: column; gap: 0.25rem; }
.auth-form .form-group.full-width { width: 100%; }
.auth-form .btn-block { width: 100%; margin-top: 0.125rem; }
.auth-form .form-hint { display: none; }
.auth-divider { width: 100%; }
.social-auth { width: 100%; }
.auth-footer { width: 100%; }
.auth-header { text-align: center; margin-bottom: 0.625rem; }
.auth-header .logo { justify-content: center; margin-bottom: 0.25rem; font-size: 1.125rem; }
.auth-header h1 { font-size: 1.25rem; margin-bottom: 0.125rem; color: #ffffff; font-weight: 700; line-height: 1.1; }
.auth-header p { color: var(--text-secondary); font-size: 0.8125rem; }
.auth-divider { position: relative; text-align: center; margin: 0.25rem 0; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border-color); }
.auth-divider span { position: relative; background: var(--bg-card); padding: 0 0.875rem; color: var(--text-secondary); font-size: 0.8125rem; }
.social-auth { display: flex; gap: 1rem; }
.auth-footer { text-align: center; margin-top: 0.25rem; color: var(--text-secondary); font-size: 0.8125rem; }
.auth-footer a { color: #ffffff; font-weight: 600; transition: var(--transition); }
.auth-footer a:hover { color: var(--text-secondary); text-decoration: none; }

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0;
    width: 100%;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    text-align: center;
}

.step-number {
    width: 1.375rem;
    height: 1.375rem;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.6875rem;
    transition: var(--transition);
    color: var(--text-secondary);
}

.step.active .step-number {
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    border-color: rgba(255, 255, 255, 0.3);
    color: #000000;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}

.step-label {
    font-weight: 500;
    font-size: 0.625rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.step.active .step-label {
    color: #ffffff;
    font-weight: 600;
}

.step-line {
    flex: 1;
    height: 1px;
    background: var(--border-color);
    margin: 0 0.25rem;
    align-self: flex-start;
    margin-top: 0.6875rem;
}

/* Account Type Selector */
.account-type-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.account-type-option { position: relative; }
.account-type-option input[type="radio"] { position: absolute; opacity: 0; }
.account-type-option label { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 1.5rem 1rem; background: var(--bg-tertiary); border: 2px solid var(--border-color); border-radius: var(--radius-lg); cursor: pointer; transition: var(--transition); text-align: center; }
.account-type-option input[type="radio"]:checked + label { background: rgba(139, 92, 246, 0.1); border-color: var(--primary); }
.account-type-option label i { font-size: 2rem; background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.account-type-option label span { font-weight: 600; }
.account-type-option label small { font-size: 0.75rem; color: var(--text-secondary); }

/* Password Strength */
.password-strength { margin-top: 0.5rem; }
.strength-bar { height: 4px; background: var(--bg-tertiary); border-radius: var(--radius-full); overflow: hidden; margin-bottom: 0.25rem; }
.strength-fill { height: 100%; width: 0%; background: var(--danger); transition: var(--transition); }
.strength-text { font-size: 0.75rem; color: var(--text-secondary); }

/* OTP Verification */
.otp-verification { text-align: center; }
.otp-header { margin-bottom: 2rem; }
.otp-icon { width: 80px; height: 80px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin: 0 auto 1.5rem; }
.otp-header h2 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.otp-header p { color: var(--text-secondary); }
.otp-inputs { display: flex; gap: 0.75rem; justify-content: center; margin-bottom: 1.5rem; }
.otp-input { width: 3.5rem; height: 3.5rem; text-align: center; font-size: 1.5rem; font-weight: 700; background: var(--bg-tertiary); border: 2px solid var(--border-color); border-radius: var(--radius); color: var(--text-primary); transition: var(--transition); }
.otp-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1); }
.otp-timer { margin-bottom: 1.5rem; color: var(--text-secondary); }
.resend-code { margin-top: 1.5rem; color: var(--text-secondary); }
.resend-code button { color: var(--primary); font-weight: 600; background: none; border: none; cursor: pointer; }
.resend-code button:disabled { color: var(--text-muted); cursor: not-allowed; }

/* Success Message */
.success-message { text-align: center; }
.success-icon { width: 100px; height: 100px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 3rem; margin: 0 auto 2rem; animation: scaleIn 0.5s ease-out; }
@keyframes scaleIn { from { transform: scale(0); } to { transform: scale(1); } }
.success-message h2 { font-size: 2rem; margin-bottom: 1rem; }
.success-message p { color: var(--text-secondary); margin-bottom: 2rem; }

/* Dashboard Layout */
.dashboard-page { display: flex; min-height: 100vh; }

/* Sidebar - Ultra Modern Premium */
.sidebar { 
    width: 280px; 
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.08); 
    display: flex; 
    flex-direction: column; 
    position: fixed; 
    left: 0; 
    top: 0; 
    bottom: 0; 
    z-index: 100; 
    transition: var(--transition);
    backdrop-filter: blur(24px);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.9), inset -1px 0 0 rgba(255, 255, 255, 0.03);
}

.sidebar-header { 
    padding: 2rem 1.5rem; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    position: relative;
}

.sidebar-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.sidebar-header .logo {
    justify-content: flex-start;
    flex-direction: row;
}

.sidebar-header .logo .logo-img {
    height: 42px;
    width: auto;
    max-width: 42px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.15));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-header .logo .logo-img:hover {
    filter: drop-shadow(0 6px 20px rgba(255, 255, 255, 0.25));
    transform: translateY(-2px) scale(1.05);
}

.sidebar-header .logo span {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
}

.logo i {
    font-size: 1.5rem;
    color: #8b5cf6;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
}

.hero-badge i {
    color: #ffffff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.sidebar-toggle { 
    width: 2.75rem; 
    height: 2.75rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: var(--radius-xl); 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%); 
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sidebar-toggle:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05) rotate(90deg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.sidebar-nav { 
    flex: 1; 
    padding: 2rem 1.25rem; 
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-nav::-webkit-scrollbar {
    width: 4px;
}

.sidebar-nav::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 2px;
}

.sidebar-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.5);
}

.nav-item { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    padding: 1rem 1.25rem; 
    border-radius: var(--radius-lg); 
    color: #737373; 
    font-weight: 500; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    margin-bottom: 0.5rem; 
    position: relative;
    border: 1px solid transparent;
    font-size: 0.9375rem;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
    transition: width 0.3s ease;
}

.nav-item:hover { 
    background: rgba(255, 255, 255, 0.05); 
    color: #d4d4d4;
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.nav-item:hover::before {
    width: 100%;
}

.nav-item.active { 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 4px;
    background: linear-gradient(180deg, #ffffff 0%, #d4d4d4 100%);
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.5), 0 0 4px rgba(255, 255, 255, 0.8);
}

.nav-item i { 
    font-size: 1.25rem; 
    width: 1.5rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-item:hover i {
    opacity: 0.85;
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.2));
}

.nav-item.active i {
    opacity: 1;
    color: #ffffff;
    transform: scale(1.2);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}

.badge { 
    margin-left: auto; 
    background: rgba(255, 255, 255, 0.15); 
    color: var(--text-primary); 
    padding: 0.25rem 0.625rem; 
    border-radius: var(--radius-full); 
    font-size: 0.6875rem; 
    font-weight: 700; 
}

.sidebar-footer { 
    padding: 1.5rem; 
    border-top: 1px solid rgba(255, 255, 255, 0.08); 
    display: flex; 
    align-items: center; 
    gap: 0.875rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(12px);
    position: relative;
}

.sidebar-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.user-info { 
    display: flex; 
    align-items: center; 
    gap: 0.875rem; 
    flex: 1; 
}

.user-avatar { 
    width: 2.75rem; 
    height: 2.75rem; 
    border-radius: 50%; 
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-avatar:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(255, 255, 255, 0.08), 0 0 20px rgba(255, 255, 255, 0.15);
    transform: scale(1.08);
}

.user-avatar img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.user-details {
    flex: 1;
    min-width: 0;
}

.user-name { 
    font-weight: 600; 
    font-size: 0.875rem;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-plan { 
    font-size: 0.6875rem; 
    color: #71717a;
    font-weight: 500;
    margin-top: 0.125rem;
}

.btn-logout {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn-logout:hover {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3), 0 0 20px rgba(239, 68, 68, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Main Content */
.main-content { 
    flex: 1; 
    margin-left: 280px; 
    background: var(--bg-primary);
    position: relative;
}

.main-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 280px;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.015) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.main-content > * {
    position: relative;
    z-index: 1;
}

/* Top Bar - Premium Modern */
.top-bar { 
    height: 80px; 
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
    padding: 0 2.5rem; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    position: sticky; 
    top: 0; 
    z-index: 50;
    backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.top-bar-left { display: flex; align-items: center; gap: 1.5rem; }

.mobile-menu-toggle { 
    display: none; 
    width: 2.5rem; 
    height: 2.5rem; 
    align-items: center; 
    justify-content: center; 
    border-radius: var(--radius-lg); 
    background: rgba(255, 255, 255, 0.05); 
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-title { 
    font-size: 1.75rem; 
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.15));
}

.top-bar-right { display: flex; align-items: center; gap: 1.25rem; }

.search-box { 
    position: relative; 
    width: 320px; 
}

.search-box i { 
    position: absolute; 
    left: 1.125rem; 
    top: 50%; 
    transform: translateY(-50%); 
    color: var(--text-muted); 
}

.search-box input { 
    width: 100%; 
    padding: 0.875rem 1.25rem 0.875rem 3.25rem; 
    background: rgba(255, 255, 255, 0.04); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: var(--radius-xl); 
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.search-box input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05), inset 0 2px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.notification-btn { 
    position: relative; 
    width: 3rem; 
    height: 3rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: var(--radius-xl); 
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%); 
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.notification-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.notification-badge { 
    position: absolute; 
    top: -0.25rem; 
    right: -0.25rem; 
    background: rgba(255, 255, 255, 0.15); 
    color: var(--text-primary); 
    width: 1.25rem; 
    height: 1.25rem; 
    border-radius: 50%; 
    font-size: 0.625rem; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.user-menu-btn { 
    width: 3rem; 
    height: 3rem; 
    border-radius: 50%; 
    overflow: hidden; 
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.user-menu-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(255, 255, 255, 0.08), 0 0 20px rgba(255, 255, 255, 0.1);
}

.user-menu-btn img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

/* Dashboard Content */
.dashboard-content { 
    padding: 3rem; 
    max-width: 1600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out;
}

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

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

.welcome-text h2 { 
    font-size: 2.5rem; 
    margin-bottom: 0.75rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 50%, #d4d4d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 16px rgba(255, 255, 255, 0.2));
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: drop-shadow(0 4px 16px rgba(255, 255, 255, 0.2)); }
    50% { filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.35)); }
}

.welcome-text p { 
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

/* Stats Grid - Ultra Modern Monochrome */
.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 1.25rem; 
    margin-bottom: 2.5rem; 
}

.stat-card { 
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: var(--radius-xl); 
    padding: 2rem; 
    display: flex; 
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.98) 0%, rgba(31, 31, 31, 1) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.stat-icon { 
    width: 72px; 
    height: 72px; 
    border-radius: var(--radius-xl); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 2rem; 
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.stat-icon.purple,
.stat-icon.blue,
.stat-icon.pink,
.stat-icon.green,
.stat-icon.orange { 
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.stat-info { flex: 1; }

.stat-value { 
    font-size: 2.5rem; 
    font-weight: 900; 
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
}

.stat-card:hover .stat-value {
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
    transform: scale(1.05);
}

.stat-label { 
    color: var(--text-secondary); 
    font-size: 0.8125rem; 
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

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

.stat-change { 
    display: flex; 
    align-items: center; 
    gap: 0.375rem; 
    font-size: 0.8125rem; 
    color: var(--text-muted);
    font-weight: 500;
}

.stat-change.positive { 
    color: var(--text-secondary); 
}

.stat-change i { font-size: 0.75rem; }

/* ===================================
   CHARTS, TABLES & COMPONENTS (Part 4)
   =================================== */

/* Charts - Modern Monochrome */
.charts-row { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr; 
    gap: 1.25rem; 
    margin-bottom: 2.5rem; 
}

.chart-card { 
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: var(--radius-xl); 
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.chart-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

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

.chart-card.full-width { grid-column: 1 / -1; }

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

.chart-header h3 { 
    font-size: 1.125rem; 
    margin-bottom: 0.375rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.chart-header p { 
    font-size: 0.8125rem; 
    color: var(--text-muted);
    font-weight: 500;
}

.chart-filter, .filter-select, .date-range-select { 
    padding: 0.625rem 1rem; 
    background: var(--bg-tertiary); 
    border: 1px solid var(--border-color); 
    border-radius: var(--radius-lg); 
    color: var(--text-primary); 
    font-size: 0.875rem;
    transition: var(--transition);
    font-weight: 500;
}

.chart-filter:hover, .filter-select:hover, .date-range-select:hover {
    background: var(--bg-hover);
    border-color: var(--border-light);
}

.chart-tabs { display: flex; gap: 0.5rem; }

.chart-tab { 
    padding: 0.625rem 1.25rem; 
    background: transparent; 
    border: 1px solid transparent;
    color: var(--text-muted); 
    font-weight: 600; 
    border-radius: var(--radius-lg); 
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
}

.chart-tab:hover {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
}

.chart-tab.active { 
    background: rgba(255, 255, 255, 0.05); 
    color: var(--text-primary);
    border-color: var(--border-color);
}

.chart-container { 
    position: relative; 
    height: 300px;
}

.chart-container.large { 
    height: 400px; 
}

/* Platform Stats */
.platform-stats, .platform-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.platform-stat, .platform-item { display: flex; justify-content: space-between; align-items: center; }
.platform-info { display: flex; align-items: center; gap: 0.75rem; }
.platform-info i { font-size: 1.5rem; }
.platform-value, .platform-percentage { font-weight: 600; }
.platform-stats { display: flex; flex-direction: column; gap: 0.25rem; align-items: flex-end; }
.platform-count { font-size: 0.875rem; color: var(--text-secondary); }

/* Country List */
.country-list { display: flex; flex-direction: column; gap: 1rem; }
.country-item { display: grid; grid-template-columns: auto auto 1fr auto; gap: 1rem; align-items: center; }
.country-rank { width: 2rem; height: 2rem; background: var(--bg-tertiary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; }
.country-flag { font-size: 1.5rem; }
.country-info { flex: 1; }
.country-name { font-weight: 600; margin-bottom: 0.25rem; }
.country-streams { font-size: 0.875rem; color: var(--text-secondary); }
.country-bar { width: 100px; height: 6px; background: var(--bg-tertiary); border-radius: var(--radius-full); overflow: hidden; }
.country-fill { height: 100%; background: var(--gradient-primary); }

/* Activity */
.content-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.activity-card, .tracks-card { 
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.95) 0%, rgba(26, 26, 26, 0.98) 100%); 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: var(--radius-xl); 
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-card:hover, .tracks-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}
.card-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-header h3 { 
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.view-all { color: var(--primary); font-size: 0.875rem; font-weight: 600; }
.view-all:hover { text-decoration: underline; }
.activity-list, .tracks-list { display: flex; flex-direction: column; gap: 1rem; }
.activity-item { display: flex; gap: 1rem; }
.activity-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.activity-icon.success { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.activity-icon.info { background: rgba(59, 130, 246, 0.1); color: var(--accent); }
.activity-icon.purple { background: rgba(139, 92, 246, 0.1); color: var(--primary); }
.activity-icon.danger { background: rgba(239, 68, 68, 0.1); color: var(--danger); }
.activity-info { flex: 1; }
.activity-title { font-weight: 600; margin-bottom: 0.25rem; }
.activity-desc { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 0.25rem; }
.activity-time { font-size: 0.75rem; color: var(--text-muted); }

/* Tracks */
.track-item { display: flex; align-items: center; gap: 1rem; padding: 0.75rem; background: var(--bg-tertiary); border-radius: var(--radius); transition: var(--transition); }
.track-item:hover { background: var(--bg-hover); }
.track-rank { width: 2rem; height: 2rem; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; }
.track-cover { width: 50px; height: 50px; border-radius: var(--radius); overflow: hidden; }
.track-cover img { width: 100%; height: 100%; object-fit: cover; }
.track-info { flex: 1; }
.track-title { font-weight: 600; margin-bottom: 0.25rem; }
.track-artist { font-size: 0.875rem; color: var(--text-secondary); }
.track-stats { display: flex; align-items: center; gap: 0.5rem; }
.track-streams { display: flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; color: var(--text-secondary); }

/* Data Tables */
.data-table-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 2rem; }
.header-actions { display: flex; gap: 1rem; align-items: center; }
.search-input { padding: 0.5rem 1rem; background: var(--bg-tertiary); border: 1px solid var(--border-color); border-radius: var(--radius); color: var(--text-primary); }
.data-table { overflow-x: auto; margin-top: 1.5rem; }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--bg-tertiary); }
th { padding: 1rem; text-align: left; font-weight: 600; font-size: 0.875rem; color: var(--text-secondary); border-bottom: 1px solid var(--border-color); }
td { padding: 1rem; border-bottom: 1px solid var(--border-color); }
tr:last-child td { border-bottom: none; }
.track-cell { display: flex; align-items: center; gap: 0.75rem; }
.track-cell img { width: 40px; height: 40px; border-radius: var(--radius); }
.track-meta { font-size: 0.75rem; color: var(--text-secondary); }
.trend { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.25rem 0.5rem; border-radius: var(--radius); font-size: 0.875rem; font-weight: 600; }
.trend.up { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.trend.down { background: rgba(239, 68, 68, 0.1); color: var(--danger); }

/* Releases */
.filter-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding: 1rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); }
.filter-tabs { display: flex; gap: 0.5rem; }
.filter-tab { padding: 0.5rem 1rem; background: transparent; border: none; color: var(--text-secondary); font-weight: 500; border-radius: var(--radius); cursor: pointer; display: flex; align-items: center; gap: 0.5rem; }
.filter-tab.active { background: var(--gradient-primary); color: white; }
.tab-count { background: rgba(255, 255, 255, 0.2); padding: 0.125rem 0.5rem; border-radius: var(--radius-full); font-size: 0.75rem; }
.filter-actions { display: flex; gap: 1rem; align-items: center; }
.releases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.release-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.release-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2); }
.release-cover { position: relative; width: 100%; height: 280px; overflow: hidden; }
.release-cover img { width: 100%; height: 100%; object-fit: cover; }
.release-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.release-card:hover .release-overlay { opacity: 1; }
.play-btn { width: 60px; height: 60px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; transform: scale(0.8); transition: var(--transition); }
.release-card:hover .play-btn { transform: scale(1); }
.release-status { position: absolute; top: 1rem; right: 1rem; padding: 0.375rem 0.75rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; }
.release-status.live { background: var(--success); color: white; }
.release-status.pending { background: var(--warning); color: white; }
.release-info { padding: 1rem; }
.release-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; }
.release-artist { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 0.75rem; }
.release-meta { display: flex; gap: 1rem; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.release-stats { display: flex; justify-content: space-around; padding-top: 0.75rem; border-top: 1px solid var(--border-color); }
.release-stats .stat { display: flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; color: var(--text-secondary); }
.release-progress { padding-top: 0.75rem; border-top: 1px solid var(--border-color); }
.progress-bar { height: 6px; background: var(--bg-tertiary); border-radius: var(--radius-full); overflow: hidden; margin-bottom: 0.5rem; }
.progress-fill { height: 100%; background: var(--gradient-primary); transition: var(--transition); }
.progress-text { font-size: 0.75rem; color: var(--text-secondary); }
.release-actions { display: flex; gap: 0.5rem; padding: 1rem; border-top: 1px solid var(--border-color); }

/* Create Release */
.release-form-container { max-width: 900px; margin: 0 auto; }
.release-steps { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3rem; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-section { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 2rem; }
.form-section-title { font-size: 1.5rem; margin-bottom: 1.5rem; }
.form-actions { display: flex; justify-content: space-between; gap: 1rem; }

/* Upload Area */
.upload-area { border: 2px dashed var(--border-color); border-radius: var(--radius-lg); padding: 3rem; text-align: center; transition: var(--transition); }
.upload-area:hover { border-color: var(--primary); background: rgba(139, 92, 246, 0.05); }
.upload-icon { font-size: 3rem; color: var(--primary); margin-bottom: 1rem; }
.upload-area h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.upload-area p { color: var(--text-secondary); margin-bottom: 1.5rem; }
.upload-requirements { margin-top: 1.5rem; text-align: left; background: var(--bg-tertiary); padding: 1rem; border-radius: var(--radius); }
.upload-requirements ul { list-style: none; padding-left: 1rem; }
.upload-requirements li { color: var(--text-secondary); font-size: 0.875rem; margin-bottom: 0.25rem; }
.upload-requirements li::before { content: '•'; color: var(--primary); margin-right: 0.5rem; }

/* Artwork Upload */
.artwork-upload { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; }
.artwork-preview { aspect-ratio: 1; border: 2px dashed var(--border-color); border-radius: var(--radius-lg); overflow: hidden; }
.artwork-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-muted); }
.artwork-placeholder i { font-size: 4rem; margin-bottom: 1rem; }
.artwork-info h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.artwork-info p { color: var(--text-secondary); margin-bottom: 1.5rem; }
.artwork-requirements { background: var(--bg-tertiary); padding: 1rem; border-radius: var(--radius); margin-bottom: 1.5rem; }

/* Review */
.review-card { background: var(--bg-tertiary); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 2rem; }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.review-content { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; }
.review-artwork { width: 200px; height: 200px; border-radius: var(--radius-lg); overflow: hidden; }
.review-artwork img { width: 100%; height: 100%; object-fit: cover; }
.review-details { display: flex; flex-direction: column; gap: 0.75rem; }
.review-item { display: flex; gap: 1rem; }
.review-label { font-weight: 600; min-width: 120px; color: var(--text-secondary); }
.review-value { color: var(--text-primary); }
.platform-selection { margin-bottom: 2rem; }
.platform-selection h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.platform-selection p { color: var(--text-secondary); margin-bottom: 1.5rem; }
.platform-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 1rem; }
.platform-checkbox { cursor: pointer; }
.platform-checkbox input[type="checkbox"] { display: none; }
.platform-box { background: var(--bg-tertiary); border: 2px solid var(--border-color); border-radius: var(--radius-lg); padding: 1rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; transition: var(--transition); }
.platform-checkbox input[type="checkbox"]:checked + .platform-box { background: rgba(139, 92, 246, 0.1); border-color: var(--primary); }
.platform-box i { font-size: 2rem; }
.platform-box span { font-size: 0.875rem; font-weight: 500; }
.terms-agreement { margin-top: 2rem; }

/* Badge Types */
.badge-type { padding: 0.25rem 0.75rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; }
.badge-type.single { background: rgba(139, 92, 246, 0.1); color: var(--primary); }
.badge-type.ep { background: rgba(59, 130, 246, 0.1); color: var(--accent); }
.badge-type.album { background: rgba(236, 72, 153, 0.1); color: var(--secondary); }
.status-badge { padding: 0.25rem 0.75rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; }
.status-badge.pending { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
.status-badge.approved { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.status-badge.rejected { background: rgba(239, 68, 68, 0.1); color: var(--danger); }

/* ===================================
   ADMIN PANEL & MODALS (Part 5)
   =================================== */

/* Admin Panel */
.admin-panel .sidebar { background: var(--bg-secondary); }
.admin-panel .sidebar-header .logo i { color: var(--danger); }
.admin-panel .nav-item.active { background: var(--danger); }
.quick-actions { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 2rem; }
.quick-actions h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.action-buttons { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.action-btn { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 1.5rem; background: var(--bg-tertiary); border: 1px solid var(--border-color); border-radius: var(--radius-lg); transition: var(--transition); cursor: pointer; }
.action-btn:hover { background: var(--bg-hover); border-color: var(--primary); transform: translateY(-2px); }
.action-btn i { font-size: 2rem; color: var(--primary); }

/* Modal */
.modal { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.8); z-index: 1000; align-items: center; justify-content: center; padding: 2rem; }
.modal.active { display: flex; }
.modal-content { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-xl); width: 100%; max-width: 600px; max-height: 90vh; overflow-y: auto; animation: modalSlideIn 0.3s ease-out; }
.modal-content.large { max-width: 900px; }
@keyframes modalSlideIn { from { opacity: 0; transform: translateY(-50px); } to { opacity: 1; transform: translateY(0); } }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 1px solid var(--border-color); }
.modal-header h2 { font-size: 1.5rem; }
.modal-close { width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); background: var(--bg-tertiary); color: var(--text-secondary); cursor: pointer; }
.modal-close:hover { background: var(--bg-hover); color: var(--text-primary); }
.modal-body { padding: 1.5rem; }
.modal-footer { display: flex; justify-content: flex-end; gap: 1rem; padding: 1.5rem; border-top: 1px solid var(--border-color); }

/* Review Release Modal */
.review-release { display: flex; flex-direction: column; gap: 1.5rem; }
.release-preview { display: flex; gap: 1.5rem; padding: 1.5rem; background: var(--bg-tertiary); border-radius: var(--radius-lg); }
.release-preview img { width: 150px; height: 150px; border-radius: var(--radius-lg); }
.release-details h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.artist-name { color: var(--text-secondary); margin-bottom: 1rem; }
.release-info-section { padding: 1.5rem; background: var(--bg-tertiary); border-radius: var(--radius-lg); }
.release-info-section h4 { font-size: 1.125rem; margin-bottom: 1rem; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.info-item { display: flex; gap: 0.5rem; }
.info-label { font-weight: 600; color: var(--text-secondary); }
.info-value { color: var(--text-primary); }
.tracks-section { padding: 1.5rem; background: var(--bg-tertiary); border-radius: var(--radius-lg); }
.tracks-section h4 { font-size: 1.125rem; margin-bottom: 1rem; }
.track-item-review { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: var(--bg-card); border-radius: var(--radius); }
.track-number { width: 2rem; height: 2rem; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.track-item-review .track-info { flex: 1; }
.track-duration { font-size: 0.875rem; color: var(--text-secondary); }
.track-item-review audio { max-width: 300px; }
.review-notes { padding: 1.5rem; background: var(--bg-tertiary); border-radius: var(--radius-lg); }
.review-notes h4 { font-size: 1.125rem; margin-bottom: 1rem; }

/* Profile Page */
.profile-container { max-width: 900px; margin: 0 auto; }
.profile-header { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 2rem; display: flex; gap: 2rem; align-items: center; }
.profile-avatar { position: relative; }
.profile-avatar img { width: 120px; height: 120px; border-radius: 50%; border: 4px solid var(--border-color); }
.avatar-upload { position: absolute; bottom: 0; right: 0; width: 36px; height: 36px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; border: 3px solid var(--bg-card); }
.profile-details h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.profile-email { color: var(--text-secondary); margin-bottom: 1rem; }
.profile-badges { display: flex; gap: 0.5rem; }
.profile-badge { padding: 0.375rem 0.75rem; background: rgba(139, 92, 246, 0.1); color: var(--primary); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 600; }
.profile-content { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.profile-section { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 2rem; }
.profile-section h3 { font-size: 1.25rem; margin-bottom: 1.5rem; }

/* Artists & Labels */
.artists-grid, .labels-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
.artist-card, .label-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; transition: var(--transition); }
.artist-card:hover, .label-card:hover { transform: translateY(-5px); box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2); }
.artist-avatar, .label-avatar { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 1rem; overflow: hidden; }
.artist-avatar img, .label-avatar img { width: 100%; height: 100%; object-fit: cover; }
.artist-name, .label-name { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.artist-genre, .label-type { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 1rem; }
.artist-stats, .label-stats { display: flex; justify-content: space-around; padding-top: 1rem; border-top: 1px solid var(--border-color); }
.artist-stat, .label-stat { text-align: center; }

/* Additional Responsive - Mobile First */
@media (max-width: 768px) {
    .nav-menu { position: fixed; top: 70px; left: 0; right: 0; background: var(--bg-secondary); flex-direction: column; padding: 1rem; border-bottom: 1px solid var(--border-color); transform: translateY(-100%); transition: var(--transition); }
    .nav-menu.active { transform: translateY(0); }
    .hero-buttons { flex-direction: column; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .filter-bar { flex-direction: column; gap: 1rem; }
    .filter-tabs { width: 100%; overflow-x: auto; }
    .filter-actions { width: 100%; flex-direction: column; }
    .releases-grid { grid-template-columns: 1fr; }
    .account-type-selector { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .release-steps { overflow-x: auto; }
    .step-indicator { padding: 0 0.5rem; }
    .step-number { width: 2.5rem; height: 2.5rem; font-size: 1rem; }
    .step-label { font-size: 0.75rem; }
    .auth-container { max-width: 500px; }
    .auth-form { grid-template-columns: 1fr; }
    .social-auth { flex-direction: column; }
    .profile-header { flex-direction: column; text-align: center; }
    .data-table { font-size: 0.875rem; }
    th, td { padding: 0.5rem; }
    .platform-grid { grid-template-columns: repeat(2, 1fr); }
    .action-buttons { grid-template-columns: 1fr; }
    .artists-grid, .labels-grid { grid-template-columns: 1fr; }
    .artwork-upload { grid-template-columns: 1fr; }
    .profile-content { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.75rem; }
    .auth-card { padding: 2rem 1.5rem; }
    .step-indicator { padding: 0; gap: 0.25rem; }
    .step { gap: 0.5rem; }
    .step-number { width: 2rem; height: 2rem; font-size: 0.875rem; }
    .step-label { font-size: 0.625rem; }
    .step-line { margin: 0 0.25rem; }
    .otp-inputs { gap: 0.5rem; }
    .otp-input { width: 2.5rem; height: 2.5rem; font-size: 1.25rem; }
    .dashboard-content { padding: 1rem; }
    .top-bar { padding: 0 1rem; }
    .page-title { font-size: 1.25rem; }
    .modal-content { padding: 0; }
    .release-preview { flex-direction: column; }
    .info-grid { grid-template-columns: 1fr; }
}

/* Print Styles */
@media print {
    .sidebar, .top-bar, .btn-primary, .btn-secondary, .filter-bar { display: none; }
    .main-content { margin-left: 0; }
    body { background: white; color: black; }
}

/* Empty State - Ultra Modern Premium */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-muted);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: var(--radius-xl);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.empty-state::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 70%);
    opacity: 0.5;
}

.empty-state > * {
    position: relative;
    z-index: 1;
}

.empty-state i {
    opacity: 0.25;
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.1));
}

.empty-state h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.empty-state p {
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* Animation Classes */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.loading { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* Dropdown Menu */
.dropdown { position: relative; }
.dropdown.active .dropdown-menu { display: block; }
.dropdown-trigger { cursor: pointer; }
.dropdown-menu { display: none; position: absolute; top: 100%; right: 0; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 0.5rem; margin-top: 0.5rem; min-width: 200px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); z-index: 1000; }
.dropdown-item { padding: 0.75rem 1rem; border-radius: var(--radius); color: var(--text-primary); display: flex; align-items: center; gap: 0.75rem; transition: var(--transition); }
.dropdown-item:hover { background: var(--bg-tertiary); }
.dropdown-divider { height: 1px; background: var(--border-color); margin: 0.5rem 0; }

/* Tooltip */
.tooltip { position: relative; }
.tooltip::before { content: attr(data-tooltip); position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); padding: 0.5rem 0.75rem; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); font-size: 0.875rem; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition); margin-bottom: 0.5rem; }
.tooltip:hover::before { opacity: 1; }

/* Empty State */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state i { font-size: 4rem; color: var(--text-muted); margin-bottom: 1rem; }
.empty-state h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-secondary); margin-bottom: 2rem; }

/* Skeleton Loading */
.skeleton { background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-hover) 50%, var(--bg-tertiary) 75%); background-size: 200% 100%; animation: loading 1.5s ease-in-out infinite; }
@keyframes loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-text { height: 1rem; border-radius: var(--radius); margin-bottom: 0.5rem; }
.skeleton-title { height: 1.5rem; width: 60%; border-radius: var(--radius); margin-bottom: 1rem; }
.skeleton-avatar { width: 3rem; height: 3rem; border-radius: 50%; }
.skeleton-card { height: 200px; border-radius: var(--radius-lg); }

/* ===================================
   CREATE RELEASE FORM STYLES
   =================================== */

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.release-form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.release-form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.release-form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.release-form {
    max-width: 900px;
}

.form-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    margin-top: -0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-primary);
    background: var(--bg-hover);
}

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

.form-help {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.375rem;
    display: block;
}

.required {
    color: #ef4444;
}

/* Platform Selection */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.platform-checkbox {
    position: relative;
}

.platform-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.platform-checkbox label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.platform-checkbox label i {
    font-size: 2rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.platform-checkbox label span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.platform-checkbox input[type="checkbox"]:checked + label {
    background: var(--bg-hover);
    border-color: var(--text-primary);
}

.platform-checkbox input[type="checkbox"]:checked + label i,
.platform-checkbox input[type="checkbox"]:checked + label span {
    color: var(--text-primary);
}

.platform-checkbox label:hover {
    border-color: var(--border-light);
    background: var(--bg-hover);
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.form-actions button {
    min-width: 150px;
}

/* Loading State */
.btn-primary.loading,
.btn-secondary.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-primary.loading::after,
.btn-secondary.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.success-message i {
    font-size: 2rem;
    color: #10b981;
}

.success-message-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.success-message-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .form-section {
        padding: 1.5rem;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .release-form-header h2 {
        font-size: 1.5rem;
    }
}

/* ===================================
   WIZARD STEPS NAVIGATION
   =================================== */

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0 3rem;
    position: relative;
    padding: 0 1rem;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: var(--transition);
}

.wizard-step .step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.wizard-step .step-info {
    text-align: center;
}

.wizard-step .step-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.wizard-step .step-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.wizard-step.active .step-number {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.wizard-step.active .step-label {
    color: var(--text-primary);
}

.wizard-step.current .step-number {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

/* ===================================
   FORM STEPS
   =================================== */

.form-step {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.form-step.active {
    display: block;
}

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

/* ===================================
   ARTIST SELECT WRAPPER
   =================================== */

.artist-select-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.artist-select-wrapper select {
    flex: 1;
}

.btn-create-artist {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-create-artist:hover {
    background: var(--bg-hover);
    border-color: var(--border-light);
    transform: translateY(-1px);
}

.btn-create-artist i {
    font-size: 0.875rem;
}

/* ===================================
   ARTWORK UPLOAD
   =================================== */

.artwork-upload-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
}

.artwork-preview {
    width: 300px;
    height: 300px;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    transition: var(--transition);
}

.artwork-preview i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.artwork-preview:hover {
    border-color: var(--border-light);
}

.artwork-upload-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.upload-requirements {
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.upload-requirements h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-primary);
}

.upload-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.upload-requirements li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.upload-requirements li i {
    color: #10b981;
}

.upload-actions {
    display: flex;
    gap: 1rem;
}

/* ===================================
   TRACK ITEMS
   =================================== */

#tracksContainer {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.track-item {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.track-item:hover {
    border-color: var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.track-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-bottom: 1px solid var(--border-color);
}

.track-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: white;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.track-info-short {
    flex: 1;
}

.track-title-display {
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--text-primary);
}

.btn-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-icon:hover {
    color: #ef4444;
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    transform: scale(1.05);
}

.btn-remove-track {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-remove-track:hover {
    color: #ef4444;
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    transform: scale(1.05);
}

.track-details {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: var(--bg-card);
}

.audio-upload {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.file-name {
    color: var(--text-muted);
    font-size: 0.875rem;
    flex: 1;
    min-width: 200px;
}

/* ===================================
   REVIEW SECTION
   =================================== */

.review-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review-section {
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.review-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.review-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-item label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 600;
}

.review-item span {
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.review-tracks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-track-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-hover);
    border-radius: var(--radius);
}

.track-num {
    font-weight: 700;
    color: var(--text-secondary);
}

.track-name {
    flex: 1;
    color: var(--text-primary);
}

.explicit-badge {
    padding: 0.25rem 0.5rem;
    background: #ef4444;
    color: white;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 700;
}

.review-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.platform-badge {
    padding: 0.5rem 1rem;
    background: var(--bg-hover);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.terms-agreement {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.checkbox-label a {
    color: var(--text-primary);
    text-decoration: underline;
}

/* ===================================
   FORM NAVIGATION
   =================================== */

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.form-navigation button {
    min-width: 150px;
}

/* ===================================
   PLATFORM GRID ENHANCEMENTS
   =================================== */

.platform-checkbox label small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ===================================
   RESPONSIVE - CREATE RELEASE
   =================================== */

@media (max-width: 1024px) {
    .wizard-steps {
        overflow-x: auto;
        justify-content: start;
        gap: 2rem;
    }
    
    .wizard-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .artwork-upload-container {
        grid-template-columns: 1fr;
    }
    
    .artwork-preview {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .wizard-step .step-info {
        display: none;
    }
    
    .wizard-step .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-navigation button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .wizard-step .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .track-header {
        padding: 0.75rem 1rem;
    }
    
    .track-number {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .audio-upload {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Input Error State */
input.error,
select.error,
textarea.error {
    border-color: #ef4444 !important;
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ===================================
   RELEASES PAGE STYLES
   =================================== */

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.page-header-left h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-header-left p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
}

.filter-tab:hover {
    background: var(--bg-hover);
    border-color: var(--border-light);
}

.filter-tab.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-color: #8b5cf6;
    color: white;
}

.tab-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.filter-tab.active .tab-count {
    background: rgba(255, 255, 255, 0.3);
}

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

.release-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.release-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.release-artwork {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: var(--bg-secondary);
}

.release-artwork img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.release-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.release-card:hover .release-overlay {
    opacity: 1;
}

.btn-icon-round {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.release-info {
    padding: 1.25rem;
}

.release-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.status-live {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-pending {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.status-approved {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.status-rejected {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-draft {
    background: rgba(161, 161, 170, 0.1);
    color: #a1a1aa;
}

.release-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.release-artist {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.release-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.release-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.release-footer {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.release-date-small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.modal-overlay[style*="display: flex"] {
    display: flex !important;
}

.modal-container {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--bg-hover);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg-tertiary);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
}

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

.release-detail-artwork {
    width: 100%;
    border-radius: var(--radius-xl);
}

.release-artist-large {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

.detail-value {
    font-size: 1rem;
    color: var(--text-primary);
}

.tracks-list-modal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.track-item-modal {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
}

.track-number {
    width: 30px;
    height: 30px;
    background: var(--bg-hover);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.track-info-modal {
    flex: 1;
}

.track-title {
    font-weight: 500;
}

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

.explicit-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
}

.platforms-list-modal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.platform-badge-modal {
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
}

.rejection-reason {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-lg);
}

.rejection-reason strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #ef4444;
}

/* ===================================
   ARTISTS PAGE STYLES
   =================================== */

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

.artist-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.artist-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.artist-card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.artist-avatar-large {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    margin: 0 auto;
    border: 3px solid var(--border-color);
}

.artist-card-body {
    padding: 0 2rem 1.5rem;
    text-align: center;
}

.artist-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.artist-genre {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.artist-bio {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.artist-social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--bg-hover);
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.artist-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-top: 1px solid var(--border-color);
}

.artist-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.artist-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--bg-hover);
    border-color: var(--border-light);
}

.btn-icon.btn-danger:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.artist-modal .modal-container {
    max-width: 600px;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--text-primary);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

/* ===================================
   PROFILE PAGE STYLES
   =================================== */

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

.profile-header-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-bottom: 2rem;
}

.profile-cover {
    height: 150px;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.profile-header-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 0 2rem 2rem;
    margin-top: -60px;
}

.profile-avatar-large {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar-large img {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    border: 4px solid var(--bg-card);
}

.avatar-edit-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-card);
}

.profile-header-info {
    flex: 1;
    padding-top: 60px;
}

.profile-header-info h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.profile-header-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.profile-badges {
    display: flex;
    gap: 0.5rem;
}

.profile-badge {
    padding: 0.375rem 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
}

.profile-badge.verified {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.profile-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
}

.profile-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
}

.profile-tab:hover {
    background: var(--bg-hover);
}

.profile-tab.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-color: #8b5cf6;
    color: white;
}

.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.profile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.profile-card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

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

.profile-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.stat-icon-small {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-icon-small.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.stat-icon-small.blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.stat-icon-small.green {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-icon-small.pink {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.stat-value-small {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label-small {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.security-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.security-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
}

.security-option-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.security-option-info i {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.security-option-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.security-option-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.status-badge {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
}

.status-badge.verified {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.current-plan-info {
    text-align: center;
    padding: 2rem;
}

.plan-badge-large {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
}

.plan-feature-item.available {
    color: var(--text-primary);
}

.plan-feature-item.unavailable {
    color: var(--text-muted);
}

.plan-feature-item i {
    font-size: 1.125rem;
}

.plan-feature-item.available i {
    color: #10b981;
}

.plan-feature-item.unavailable i {
    color: var(--text-muted);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media (max-width: 1024px) {
    .release-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .releases-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .profile-header-info {
        padding-top: 1rem;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .releases-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        gap: 0.25rem;
    }
    
    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .modal-overlay {
        padding: 1rem;
    }
    
    .profile-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ADMIN PANEL STYLES
   =================================== */

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

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

.admin-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition);
}

.admin-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-light);
}

.admin-charts-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-chart-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.legend-label {
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.legend-value {
    font-weight: 600;
    font-size: 0.875rem;
}

.admin-activity-section,
.admin-pending-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

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

.section-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.admin-activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.pending-release-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pending-release-artwork {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
}

.pending-release-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.pending-release-info p {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.pending-release-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Admin Filters */
.admin-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-box-admin {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-box-admin i {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
}

.search-box-admin input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.filter-select {
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    min-width: 200px;
}

/* Admin Table */
.admin-table-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 2rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.admin-table tbody tr:hover {
    background: var(--bg-hover);
}

.user-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-avatar-small {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 2px solid var(--border-color);
}

.user-name-cell {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.table-actions {
    display: flex;
    gap: 0.5rem;
}

/* Badges */
.badge-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-warning {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-admin {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.badge-gray {
    background: rgba(161, 161, 170, 0.1);
    color: #a1a1aa;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-pink {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Pagination */
.admin-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pagination-buttons {
    display: flex;
    gap: 0.5rem;
}

.pagination-btn {
    padding: 0.5rem 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    min-width: 40px;
    transition: var(--transition);
}

.pagination-btn:hover:not(:disabled) {
    background: var(--bg-hover);
    border-color: var(--border-light);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-color: #8b5cf6;
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-dots {
    padding: 0.5rem;
    color: var(--text-muted);
}

.pagination-info {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Admin Releases Grid */
.admin-releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-release-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-release-artwork {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
}

.admin-release-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.admin-release-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-success:hover {
    background: rgba(16, 185, 129, 0.2);
}

.btn-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

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

/* Release Detail Modal */
.release-modal-admin {
    max-width: 1200px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

.release-detail-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.release-detail-artwork {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.release-detail-artwork img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.release-detail-info h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.release-artist {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-item span {
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.description-box {
    background: var(--bg-tertiary);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    margin-top: 1rem;
}

.description-box h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.description-box p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.tracks-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.tracks-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tracks-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.track-detail-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}

.track-detail-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.track-detail-header .track-num {
    font-weight: 700;
    color: var(--text-secondary);
    min-width: 30px;
}

.track-detail-header .track-title {
    flex: 1;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--text-primary);
}

.track-detail-meta {
    margin-bottom: 1rem;
    padding-left: 38px;
}

.track-detail-meta p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.track-detail-meta strong {
    color: var(--text-muted);
    font-weight: 600;
}

.track-actions {
    display: flex;
    gap: 0.75rem;
    padding-left: 38px;
}

.track-play-btn {
    transition: all 0.3s ease;
}

.track-play-btn:hover {
    transform: scale(1.05);
}

.track-play-btn:active {
    transform: scale(0.95);
}

.platforms-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.platforms-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.platforms-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 1024px) {
    .release-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .release-detail-artwork {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .track-actions {
        flex-direction: column;
    }
}

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

.user-detail-avatar {
    width: 100%;
    border-radius: var(--radius-xl);
}

.user-detail-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.user-releases-list,
.user-artists-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.user-release-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
}

.artist-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-select {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
}

.release-modal-admin {
    max-width: 1000px;
}

/* End of Stylesheet */
