

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #808080 0%, #606060 100%);
    --secondary-gradient: linear-gradient(135deg, #808080 0%, #606060 100%);
    --dark-gradient: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    --accent-gradient: linear-gradient(135deg, #808080 0%, #606060 100%);
    
    --primary-color: #808080;
    --secondary-color: #606060;
    --accent-color: #808080;
    --dark-bg: #000000;
    --dark-bg-secondary: #0a0a0a;
    --dark-bg-card: #111111;
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --text-muted: #ffffff;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-out;
}

.page-transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: #000000;
    will-change: auto;
    contain: layout;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(128, 128, 128, 0.2), 0 0 50px rgba(128, 128, 128, 0.1);
    border-bottom: 1px solid rgba(128, 128, 128, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-icon {
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(128, 128, 128, 0.5));
    transition: var(--transition-smooth);
    animation: shield-glow 3s ease-in-out infinite;
}

.logo:hover .logo-icon {
    filter: drop-shadow(0 0 20px rgba(128, 128, 128, 0.6)) drop-shadow(0 0 30px rgba(96, 96, 96, 0.4));
    transform: scale(1.1);
}

@keyframes shield-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(128, 128, 128, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(128, 128, 128, 0.6)) drop-shadow(0 0 25px rgba(128, 128, 128, 0.3));
    }
}

.logo-text {
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, rgba(10, 15, 25, 0.98) 0%, rgba(5, 10, 20, 0.98) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 180px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(128, 128, 128, 0.2);
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu .nav-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.nav-dropdown-menu .nav-link::after {
    display: none;
}

.nav-dropdown-menu .nav-link:hover {
    background: linear-gradient(90deg, rgba(128, 128, 128, 0.1) 0%, transparent 100%);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 1.5rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff !important;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: #ffffff !important;
}

.nav-link:hover::after {
    width: 100%;
    background: #ffffff !important;
}

.nav-link.active {
    color: #ffffff !important;
}

.nav-link.active::after {
    width: 100%;
    background: #ffffff !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    animation: slideUp 1s ease-out;
    background: linear-gradient(135deg, #ffffff 0%, #b8b8d1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.4s;
    animation-fill-mode: backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.6s;
    animation-fill-mode: backwards;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn::before {
    display: none !important;
}

.btn:hover::before {
    display: none !important;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-primary:hover {
    transform: none !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.btn-primary::before,
.btn-primary::after {
    display: none !important;
}


.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: fit-content;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    margin: 0;
    padding: 0;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-secondary);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-animation 1.5s ease-out infinite;
}

@keyframes scroll-animation {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 20px); opacity: 0; }
}

.scroll-indicator p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-hero {
    padding: 10rem 0 2rem;
    text-align: center;
    position: relative;
    background: transparent;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    margin-bottom: 1rem;
}

.page-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #ffffff !important;
    max-width: 600px;
    margin: 0 auto;
}

section {
    padding: 6rem 0;
    position: relative;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta {
    text-align: center;
    margin-top: 4rem;
}

.about {
    background: transparent;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(128, 128, 128, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(128, 128, 128, 0.2);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(128, 128, 128, 0.08);
    border-color: rgba(128, 128, 128, 0.5);
    box-shadow: 0 12px 40px rgba(128, 128, 128, 0.2), 0 0 30px rgba(128, 128, 128, 0.1);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: #000000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 0 100px rgba(255, 255, 255, 0.05);
}

.vinyl-animation {
    position: relative;
}

.vinyl {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at center, #1a1a1a 0%, #1a1a1a 20%, transparent 20%, transparent 21%, #0a0a0a 21%),
        repeating-radial-gradient(circle at center, 
            #0a0a0a 0px, 
            #0a0a0a 2px, 
            #1a1a1a 2px, 
            #1a1a1a 4px
        ),
        linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    position: relative;
    animation: spin 8s linear infinite;
    box-shadow: 
        0 20px 60px rgba(255, 255, 255, 0.2), 
        0 0 100px rgba(255, 255, 255, 0.1),
        inset 0 0 50px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.vinyl::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: vinyl-glow 3s ease-in-out infinite;
}

@keyframes vinyl-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.vinyl-label-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
    animation: spin 8s linear infinite;
    z-index: 3;
    pointer-events: none;
}

.vinyl-label-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 9px !important; 
    letter-spacing: 0.2em !important; 
    fill: #ffffff !important;
    text-transform: uppercase;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.vinyl-center {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.4),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.vinyl-center::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #000000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.vinyl-center::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.artist-card {
    animation: fadeInScale 0.6s ease-out backwards;
}

.artist-card:nth-child(1) { animation-delay: 0.1s; }
.artist-card:nth-child(2) { animation-delay: 0.2s; }
.artist-card:nth-child(3) { animation-delay: 0.3s; }
.artist-card:nth-child(4) { animation-delay: 0.4s; }
.artist-card:nth-child(5) { animation-delay: 0.5s; }
.artist-card:nth-child(6) { animation-delay: 0.6s; }
.artist-card:nth-child(7) { animation-delay: 0.7s; }
.artist-card:nth-child(8) { animation-delay: 0.8s; }
.artist-card:nth-child(9) { animation-delay: 0.9s; }
.artist-card:nth-child(10) { animation-delay: 1s; }
.artist-card:nth-child(11) { animation-delay: 1.1s; }
.artist-card:nth-child(12) { animation-delay: 1.2s; }

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 1200px) {
    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .artist-image {
        height: 320px;
    }
}

@media (max-width: 900px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .artist-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .artist-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .artist-image {
        height: 350px;
    }
    
    .artist-info {
        padding: 1.5rem;
    }
    
    .artist-name {
        font-size: 1.3rem;
    }
    
    .platform-link {
        width: 48px;
        height: 48px;
    }
}

.artist-card {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
    background-image: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), 
                      linear-gradient(135deg, rgba(128, 128, 128, 0.3), rgba(128, 128, 128, 0.3));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.05),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.1), rgba(128, 128, 128, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.artist-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(128, 128, 128, 0.3),
                0 20px 60px rgba(128, 128, 128, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    border-color: transparent;
    background-image: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), 
                      linear-gradient(135deg, rgba(128, 128, 128, 0.6), rgba(128, 128, 128, 0.6));
}

.artist-card:hover::before {
    opacity: 1;
}

.artist-image {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 2;
}

.artist-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    transition: opacity 0.4s ease;
}

.artist-card:hover .artist-image::after {
    opacity: 0.5;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.15), rgba(128, 128, 128, 0.15));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.25), rgba(128, 128, 128, 0.25));
}

.artist-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.platform-link {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.platform-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(128, 128, 128, 0.4), rgba(128, 128, 128, 0.4));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.platform-link:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-8px) scale(1.15) rotate(5deg);
    box-shadow: 0 12px 40px rgba(128, 128, 128, 0.4),
                0 12px 40px rgba(128, 128, 128, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.platform-link:hover::before {
    width: 200%;
    height: 200%;
}

.platform-link svg {
    width: 20px;
    height: 20px;
}

.artist-info {
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    position: relative;
    z-index: 2;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(128, 128, 128, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.artist-card:hover .artist-name {
    background: linear-gradient(135deg, #ffffff 0%, #00f5ff 50%, #ff00ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.artist-genre {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.artist-card:hover .artist-genre {
    color: rgba(255, 255, 255, 0.9);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(128, 128, 128, 0.3);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text h4 {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    font-family: 'Montserrat', sans-serif;
}

.cookie-text p {
    color: #ffffff !important;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-link {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.cookie-link:hover {
    color: #ffffff !important;
    border-bottom-color: #ffffff;
    opacity: 0.8;
}

.cookie-accept {
    background: #ffffff !important;
    color: #1a1a1a !important;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-accept:hover {
    background: #f0f0f0 !important;
    color: #1a1a1a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cookie-accept:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .cookie-accept {
        width: 100%;
        padding: 14px 24px;
    }
    
    .cookie-consent {
        padding: 15px;
    }
}

.legal-content {
    padding: 80px 0;
    background: transparent;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 20px;
    padding: 40px;
    color: var(--text-primary);
    line-height: 1.7;
}

.legal-text h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    font-family: 'Montserrat', sans-serif;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    font-family: 'Montserrat', sans-serif;
}

.legal-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.legal-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-text li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.last-updated {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}

.contact-info {
    background: rgba(128, 128, 128, 0.1);
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.contact-info strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 60px 0;
    }
    
    .legal-text {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .legal-text h2 {
        font-size: 1.5rem;
    }
    
    .legal-text h3 {
        font-size: 1.2rem;
    }
}

.faq-content {
    padding: 80px 0;
    background: transparent;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
    contain: layout style paint;
    isolation: isolate;
}

.faq-list {
    margin-bottom: 60px;
    contain: layout style;
    isolation: isolate;
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: border-color 0.3s ease, transform 0.4s ease, opacity 0.4s ease;
    will-change: auto;
    contain: layout;
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.faq-item:hover {
    border-color: rgba(128, 128, 128, 0.4);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.faq-icon {
    color: var(--primary-color);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: auto;
    contain: layout;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-answer a:hover {
    border-bottom-color: var(--primary-color);
}

.faq-contact {
    text-align: center;
}

.contact-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    max-width: 500px;
    margin: 0 auto;
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-card p {
    color: var(--text-secondary);
    margin: 0 0 25px 0;
    line-height: 1.6;
}

.contact-card .btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 128, 128, 0.4);
}

@media (max-width: 768px) {
    .faq-content {
        padding: 60px 0;
    }
    
    .faq-wrapper {
        margin: 0 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
    }
}

.artists-page {
    background: transparent;
    min-height: 60vh;
    position: relative;
    padding: 4rem 0;
}

.artists-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
}

.artists {
    background: transparent;
}

.releases {
    background: transparent;
    position: relative;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.release-card {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    background-image: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), 
                      linear-gradient(135deg, rgba(128, 128, 128, 0.2), rgba(0, 102, 255, 0.2));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.05),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeInScale 0.6s ease-out backwards;
    min-height: auto;
}

.release-card:nth-child(1) { animation-delay: 0.1s; }
.release-card:nth-child(2) { animation-delay: 0.2s; }
.release-card:nth-child(3) { animation-delay: 0.3s; }
.release-card:nth-child(4) { animation-delay: 0.4s; }
.release-card:nth-child(5) { animation-delay: 0.5s; }
.release-card:nth-child(6) { animation-delay: 0.6s; }
.release-card:nth-child(7) { animation-delay: 0.7s; }
.release-card:nth-child(8) { animation-delay: 0.8s; }
.release-card:nth-child(9) { animation-delay: 0.9s; }
.release-card:nth-child(10) { animation-delay: 1s; }
.release-card:nth-child(11) { animation-delay: 1.1s; }
.release-card:nth-child(12) { animation-delay: 1.2s; }

.release-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.05), rgba(0, 102, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.release-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: #333;
}

.release-card:hover::before {
    opacity: 0;
}

.release-cover {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
}

.release-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    transition: opacity 0.4s ease;
    z-index: 1;
}

.release-card:hover .release-cover::after {
    opacity: 0.5;
}

.release-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.release-card:hover .release-cover img {
    transform: none;
}

.release-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.1), rgba(0, 102, 255, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    border-radius: 16px;
}

.release-card:hover .release-overlay {
    opacity: 0;
    pointer-events: none;
}

.listen-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.9), rgba(128, 128, 128, 0.9));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(128, 128, 128, 0.4),
                0 8px 24px rgba(128, 128, 128, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.listen-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.listen-btn:hover {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 12px 40px rgba(128, 128, 128, 0.5),
                0 12px 40px rgba(128, 128, 128, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.listen-btn:hover::before {
    width: 300%;
    height: 300%;
}

.release-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    position: relative;
    z-index: 2;
    flex: 1;
}

.release-artist {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.release-card:hover .release-artist {
    color: rgba(255, 255, 255, 0.9);
}

.release-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    background: linear-gradient(135deg, #ffffff 0%, #00f5ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.release-card:hover .release-title {
    background: linear-gradient(135deg, #ffffff 0%, #00f5ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.release-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    margin-top: 0.25rem;
    transition: all 0.3s ease;
}

.release-card:hover .release-date {
    color: rgba(255, 255, 255, 0.8);
}

.release-meta {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.no-data {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
}

.no-data h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.no-data p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.release-type {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(128, 128, 128, 0.1);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--primary-color);
    border: 1px solid rgba(128, 128, 128, 0.3);
}

.releases-page {
    background: transparent;
    padding: 4rem 0;
    min-height: 60vh;
    position: relative;
}

.releases-wrapper {
    width: 100%;
}

.services {
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #0a0a0a;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(128, 128, 128, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(128, 128, 128, 0.05), transparent);
    transform: rotate(45deg);
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover::after {
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(128, 128, 128, 0.6);
    box-shadow: 0 20px 60px rgba(128, 128, 128, 0.3), 0 0 80px rgba(128, 128, 128, 0.1);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(128, 128, 128, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(128, 128, 128, 0.3);
    animation: float-soft 3s ease-in-out infinite;
    transition: var(--transition-smooth);
    color: var(--primary-color);
}

.service-card:hover .service-icon {
    background: rgba(128, 128, 128, 0.2);
    border-color: rgba(128, 128, 128, 0.6);
    transform: translateY(-5px) rotate(5deg);
    color: var(--text-primary);
}

@keyframes float-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact {
    background: transparent;
    position: relative;
}

.contact-page {
    min-height: 60vh;
}

.contact-wrapper {
    width: 100%;
}

.contact-preview .contact-wrapper {
    max-width: 100%;
}

.contact-cta-section,
.artists-cta-section,
.releases-cta-section {
    background: transparent;
    padding: 8rem 0;
    text-align: center;
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
}

.btn-large::before {
    max-width: 200px;
    max-height: 200px;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(128, 128, 128, 0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(128, 128, 128, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(128, 128, 128, 0.15);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(128, 128, 128, 0.08);
    transform: translateX(10px);
    border-color: rgba(128, 128, 128, 0.4);
    box-shadow: 0 8px 32px rgba(128, 128, 128, 0.2);
}

.contact-icon {
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    background: rgba(128, 128, 128, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(128, 128, 128, 0.3);
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.contact-item:hover .contact-icon {
    background: rgba(128, 128, 128, 0.2);
    transform: scale(1.1);
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #ffffff !important;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-link {
    padding: 0.8rem 1.5rem;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(128, 128, 128, 0.3);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(128, 128, 128, 0.5), 0 0 40px rgba(128, 128, 128, 0.3);
}

.contact-form-wrapper {
    background: #0a0a0a;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(128, 128, 128, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 0 100px rgba(128, 128, 128, 0.03);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: visible;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: auto;
    position: relative;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #000000;
    border: 2px solid rgba(128, 128, 128, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition-smooth);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input[type="password"],
input[type="password"] {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 16px !important;
    letter-spacing: 0.1em !important;
    font-weight: normal !important;
    -webkit-text-security: disc !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text-primary);
    -webkit-box-shadow: 0 0 0px 1000px #000000 inset;
    transition: background-color 5000s ease-in-out 0s;
}

.form-group select {
    background-color: #000000;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-group select::-ms-expand {
    display: none;
}

.form-group select option {
    background-color: #000000;
    color: var(--text-primary);
    padding: 0.8rem 1rem;
    border: none;
}

.form-group select option:hover,
.form-group select option:checked {
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.2) 0%, rgba(0, 102, 255, 0.2) 100%);
    color: var(--primary-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(128, 128, 128, 0.2), 0 0 20px rgba(128, 128, 128, 0.1);
    background: rgba(128, 128, 128, 0.02);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.artist-input-item {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    align-items: center;
}

.artist-input-item .artist-name-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: #000000;
    border: 2px solid rgba(128, 128, 128, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.artist-input-item .artist-name-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(128, 128, 128, 0.2);
    background: rgba(128, 128, 128, 0.02);
}

.btn-remove-artist {
    background: rgba(244, 67, 54, 0.2);
    border: 2px solid rgba(244, 67, 54, 0.4);
    color: #f44336;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
    padding: 0;
    flex-shrink: 0;
}

.btn-remove-artist:hover {
    background: rgba(244, 67, 54, 0.3);
    border-color: rgba(244, 67, 54, 0.6);
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    transition: none !important;
    position: relative;
    overflow: visible;
    box-shadow: none !important;
}

.btn-secondary::before,
.btn-secondary::after {
    display: none !important;
}

.btn-secondary:hover {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-secondary:active {
    transform: none !important;
    box-shadow: none !important;
}


.custom-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(128, 128, 128, 0.25);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.custom-checkbox-label:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(128, 128, 128, 0.4);
}

.custom-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    z-index: 10;
    left: 0;
    top: 0;
}

.custom-checkbox {
    position: relative;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    border: 2.5px solid rgba(128, 128, 128, 0.5);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(128, 128, 128, 0.1) inset;
    flex-shrink: 0;
    z-index: 1;
}

.custom-checkbox::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.2) 0%, rgba(0, 102, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-checkbox .checkmark {
    width: 20px;
    height: 20px;
    stroke: #00f5ff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
    position: relative;
    display: block;
}

.custom-checkbox-input:checked ~ .custom-checkbox {
    border-color: #00f5ff;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.25) 0%, rgba(0, 102, 255, 0.25) 100%);
    box-shadow: 
        0 0 0 3px rgba(128, 128, 128, 0.15),
        0 0 20px rgba(128, 128, 128, 0.3),
        inset 0 0 15px rgba(128, 128, 128, 0.15);
    transform: scale(1.05);
    animation: checkboxCheck 0.3s ease-out;
}

@keyframes checkboxCheck {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1.08);
    }
}

.custom-checkbox-input:checked ~ .custom-checkbox::before {
    opacity: 1;
}

.custom-checkbox-input:checked ~ .custom-checkbox .checkmark {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    animation: checkmarkPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkmarkPop {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.checkbox-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
    font-weight: 500;
    flex: 1;
}

.register-form .checkbox-text {
    font-size: 0.85rem;
    line-height: 1.4;
}

.custom-checkbox-input:checked ~ .checkbox-text {
    color: #00f5ff;
    text-shadow: 0 0 10px rgba(128, 128, 128, 0.3);
}

.custom-checkbox-label:hover .custom-checkbox {
    border-color: rgba(128, 128, 128, 0.6);
    box-shadow: 0 0 15px rgba(128, 128, 128, 0.3);
}

.custom-checkbox-label:active .custom-checkbox {
    transform: scale(0.95);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.btn-register .btn-loading {
    display: none;
}

.btn-register:disabled .btn-text {
    display: none;
}

.btn-register:disabled .btn-loading {
    display: inline-block;
}

.checkbox-group {
    position: relative;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.register-form .checkbox-group {
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
    gap: 0.2rem !important;
    flex-direction: column;
    align-items: flex-start;
}

.register-form .checkbox-group .checkbox-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin: 0;
}

.register-form .custom-checkbox-label {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1.25rem;
    margin: 0;
    gap: 0.6rem;
    border-radius: 10px;
    border: 2px solid rgba(128, 128, 128, 0.2);
    background: #000000;
}

.register-form .checkbox-text .terms-link {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.register-form .checkbox-text .terms-link:hover {
    border-bottom-color: var(--primary-color);
    color: #00f5ff;
}

.custom-checkbox-label:focus-within {
    outline: 2px solid rgba(128, 128, 128, 0.5);
    outline-offset: 2px;
}

.custom-checkbox-label .custom-checkbox,
.custom-checkbox-label .checkbox-text {
    pointer-events: none;
}

.custom-checkbox-label {
    pointer-events: auto;
}

.custom-checkbox-input {
    pointer-events: auto !important;
    cursor: pointer;
}

.registration-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.registration-success-modal.show {
    opacity: 1;
    pointer-events: all;
}

.success-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.success-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 30, 0.95) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 24px;
    padding: 2rem;
    width: 400px;
    max-width: 90%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 100px rgba(128, 128, 128, 0.05);
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.registration-success-modal.show .success-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

/* Confirmation Modal Styles */
.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.confirmation-modal.show {
    opacity: 1;
    pointer-events: all;
}

body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.confirmation-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.confirmation-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 30, 0.95) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 100px rgba(128, 128, 128, 0.05);
    text-align: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.confirmation-modal.show .confirmation-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.confirmation-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.confirmation-modal-message {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
}

.confirmation-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.confirmation-modal-btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    min-width: 120px;
}

.confirmation-modal-btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.confirmation-modal-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    transform: none;
}

.confirmation-modal-btn-confirm {
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.confirmation-modal-btn-confirm:hover {
    background: #333;
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: none;
    transform: none;
}

.confirmation-modal-btn-danger {
    background: #f44336;
    color: white;
    border: none;
}

.confirmation-modal-btn-danger:hover {
    background: #d32f2f;
    box-shadow: none;
    transform: none;
}

/* Confirmation Modal Input & Textarea Styles */
.confirmation-modal-content input[type="text"],
.confirmation-modal-content input[type="date"],
.confirmation-modal-content textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(128, 128, 128, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.confirmation-modal-content input[type="text"]:focus,
.confirmation-modal-content input[type="date"]:focus,
.confirmation-modal-content textarea:focus {
    outline: none;
    border-color: rgba(128, 128, 128, 0.6);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(128, 128, 128, 0.2);
}

.confirmation-modal-content input[type="text"]:hover,
.confirmation-modal-content input[type="date"]:hover,
.confirmation-modal-content textarea:hover {
    border-color: rgba(128, 128, 128, 0.5);
}

.confirmation-modal-content label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.confirmation-modal-content textarea {
    resize: vertical;
    min-height: 80px;
}

.confirmation-modal-content .upc-input {
    font-family: monospace;
    font-size: 1.1rem;
    text-align: center;
    letter-spacing: 0.1em;
}

/* Alert Modal Styles */
.alert-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.alert-modal.show {
    opacity: 1;
    pointer-events: all;
}

.alert-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.alert-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 30, 0.95) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 100px rgba(128, 128, 128, 0.05);
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.alert-modal.show .alert-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.alert-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.alert-modal-message {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.alert-modal-btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
    color: white;
    min-width: 120px;
}

.alert-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(128, 128, 128, 0.4);
}

.success-icon-wrapper {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.success-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #4CAF50;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: successPulse 0.6s ease-out;
}

.success-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.4) 0%, rgba(76, 175, 80, 0.2) 100%);
    animation: ripple 1s ease-out infinite;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.checkmark-icon {
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 1;
}

.checkmark-circle {
    stroke: #4CAF50;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    stroke: #4CAF50;
    stroke-width: 3;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

.login-error-modal .error-circle {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.2) 0%, rgba(244, 67, 54, 0.1) 100%) !important;
    border: 3px solid #E53935 !important;
    animation: errorPulse 0.6s ease-out;
    position: relative;
}

.login-error-modal .error-circle::before {
    display: none !important;
}

.login-error-modal .error-circle::after {
    display: none !important;
}

.login-error-modal .error-circle-bg {
    stroke: #E53935;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.login-error-modal .error-cross {
    stroke: #E53935;
    stroke-width: 3;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

.login-error-modal .alert-modal-content {
    border: 1px solid rgba(255, 64, 129, 0.4) !important;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 100px rgba(255, 64, 129, 0.05),
        0 0 30px rgba(255, 64, 129, 0.2) !important;
}

@keyframes errorPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.loading-modal .success-circle {
    animation: spin 1s linear infinite !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinCircle {
    0% {
        stroke-dashoffset: 125;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 125;
    }
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-message {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.success-modal-content .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
}

.form-section {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(128, 128, 128, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(128, 128, 128, 0.15);
    transition: all 0.3s ease;
}

.form-section-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(128, 128, 128, 0.3);
}

.form-section .form-group {
    margin-bottom: 15px;
}

.form-section .form-group:last-child {
    margin-bottom: 0;
}

.form-section input[type="file"] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
}

.form-section input[type="file"]:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.2);
}

.form-section input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-section input[type="file"]::file-selector-button:hover {
    background: linear-gradient(135deg, #0099cc, #007aa3);
    transform: translateY(-1px);
}


.form-submit-group {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.contact-form .btn-submit,
.form-submit-group .btn-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    z-index: 10;
    visibility: visible;
    opacity: 1;
    color: #ffffff !important;
    text-align: center;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-submit:disabled:hover {
    transform: none;
    box-shadow: none;
}

.btn-submit .btn-loading {
    display: none;
}

.btn-submit:disabled .btn-text {
    display: none;
}

.btn-submit:disabled .btn-loading {
    display: inline-block;
}

.footer {
    background: transparent;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(128, 128, 128, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(128, 128, 128, 0.5), rgba(128, 128, 128, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 20px 0 30px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.social-media {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 25px;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.social-btn:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(128, 128, 128, 0.3);
}

.social-btn.instagram:hover {
    color: #E4405F;
    border-color: #E4405F;
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

.social-btn.twitter:hover {
    color: #1DA1F2;
    border-color: #1DA1F2;
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
}

.social-btn.youtube:hover {
    color: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.social-btn.spotify:hover {
    color: #1DB954;
    border-color: #1DB954;
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.3);
}

.social-btn.tiktok:hover {
    color: #000000;
    border-color: #000000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-btn svg {
    transition: transform 0.3s ease;
}

.social-btn:hover svg {
    transform: scale(1.1);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #ffffff !important;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #ffffff !important;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: #ffffff !important;
    opacity: 0.8;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(128, 128, 128, 0.1);
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-media {
        justify-content: center;
        gap: 10px;
    }
    
    .social-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .social-btn span {
        display: none;
    }
    
    .social-btn svg {
        width: 18px;
        height: 18px;
    }
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    animation: slideInRight 0.3s ease;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    line-height: 1.5;
}

.notification-success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.notification-error {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.notification-info {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: 1px solid rgba(128, 128, 128, 0.3);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        font-size: 0.9rem;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition-smooth);
        box-shadow: -5px 0 20px rgba(128, 128, 128, 0.3);
        border-left: 1px solid rgba(128, 128, 128, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .artists-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .releases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .release-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .release-cover {
        height: 300px;
    }
    
    .release-info {
        padding: 1.5rem;
    }
    
    .release-title {
        font-size: 1.2rem;
    }
    
    .listen-btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

.login-section {
    padding: 8rem 0;
    background: transparent;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.register-section {
    padding: 8rem 0;
    background: transparent;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.login-section .container {
    max-width: 1200px;
    width: 600px;
    padding: 0;
}

.register-section .container {
    max-width: 900px;
    width: 700px;
    padding: 0;
}

.login-wrapper {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.register-wrapper {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 20px;
    padding: 3rem 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 0 100px rgba(128, 128, 128, 0.03);
    width: 100%;
}

.register-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 20px;
    padding: 0.1rem 3rem 0.2rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 0 100px rgba(128, 128, 128, 0.03);
    width: 600px;
    height: 730px;
    max-width: 800px;
    max-height: 900px;
    overflow: hidden;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header .logo {
    justify-content: center;
    margin-bottom: 2rem;
}

.register-header {
    text-align: center;
    margin-bottom: 0;
}

.register-header .logo {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.login-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.register-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.05rem;
}

.login-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.register-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.register-form .form-group {
    gap: 0.2rem;
}

.register-form .form-group label {
    font-size: 0.85rem;
}

.register-form .form-group input {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
}

.register-form .form-group input[type="password"] {
    font-size: 14px !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.checkbox-group a:hover {
    border-bottom-color: var(--primary-color);
}

.btn-login {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.btn-register {
    width: 100%;
    padding: 0.85rem;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    margin-top: 0.1rem;
}

.btn-loading {
    display: none;
}

.btn:disabled .btn-text {
    display: none;
}

.btn:disabled .btn-loading {
    display: inline;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(128, 128, 128, 0.1);
}

.register-footer {
    text-align: center;
    margin-top: 0.4rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(128, 128, 128, 0.1);
}

.login-footer p {
    color: var(--text-secondary);
    margin: 0;
}

.register-footer p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.85rem;
}

.login-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.register-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
    font-size: 0.85rem;
}

.login-link:hover,
.register-link:hover {
    border-bottom-color: var(--primary-color);
}

.dashboard-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    position: relative;
    background: transparent;
}

.dashboard-hero-content {
    position: relative;
    z-index: 1;
}

.dashboard-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.dashboard-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dashboard-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.dashboard-content {
    padding: 4rem 0;
    background: transparent;
}

.upload-section,
.my-tracks-section {
    margin-bottom: 4rem;
    overflow: visible;
}

.upload-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 0 100px rgba(128, 128, 128, 0.03);
    overflow: visible;
}

/* When step 1 is active, allow page scroll */
body:has(#step1.active) {
    overflow-y: auto !important;
}

html:has(#step1.active) {
    overflow-y: auto !important;
}

/* When step 2 is active, allow scroll */
body:has(#step2.active) {
    overflow-y: auto !important;
}

html:has(#step2.active) {
    overflow-y: auto !important;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.upload-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Step Indicator Styles */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.step-item.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(128, 128, 128, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.2) 0%, rgba(0, 102, 255, 0.2) 100%);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(128, 128, 128, 0.3);
}

.step-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    transition: all 0.3s ease;
}

.step-item.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Form Step Styles */
.form-step {
    display: none;
    overflow-y: visible;
    overflow-x: hidden;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

#step1.active {
    overflow-y: visible;
    overflow-x: hidden;
}

.form-step.active:not(#step1) {
    overflow-y: visible;
    overflow-x: hidden;
}

/* Step 1 - no scrollbar restrictions, allow page scroll */
#step1 {
    overflow-y: visible;
    overflow-x: hidden;
    max-height: none;
    height: auto;
}

/* Allow scrollbar on step 2 */
#step2 {
    overflow-y: visible !important;
    overflow-x: hidden !important;
    max-height: none;
    height: auto;
}

/* Remove scrollbar restrictions from upload card */
.upload-card:has(#step1.active),
.upload-card:has(#step2.active) {
    overflow-y: visible !important;
    overflow-x: hidden !important;
    max-height: none !important;
}

/* Remove scrollbar restrictions from upload section */
.upload-section:has(#step1.active),
.upload-section:has(#step2.active) {
    overflow-y: visible !important;
    overflow-x: hidden !important;
}

/* Remove scrollbar restrictions from container */
.admin-dashboard-content:has(#step1.active),
.admin-dashboard-content:has(#step2.active) {
    overflow-y: visible !important;
    overflow-x: hidden !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Radio Button Styles - Oval */
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 32px;
    height: 20px;
    min-width: 32px;
    min-height: 20px;
    border: none;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 0;
    align-self: center;
}

input[type="radio"]:hover {
    background: transparent;
}

input[type="radio"]:checked {
    border: none;
    background: transparent;
    box-shadow: none;
}

input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 12px rgba(128, 128, 128, 0.8), inset 0 0 4px rgba(255, 255, 255, 0.3);
}

.radio-option-label:has(input[type="radio"]:checked),
.radio-option-label input[type="radio"]:checked + div {
    border-color: rgba(128, 128, 128, 0.5) !important;
}

.radio-option-label:has(input[type="radio"]:checked) {
    background: rgba(128, 128, 128, 0.05) !important;
    border-color: rgba(128, 128, 128, 0.5) !important;
}

/* Date Input Styles */
.date-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(128, 128, 128, 0.3);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.date-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(128, 128, 128, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.date-input:hover {
    border-color: rgba(128, 128, 128, 0.5);
    background: rgba(0, 0, 0, 0.35);
}

/* Checkbox Group Container */
.checkbox-group-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 2px solid rgba(128, 128, 128, 0.2);
    min-height: 60px;
}

/* Checkbox Option Styles */
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(128, 128, 128, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    flex: 0 0 auto;
}

.checkbox-option:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(128, 128, 128, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 128, 128, 0.2);
}

.checkbox-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(128, 128, 128, 0.5);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin: 0;
}

.checkbox-option input[type="checkbox"]:hover {
    border-color: rgba(128, 128, 128, 0.8);
    background: rgba(128, 128, 128, 0.1);
}

.checkbox-option input[type="checkbox"]:checked {
    border-color: var(--primary-color);
    background: rgba(128, 128, 128, 0.2);
}

.checkbox-option input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-option:has(input[type="checkbox"]:checked) {
    background: rgba(128, 128, 128, 0.1);
    border-color: rgba(128, 128, 128, 0.5);
    box-shadow: 0 0 15px rgba(128, 128, 128, 0.3);
}

.checkbox-option span {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.checkbox-option:has(input[type="checkbox"]:checked) span {
    color: var(--primary-color);
    font-weight: 600;
}

.file-upload {
    position: relative;
}

.file-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-input-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: #000000;
    border: 2px dashed rgba(128, 128, 128, 0.3);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.file-input-wrapper:hover .file-input-display {
    border-color: var(--primary-color);
    background: rgba(128, 128, 128, 0.02);
}

.file-input-text {
    font-size: 1rem;
}

.file-input-icon {
    font-size: 1.2rem;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.track-card {
    background: #0a0a0a;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(128, 128, 128, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(128, 128, 128, 0.2), 0 0 60px rgba(128, 128, 128, 0.1);
    border-color: rgba(128, 128, 128, 0.4);
}

.track-cover {
    position: relative;
    height: 150px;
    background: linear-gradient(135deg, #00f5ff 0%, #0066ff 50%, #ff00ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-info {
    padding: 1rem;
}

.track-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.track-artist {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.track-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.track-genre {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(128, 128, 128, 0.1);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--primary-color);
    border: 1px solid rgba(128, 128, 128, 0.3);
}

.track-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: 20px;
}

.btn-danger {
    background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
    color: white;
    border: none;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
}

.logout-btn {
    color: #ff4757 !important;
    border-bottom: none !important;
}

.logout-btn:hover {
    color: #ff3742 !important;
    border-bottom: none !important;
}

.admin-link {
    color: #ff00ff !important;
    border-bottom: 1px solid transparent !important;
}

.admin-link:hover {
    color: #ff0080 !important;
    border-bottom-color: #ff0080 !important;
}

@media (max-width: 768px) {
    .login-card,
    .register-card,
    .upload-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .login-header h1 {
        font-size: 1.75rem;
    }
    
    .login-header .logo {
        margin-bottom: 1.5rem;
    }
    
    .login-section .container {
        width: 100%;
        padding: 0 1rem;
    }
    
    .upload-form-grid {
        grid-template-columns: 1fr !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .dashboard-title {
        font-size: 2.5rem;
    }
    
    .tracks-grid {
        grid-template-columns: 1fr;
    }
}


.admin-dashboard-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    position: relative;
    background: transparent;
}

.admin-dashboard-hero-content {
    position: relative;
    z-index: 1;
}

.admin-dashboard-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.admin-dashboard-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.admin-dashboard-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.admin-dashboard-content {
    padding: 4rem 0;
    background: transparent;
}

.admin-stats-section {
    margin-bottom: 4rem;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.admin-stat-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.admin-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(128, 128, 128, 0.4);
    box-shadow: 0 15px 40px rgba(128, 128, 128, 0.2);
}

.stat-icon {
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(128, 128, 128, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(128, 128, 128, 0.3);
    color: var(--accent-color);
    flex-shrink: 0;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    padding: 0.5rem;
    border-radius: 16px;
    border: 1px solid rgba(128, 128, 128, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.admin-tabs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

.admin-tab {
    position: relative;
    padding: 1rem 2.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    overflow: hidden;
}

.admin-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.1) 0%, rgba(128, 128, 128, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.admin-tab:hover::before {
    opacity: 1;
}

.admin-tab:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

.admin-tab.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.2) 0%, rgba(128, 128, 128, 0.2) 100%);
    box-shadow: 
        0 4px 20px rgba(128, 128, 128, 0.3),
        0 0 0 1px rgba(128, 128, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.admin-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #00f5ff);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 0 20px var(--accent-color);
}

.admin-tab.active::before {
    opacity: 1;
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

.admin-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.admin-filters select,
.admin-search input {
    padding: 0.8rem 1.5rem;
    background: #000000;
    border: 2px solid rgba(128, 128, 128, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.admin-filters select:focus,
.admin-search input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(128, 128, 128, 0.2);
}

.admin-tracks-grid,
.admin-artists-grid,
.admin-users-grid,
.admin-releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.admin-track-card,
.admin-artist-card,
.admin-user-card,
.admin-release-card {
    background: #0a0a0a;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(128, 128, 128, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.admin-track-card:hover,
.admin-artist-card:hover,
.admin-user-card:hover,
.admin-release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(128, 128, 128, 0.2);
    border-color: rgba(128, 128, 128, 0.4);
}

.admin-release-card .release-cover {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #ff00ff 0%, #ff0080 50%, #00f5ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.admin-release-card .release-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-release-card .no-cover {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
}

.admin-release-card .release-info {
    padding: 1.5rem;
}

.admin-release-card .release-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.admin-release-card .release-artist,
.admin-release-card .release-date {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.admin-release-card .release-notes {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    line-height: 1.6;
}

.admin-release-card .release-status {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 1rem 0;
}

.admin-release-card .release-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.admin-release-card .btn-success {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex: 1;
    min-width: 120px;
}

.admin-release-card .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

.admin-release-card .btn-danger {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex: 1;
    min-width: 120px;
}

.admin-release-card .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.4);
}

.admin-track-card .track-cover {
    position: relative;
    height: 150px;
    background: linear-gradient(135deg, #ff00ff 0%, #ff0080 50%, #00f5ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.admin-track-card .track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-track-card .track-info {
    padding: 1.5rem;
}

.admin-track-card .track-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.admin-track-card .btn-success,
.admin-track-card .btn-danger {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.admin-track-card .btn-success {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
}

.admin-track-card .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

.admin-track-card .btn-danger {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
}

.admin-track-card .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.4);
}

.track-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0.5rem 0;
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-approved {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.status-rejected {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.status-released {
    background: rgba(128, 128, 128, 0.2);
    color: #00f5ff;
    border: 1px solid rgba(128, 128, 128, 0.4);
    box-shadow: 0 0 10px rgba(128, 128, 128, 0.3);
}

.webhook-status {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0.3rem 0;
}

.status-sent {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

/* Submissions Table Styles */
.submissions-table-container {
    overflow-x: auto;
    margin-top: 2rem;
    background: #0a0a0a;
    border-radius: 15px;
    border: 1px solid rgba(128, 128, 128, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.submissions-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
}

.submissions-table thead {
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.1) 0%, rgba(128, 128, 128, 0.1) 100%);
}

.submissions-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(128, 128, 128, 0.3);
}

.submissions-table th:first-child,
.submissions-table td:first-child {
    width: 70px;
    min-width: 70px;
    max-width: 70px;
    padding: 0.75rem;
}

.submissions-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    vertical-align: middle;
}

.submissions-table tbody tr {
    transition: var(--transition-smooth);
}

.submissions-table tbody tr:hover {
    background: rgba(128, 128, 128, 0.05);
}

.submissions-table tbody tr:last-child td {
    border-bottom: none;
}

.submission-cover {
    width: 50px;
    height: 50px;
    min-width: 50px;
    max-width: 50px;
    border-radius: 6px;
    background: linear-gradient(135deg, #ff00ff 0%, #ff0080 50%, #00f5ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.submission-cover:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(128, 128, 128, 0.4);
}

.submission-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.submission-cover .no-cover {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    text-align: center;
    padding: 0.25rem;
}

.submission-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.submission-artist {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.submission-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.submission-notes {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.submission-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.submission-actions .btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    white-space: nowrap;
}

.submission-actions .btn-success {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
}

.submission-actions .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

.submission-actions .btn-danger {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
}

.submission-actions .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.4);
}

.submission-actions .btn-primary {
    background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
    color: white;
}

.submission-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(128, 128, 128, 0.4);
}

@media (max-width: 768px) {
    .submissions-table-container {
        border-radius: 10px;
    }
    
    .submissions-table th,
    .submissions-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .submission-actions {
        flex-direction: column;
    }
    
    .submission-actions .btn {
        width: 100%;
    }
}

/* Pagination Styles */
.pagination-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(.disabled):not(.active) {
    background: rgba(128, 128, 128, 0.2);
    border-color: rgba(128, 128, 128, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 128, 128, 0.3);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #00f5ff 0%, #0066ff 100%);
    border-color: rgba(128, 128, 128, 0.5);
    color: white;
    box-shadow: 0 4px 12px rgba(128, 128, 128, 0.4);
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
}

.pagination-ellipsis {
    padding: 0 0.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.pagination-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 768px) {
    .pagination {
        gap: 0.25rem;
    }
    
    .pagination-btn {
        min-width: 35px;
        height: 35px;
        padding: 0.4rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .pagination-info {
        font-size: 0.8rem;
    }
}

/* Cover Art Modal Styles */
.cover-art-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cover-art-modal.show {
    opacity: 1;
    pointer-events: all;
}

.cover-art-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.cover-art-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 30, 0.95) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 24px;
    padding: 2rem;
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 100px rgba(128, 128, 128, 0.05);
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cover-art-modal.show .cover-art-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.cover-art-modal-image {
    max-width: 600px;
    max-height: 70vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.cover-art-modal-title {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cover-art-modal-artist {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.cover-art-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 1;
}

.cover-art-modal-close:hover {
    background: rgba(244, 67, 54, 0.3);
    border-color: rgba(244, 67, 54, 0.5);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .cover-art-modal-content {
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .cover-art-modal-image {
        max-width: 100%;
        max-height: 60vh;
    }
    
    .cover-art-modal-title {
        font-size: 1.2rem;
    }
    
    .cover-art-modal-artist {
        font-size: 0.9rem;
    }
}

.track-approved-date {
    font-size: 0.8rem;
    color: #4caf50;
    margin-top: 0.5rem;
    font-weight: 500;
}

.track-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #0a0a0a;
    border-radius: 20px;
    border: 1px solid rgba(128, 128, 128, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}

.modal-header h2 {
    color: #00f5ff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #00f5ff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: rgba(128, 128, 128, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.track-detail-section {
    margin-bottom: 2rem;
}

.track-detail-section h3 {
    color: #00f5ff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item label {
    color: #00f5ff;
    font-weight: 600;
    font-size: 0.9rem;
}

.detail-item span {
    color: #ffffff;
    font-size: 0.95rem;
    padding: 0.5rem;
    background: rgba(128, 128, 128, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(128, 128, 128, 0.1);
}

.detail-item p {
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 1rem;
    background: rgba(128, 128, 128, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(128, 128, 128, 0.1);
}

.modal-footer {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    border-top: 1px solid rgba(128, 128, 128, 0.2);
    justify-content: flex-end;
}

.modal-footer .btn {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
}

.track-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn-success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.admin-artist-card,
.admin-user-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1.5rem;
}

.artist-avatar,
.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.artist-info,
.user-info {
    flex: 1;
}

.artist-name,
.user-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.artist-email,
.user-email {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.artist-meta,
.user-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.user-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-danger {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    border: none;
    color: white;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 67, 54, 0.4);
}

.artist-genre {
    background: rgba(128, 128, 128, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    color: var(--accent-color);
    border: 1px solid rgba(128, 128, 128, 0.3);
}

.artist-actions {
    display: flex;
    gap: 0.5rem;
}

.admin-add-artist-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 0 100px rgba(128, 128, 128, 0.03);
}

.admin-add-artist-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.no-data {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.no-data h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.admin-backup-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 0 100px rgba(128, 128, 128, 0.03);
}

.backup-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.backup-info {
    background: rgba(128, 128, 128, 0.05);
    border: 1px solid rgba(128, 128, 128, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
}

.backup-info h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.backup-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.admin-quick-links {
    margin-top: 3rem;
}

.quick-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.quick-link-card {
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.quick-link-card:hover::before {
    left: 100%;
}

.quick-link-card:hover {
    transform: translateY(-8px);
    border-color: rgba(128, 128, 128, 0.5);
    box-shadow: 0 15px 50px rgba(128, 128, 128, 0.3);
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.15) 0%, rgba(0, 102, 255, 0.15) 100%);
}

.quick-link-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.quick-link-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: var(--text-primary);
}

.quick-link-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .admin-add-artist-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .admin-dashboard-title {
        font-size: 2.5rem;
    }
    
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-tabs {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .admin-tab {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .admin-tracks-grid,
    .admin-artists-grid,
    .admin-users-grid,
    .admin-releases-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-link-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-link-card {
        padding: 2rem 1.5rem;
    }
    
    .quick-link-icon {
        font-size: 2.5rem;
    }
    
    .admin-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-artist-card {
        flex-direction: column;
        text-align: center;
    }
}

.my-tracks-hero {
    padding: 10rem 0 4rem;
    text-align: center;
    position: relative;
    background: transparent;
}

.my-tracks-hero-content {
    position: relative;
    z-index: 1;
}

.my-tracks-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.my-tracks-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.my-tracks-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.my-tracks-content {
    padding: 4rem 0;
    background: transparent;
}

.my-tracks-section {
    margin-bottom: 4rem;
}

.no-tracks {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 0 100px rgba(128, 128, 128, 0.03);
}

.no-tracks h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.no-tracks p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .my-tracks-title {
        font-size: 2.5rem;
    }
    
    .tracks-grid {
        grid-template-columns: 1fr;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 5px;
    border: 2px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
    box-shadow: 0 0 10px rgba(128, 128, 128, 0.5);
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-load {
    opacity: 0;
    transform: translateY(60px);
    animation: slideUpFade 1s ease-out forwards;
}

.animate-on-load.delay-1 {
    animation-delay: 0.1s;
}

.animate-on-load.delay-2 {
    animation-delay: 0.2s;
}

.animate-on-load.delay-3 {
    animation-delay: 0.3s;
}

.animate-on-load.delay-4 {
    animation-delay: 0.4s;
}

.animate-on-load.delay-5 {
    animation-delay: 0.5s;
}

.animate-on-load.delay-6 {
    animation-delay: 0.6s;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

::selection {
    background: var(--primary-color);
    color: white;
}

.delete-release-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.delete-release-modal.show {
    opacity: 1;
    pointer-events: all;
}

.delete-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.delete-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 30, 0.95) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 100px rgba(244, 67, 54, 0.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.delete-release-modal.show .delete-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

/* Tab Button Styles */
.tab-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(128, 128, 128, 0.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.2) 0%, rgba(0, 102, 255, 0.2) 100%);
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(128, 128, 128, 0.2);
}

.delete-modal-content textarea {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(244, 67, 54, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    transition: all 0.3s ease;
}

.delete-modal-content textarea:focus {
    outline: none;
    border-color: rgba(244, 67, 54, 0.6);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

.delete-modal-content textarea:hover {
    border-color: rgba(244, 67, 54, 0.5);
}

/* Delete Modal Buttons */
.delete-modal-content .btn-cancel-delete,
.delete-modal-content .btn-cancel-reject,
.delete-modal-content .btn.btn-cancel-delete,
.delete-modal-content .btn.btn-cancel-reject {
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-primary) !important;
    position: relative !important;
    overflow: visible !important;
}

.delete-modal-content .btn-cancel-delete::before,
.delete-modal-content .btn-cancel-reject::before,
.delete-modal-content .btn.btn-cancel-delete::before,
.delete-modal-content .btn.btn-cancel-reject::before {
    display: none !important;
}

.delete-modal-content .btn-cancel-delete:hover,
.delete-modal-content .btn-cancel-reject:hover,
.delete-modal-content .btn.btn-cancel-delete:hover,
.delete-modal-content .btn.btn-cancel-reject:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1) !important;
}

.delete-modal-content .btn-confirm-delete,
.delete-modal-content .btn-confirm-reject,
.delete-modal-content .btn.btn-confirm-delete,
.delete-modal-content .btn.btn-confirm-reject {
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%) !important;
    border: none !important;
    color: white !important;
    position: relative !important;
    overflow: visible !important;
}

.delete-modal-content .btn-confirm-delete::before,
.delete-modal-content .btn-confirm-reject::before,
.delete-modal-content .btn.btn-confirm-delete::before,
.delete-modal-content .btn.btn-confirm-reject::before {
    display: none !important;
}

.delete-modal-content .btn-confirm-delete:hover,
.delete-modal-content .btn-confirm-reject:hover,
.delete-modal-content .btn.btn-confirm-delete:hover,
.delete-modal-content .btn.btn-confirm-reject:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(244, 67, 54, 0.4) !important;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%) !important;
}

/* Modern Action Menu Styles */
.submission-actions {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.15) 0%, rgba(0, 102, 255, 0.15) 100%);
    border: 1.5px solid rgba(128, 128, 128, 0.4);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.action-menu-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.3) 0%, rgba(0, 102, 255, 0.3) 100%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.action-menu-btn:hover::before {
    width: 100%;
    height: 100%;
}

.action-menu-btn:hover {
    border-color: rgba(128, 128, 128, 0.7);
    box-shadow: 0 0 20px rgba(128, 128, 128, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.action-menu-btn:active {
    transform: scale(0.95);
}

.action-menu-btn span {
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
}

.action-menu-dropdown {
    display: none;
    position: fixed;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98) 0%, rgba(5, 5, 10, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 12px;
    padding: 8px;
    min-width: 180px;
    z-index: 10000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(128, 128, 128, 0.1) inset;
    animation: dropdownFadeIn 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.action-menu-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(128, 128, 128, 0.5), transparent);
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.action-menu-dropdown button {
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 2px 0;
}

.action-menu-dropdown button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: currentColor;
    border-radius: 0 2px 2px 0;
    transition: height 0.2s ease;
}

.action-menu-dropdown button:hover::before {
    height: 60%;
}

/* DELETE button - red left border on hover */
.action-menu-dropdown .action-menu-delete:hover::before {
    background: #f44336 !important;
    height: 60%;
}

/* RELEASE button - blue left border on hover */
.action-menu-dropdown .action-menu-release:hover::before {
    background: #2196f3 !important;
    height: 60%;
}


.action-menu-dropdown button:hover:not(.action-menu-delete):not(.action-menu-release):not(.action-menu-edit) {
    background: rgba(128, 128, 128, 0.08);
    transform: translateX(4px);
    padding-left: 20px;
}

.action-menu-dropdown .action-menu-delete:hover,
.action-menu-dropdown .action-menu-release:hover,
.action-menu-dropdown .action-menu-edit:hover {
    transform: translateX(4px);
    padding-left: 20px;
}

.action-menu-dropdown button:active {
    transform: translateX(2px) scale(0.98);
}

/* Action item colors */
.action-menu-dropdown button[onclick*="Edit"],
.action-menu-dropdown .action-menu-edit {
    color: #b0b0ff;
}

.action-menu-dropdown button[onclick*="Edit"]:hover,
.action-menu-dropdown .action-menu-edit:hover {
    background: rgba(128, 128, 128, 0.08);
    color: #c5c5ff;
    padding-left: 20px;
}

/* EDIT button - cyan/blue left border on hover */
.action-menu-dropdown .action-menu-edit:hover::before {
    background: #00f5ff !important;
    height: 60%;
}

.action-menu-dropdown button[onclick*="Approve"],
.action-menu-dropdown button[onclick*="approve"],
.action-menu-dropdown .action-menu-approve {
    color: #4caf50 !important;
}

.action-menu-dropdown button[onclick*="Approve"]:hover,
.action-menu-dropdown button[onclick*="approve"]:hover,
.action-menu-dropdown .action-menu-approve:hover {
    background: rgba(76, 175, 80, 0.12) !important;
    color: #66bb6a !important;
}

.action-menu-dropdown .action-menu-approve:hover::before {
    background: #4caf50 !important;
    height: 60%;
}

.action-menu-dropdown button[onclick*="Reject"],
.action-menu-dropdown button[onclick*="reject"],
.action-menu-dropdown .action-menu-reject {
    color: #f44336 !important;
}

.action-menu-dropdown button[onclick*="Reject"]:hover,
.action-menu-dropdown button[onclick*="reject"]:hover,
.action-menu-dropdown .action-menu-reject:hover {
    background: rgba(244, 67, 54, 0.12) !important;
    color: #ef5350 !important;
}

.action-menu-dropdown .action-menu-reject:hover::before {
    background: #f44336 !important;
    height: 60%;
}

.action-menu-dropdown button[onclick*="Release"],
.action-menu-dropdown button[onclick*="release"],
.action-menu-dropdown .action-menu-release {
    color: #2196f3;
}

.action-menu-dropdown button[onclick*="Release"]:hover,
.action-menu-dropdown button[onclick*="release"]:hover,
.action-menu-dropdown .action-menu-release:hover {
    background: rgba(128, 128, 128, 0.08);
    color: #42a5f5;
    padding-left: 20px;
}

.action-menu-dropdown button[onclick*="Delete"],
.action-menu-dropdown button[onclick*="delete"],
.action-menu-dropdown .action-menu-delete {
    color: #f44336;
}

.action-menu-dropdown button[onclick*="Delete"]:hover,
.action-menu-dropdown button[onclick*="delete"]:hover,
.action-menu-dropdown .action-menu-delete:hover {
    background: rgba(128, 128, 128, 0.08);
    color: #ef5350;
    padding-left: 20px;
}

.action-menu-dropdown button[onclick*="banUser"],
.action-menu-dropdown button[onclick*="Ban"] {
    color: #f44336;
}

.action-menu-dropdown button[onclick*="banUser"]:hover,
.action-menu-dropdown button[onclick*="Ban"]:hover {
    background: rgba(128, 128, 128, 0.08);
    color: #ef5350;
}

/* Responsive */
@media (max-width: 768px) {
    .action-menu-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    .action-menu-dropdown {
        min-width: 160px;
        right: auto;
        left: 0;
    }
}

/* Admin Content Fix - Ensure content is visible above background layers */
.admin-content {
    position: relative !important;
    z-index: 1 !important;
    min-height: calc(100vh - 60px) !important;
}

.admin-main-container {
    position: relative;
    z-index: 1;
}

