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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f5f5;
}

/* Landing Page */
.landing {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.logo::before {
    content: '🎤';
    font-size: 80px;
}

.brand-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 24px;
    color: #888;
    margin-bottom: 60px;
}

/* Auth Forms */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.auth-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.auth-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

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

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #4285f4;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background: #4285f4;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #3367d6;
}

.auth-divider {
    text-align: center;
    margin: 30px 0;
    color: #666;
}

.google-btn {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 30px;
}

.auth-link {
    text-align: center;
    color: #666;
}

.auth-link a {
    color: #4285f4;
    text-decoration: none;
    font-weight: 600;
}

/* Dashboard */
.dashboard {
    min-height: 100vh;
    background: #f8f9fa;
}

.header {
    background: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.welcome-text {
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4285f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.main-content {
    padding: 30px;
}

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

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.stat-label {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.action-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-upload {
    background: #4285f4;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-songs {
    background: white;
    color: #333;
    padding: 15px 30px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.songs-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.song-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.song-cover {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.song-info h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.song-meta {
    color: #666;
    font-size: 11px;
}

.song-streams {
    margin-left: auto;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.live-badge {
    background: #00c851;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 9px;
    margin-left: 8px;
}

/* Upload Form */
.upload-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
}

.upload-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.upload-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.file-upload {
    border: 2px dashed #e1e5e9;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s;
}

.file-upload:hover {
    border-color: #4285f4;
}

.file-upload-icon {
    font-size: 48px;
    color: #666;
    margin-bottom: 15px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 15px 0 25px;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 30px 30px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #8E8E93;
    font-size: 12px;
}

.nav-item.active {
    color: #007AFF;
}

.nav-icon {
    margin-bottom: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Platform List */
.platform-list {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.platform-header {
    text-align: center;
    margin-bottom: 40px;
}

.platform-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.platform-subtitle {
    color: #666;
    font-size: 18px;
}

.platform-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.platform-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.platform-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-name {
    font-size: 18px;
    font-weight: 600;
}

.play-btn {
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    padding: 10px 20px;
    border-radius: 25px;
    color: #666;
    cursor: pointer;
    font-weight: 500;
}

.preorder-btn {
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    padding: 10px 20px;
    border-radius: 25px;
    color: #666;
    cursor: pointer;
    font-weight: 500;
}

/* Admin Panel */
.admin-header {
    background: #2c3e50;
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-nav {
    background: #34495e;
    padding: 20px 0;
}

.admin-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.admin-nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.3s;
}

.admin-nav a:hover, .admin-nav a.active {
    background: #2c3e50;
}

.admin-content {
    padding: 30px;
}

.admin-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.admin-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-approved {
    background: #d4edda;
    color: #155724;
}

.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.btn-small {
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    margin-right: 5px;
}

.btn-approve {
    background: #28a745;
    color: white;
}

.btn-reject {
    background: #dc3545;
    color: white;
}

.btn-delete {
    background: #6c757d;
    color: white;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .main-content {
        padding: 20px;
        padding-bottom: 80px;
    }
}
/* Professional Song Details Styles */
.song-details-container {
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.song-detail-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.song-cover-large {
    width: 180px;
    height: 180px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 20px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cover-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,107,107,0.8), rgba(78,205,196,0.8));
    border-radius: 20px;
}

.play-button {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.song-meta-info {
    text-align: center;
    color: white;
}

.song-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.artist-name {
    font-size: 18px;
    margin: 0 0 15px 0;
    opacity: 0.9;
    font-weight: 500;
}

.song-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.tag-live {
    background: rgba(76, 175, 80, 0.8) !important;
    color: white;
}

.playlist-badge {
    background: #667eea;
    color: white;
    padding: 2px 5px;
    border-radius: 7px;
    font-size: 9px;
    font-weight: 500;
    display: inline-block;
    margin: 3px 0 4px 0;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-card-pro {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-card-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea20, #764ba220);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.stat-content {
    text-align: left;
}

.stat-label {
    font-size: 13px;
    color: #666;
    margin: 0 0 5px 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #333;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Music Player Controls */
.music-controls {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.progress-container {
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    margin-bottom: 10px;
}

.progress {
    height: 100%;
    background: #000;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s;
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.control-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.control-btn {
    background: none;
    border: none;
    color: #667eea;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: scale(1.1);
}

.play-pause-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 50px;
    height: 50px;
}

.play-pause-btn:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    transform: scale(1.05);
}

/* Upload Type Selector */
.upload-type-selector {
    padding: 40px 20px;
    text-align: center;
}

.upload-type-selector h2 {
    font-size: 24px;
    margin-bottom: 40px;
    color: #333;
}

.upload-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.upload-option {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.upload-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.option-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upload-option h3 {
    font-size: 18px;
    margin: 0 0 8px 0;
    color: #333;
}

.upload-option p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

@media (max-width: 600px) {
    .stats-cards {
        grid-template-columns: 1fr;
    }
    
    .song-detail-card {
        padding: 25px 20px;
    }
    
    .song-cover-large {
        width: 150px;
        height: 150px;
    }
    
    .song-title {
        font-size: 13px;
    }
    
    .control-buttons {
        gap: 15px;
    }
    
    .music-controls {
        padding: 15px;
    }
    
    .upload-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .upload-option {
        padding: 25px 15px;
    }
}