/* 
 * BMM Label Home Page - ULTRA MODERN DESIGN v2.0
 * Professional Music Platform Interface
 * Enhanced with advanced animations and effects
 */

:root {
    --bmm-gold: #ffc700;
    --bmm-gold-hover: #ffb000;
    --bmm-dark: #0a0a0a;
    --bmm-dark-light: #1a1a1a;
    --bmm-text: #ffffff;
    --bmm-text-secondary: rgba(255, 255, 255, 0.7);
    --bmm-accent: #8b5cf6;
    --bmm-success: #22c55e;
    --bmm-warning: #f59e0b;
    --bmm-error: #ef4444;
}

/* Global Enhancements */
* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, var(--bmm-dark) 0%, var(--bmm-dark-light) 50%, var(--bmm-dark) 100%);
    background-attachment: fixed;
    color: var(--bmm-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section improvements */
section {
    position: relative;
    padding: 6rem 0;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 199, 0, 0.3), transparent);
}

/* Enhanced buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--bmm-gold), var(--bmm-gold-hover));
    color: #000;
    box-shadow: 0 8px 32px rgba(255, 199, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(255, 199, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bmm-text);
    border: 2px solid rgba(255, 199, 0, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 199, 0, 0.1);
    border-color: var(--bmm-gold);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 0;
    margin: 0;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

#heroVideoPlayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}

#heroVideoPlayer iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200vw;
    height: 112.5vw;
    min-height: 200vh;
    min-width: 355.55vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 70%),
        linear-gradient(
            135deg,
            rgba(10, 10, 10, 0.9) 0%,
            rgba(26, 26, 26, 0.7) 30%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(26, 26, 26, 0.7) 70%,
            rgba(10, 10, 10, 0.9) 100%
        );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 90vh;
    padding: 4rem 0;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 199, 0, 0.2), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(255, 199, 0, 0.3);
    border-radius: 50px;
    color: var(--bmm-gold);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 3px;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 199, 0, 0.3));
}

.hero-subtitle {
    display: block;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--bmm-text-secondary);
    font-weight: 300;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--bmm-text-primary);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-family: 'Bebas Neue', cursive;
    color: var(--bmm-gold);
    font-weight: bold;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--bmm-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-play-btn {
    position: relative;
    overflow: hidden;
}

.hero-play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.hero-play-btn:hover::before {
    width: 200px;
    height: 200px;
}

/* Floating Music Cards */
.floating-music-cards {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    width: 200px;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(255, 199, 0, 0.3);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--bmm-gold);
    box-shadow: 0 20px 40px rgba(255, 199, 0, 0.2);
}

.card-1 {
    top: 50px;
    right: 100px;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 200px;
    right: 20px;
    animation: float 6s ease-in-out infinite 2s;
}

.card-3 {
    top: 350px;
    right: 150px;
    animation: float 6s ease-in-out infinite 4s;
}

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

.card-artwork {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}

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

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 199, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
    z-index: 10;
}

.floating-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay:hover {
    background: rgba(255, 199, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-overlay i {
    color: var(--bmm-dark);
    font-size: 1.2rem;
    margin-left: 2px;
}

.card-info {
    padding: 1rem;
}

.card-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--bmm-white);
}

.card-info p {
    font-size: 0.9rem;
    color: var(--bmm-text-secondary);
    margin: 0;
}

/* Quick Play Section */
.quick-play-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bmm-dark) 0%, var(--bmm-grey) 100%);
}

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

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 3rem;
    font-family: 'Bebas Neue', cursive;
    background: linear-gradient(135deg, #ffffff, var(--bmm-gold), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

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

.quick-play-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.quick-play-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.quick-play-item:hover {
    background: rgba(26, 26, 26, 0.8);
    border-color: var(--bmm-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.track-artwork {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.track-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 199, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.quick-play-item:hover .play-btn {
    opacity: 1;
}

.play-btn:hover {
    background: rgba(255, 199, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn i {
    color: var(--bmm-dark);
    font-size: 0.8rem;
    margin-left: 1px;
}

.track-info {
    flex: 1;
    min-width: 0;
}

.track-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bmm-white);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artist {
    font-size: 0.9rem;
    color: var(--bmm-text-secondary);
    margin-bottom: 0.5rem;
}

.track-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--bmm-text-secondary);
}

.track-actions {
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.quick-play-item:hover .track-actions {
    opacity: 1;
}

.btn-icon {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bmm-text-secondary);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    background: var(--bmm-gold);
    color: var(--bmm-dark);
}

/* Artists Showcase */
.artists-showcase {
    padding: 5rem 0;
    background: var(--bmm-dark);
}

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

.artist-showcase-card {
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.artist-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.artist-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(1px);
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.8) 0%,
        rgba(26, 26, 26, 0.6) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.artist-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.artist-rank {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.rank-amateur {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.rank-underground {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.rank-main {
    background: rgba(255, 199, 0, 0.2);
    color: var(--bmm-gold);
    border: 1px solid rgba(255, 199, 0, 0.3);
}

.rank-elite-underground {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.rank-main-plus {
    background: rgba(225, 29, 72, 0.2);
    color: #e11d48;
    border: 1px solid rgba(225, 29, 72, 0.3);
}

.rank-ceo {
    background: rgba(255, 199, 0, 0.3);
    color: var(--bmm-gold);
    border: 2px solid var(--bmm-gold);
    box-shadow: 0 0 20px rgba(255, 199, 0, 0.3);
}

.rank-subscription {
    display: inline-block;
    background: rgba(225, 29, 72, 0.3);
    color: #e11d48;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.rank-exclusive {
    display: inline-block;
    background: rgba(255, 199, 0, 0.3);
    color: var(--bmm-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.artist-info {
    text-align: center;
}

.artist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bmm-gold);
    margin-bottom: 1rem;
}

.artist-name {
    font-size: 1.8rem;
    font-family: 'Bebas Neue', cursive;
    color: var(--bmm-white);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

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

.artist-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.artist-stats .stat {
    text-align: center;
    font-size: 0.8rem;
    color: var(--bmm-text-secondary);
}

.artist-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Ranking System */
.ranking-system {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bmm-grey) 0%, var(--bmm-dark) 100%);
}

.ranking-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    margin-bottom: 4rem;
}

.rank-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    width: 280px;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
}

.rank-card:hover {
    transform: translateY(-10px);
    border-color: var(--bmm-gold);
    box-shadow: 0 20px 40px rgba(255, 199, 0, 0.1);
}

.rank-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.rank-amateur .rank-icon { background: linear-gradient(135deg, #22c55e, #16a34a); }
.rank-underground .rank-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }
.rank-main .rank-icon { background: linear-gradient(135deg, #FFD700, #FFC700); }

.rank-card h3 {
    font-size: 1.5rem;
    font-family: 'Bebas Neue', cursive;
    color: var(--bmm-white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.rank-percentage {
    font-size: 2.5rem;
    font-family: 'Bebas Neue', cursive;
    color: var(--bmm-gold);
    margin-bottom: 1rem;
}

.rank-features {
    text-align: left;
    list-style: none;
    margin-bottom: 1.5rem;
}

.rank-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--bmm-text-primary);
}

.rank-features i {
    color: var(--bmm-gold);
}

.rank-arrow {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--bmm-gold);
}

.rank-crown {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFC700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bmm-dark);
    font-size: 1.2rem;
}

.ranking-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.ranking-cta h3 {
    font-size: 2rem;
    font-family: 'Bebas Neue', cursive;
    color: var(--bmm-white);
    margin-bottom: 1rem;
}

.ranking-cta p {
    font-size: 1.1rem;
    color: var(--bmm-text-secondary);
    margin-bottom: 2rem;
}

/* SmartLink Section */
.smartlink-section {
    padding: 5rem 0;
    background: var(--bmm-dark);
}

.smartlink-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .smartlink-demo {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.cyfra-preview {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 199, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    max-width: 400px;
    margin: 0 auto;
}

.cyfra-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cyfra-artwork {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.cyfra-info h3 {
    font-size: 1.2rem;
    color: var(--bmm-white);
    margin-bottom: 0.25rem;
}

.cyfra-info p {
    color: var(--bmm-text-secondary);
    margin: 0;
}

.platform-links {
    display: grid;
    gap: 0.75rem;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--bmm-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.platform-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--bmm-gold);
    transform: translateX(5px);
}

.platform-btn.spotify:hover { border-color: #1db954; }
.platform-btn.youtube:hover { border-color: #ff0000; }
.platform-btn.apple:hover { border-color: #fc3c44; }

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-list i {
    color: var(--bmm-gold);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature-list h4 {
    font-size: 1.2rem;
    color: var(--bmm-white);
    margin-bottom: 0.5rem;
}

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

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bmm-gold) 0%, #FFA500 100%);
    color: var(--bmm-dark);
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.cta-main h2 {
    font-size: 3rem;
    font-family: 'Bebas Neue', cursive;
    color: var(--bmm-dark);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.cta-main p {
    font-size: 1.2rem;
    color: rgba(10, 10, 10, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.cta-section .btn-primary {
    background: var(--bmm-dark);
    color: var(--bmm-white);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--bmm-dark);
    border: 2px solid var(--bmm-dark);
}

.cta-section .btn-secondary:hover {
    background: var(--bmm-dark);
    color: var(--bmm-white);
}

.floating-icons {
    position: relative;
    width: 300px;
    height: 300px;
}

.icon-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(10, 10, 10, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(10, 10, 10, 0.6);
    animation: iconFloat 4s ease-in-out infinite;
}

.icon-1 { top: 0; right: 0; animation-delay: 0s; }
.icon-2 { bottom: 0; right: 0; animation-delay: 1s; }
.icon-3 { bottom: 0; left: 0; animation-delay: 2s; }
.icon-4 { top: 0; left: 0; animation-delay: 3s; }

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

/* Notifications */
.bmm-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(255, 199, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 350px;
    z-index: 10000;
    transform: translateX(400px);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
}

.bmm-notification.show {
    transform: translateX(0);
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--bmm-gold), #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bmm-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-content h4 {
    color: var(--bmm-white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.notification-content p {
    color: var(--bmm-text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Music Player Integration */
#musicPlayer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(26, 26, 26, 0.98);
    border-top: 1px solid rgba(255, 199, 0, 0.2);
    z-index: 1000;
    display: none;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

#musicPlayer.show {
    display: block;
    transform: translateY(0);
}

/* Animation Classes */
.animate {
    animation: slideUpFade 0.8s ease-out;
}

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

/* Mobile Menu Active State */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 199, 0, 0.2),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hover Effects Enhancement */
.quick-play-item:hover .track-title {
    color: var(--bmm-gold);
}

.artist-showcase-card:hover .artist-name {
    color: var(--bmm-gold);
}

.rank-card:hover h3 {
    color: var(--bmm-gold);
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Custom Scrollbar for Music Player */
#musicPlayer::-webkit-scrollbar {
    height: 8px;
}

#musicPlayer::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

#musicPlayer::-webkit-scrollbar-thumb {
    background: var(--bmm-gold);
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .floating-music-cards {
        display: none;
    }
    
    .quick-play-grid {
        grid-template-columns: 1fr;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .ranking-flow {
        flex-direction: column;
    }
    
    .rank-arrow {
        display: none;
    }
    
    .bmm-notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .bmm-notification.show {
        transform: translateY(0);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .track-actions {
        display: none;
    }
    
    .artist-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    /* Performance optimizations for worst phones */
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .btn {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .rank-card {
        padding: 1rem;
    }
    
    .rank-features {
        font-size: 0.85rem;
    }
    
    /* Disable heavy animations */
    .floating-card,
    .rank-card,
    .hero-badge,
    .background-animation {
        animation: none !important;
        transition: opacity 0.2s ease !important;
    }
    
    /* Hide complex elements */
    .floating-music-cards,
    .hero-video-bg {
        display: none !important;
    }
}

/* ===========================
   RANKING TREE STYLES
   =========================== */

/* CAREER TREE - ADVANCED VERSION */
.career-tree {
    max-width: 1400px;
    height: 800px;
    margin: 6rem auto;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(255, 199, 0, 0.08) 0%, rgba(0, 0, 0, 0.2) 70%);
    border-radius: 40px;
    border: 2px solid rgba(255, 199, 0, 0.2);
    overflow: hidden;
    backdrop-filter: blur(20px);
    padding: 2rem;
}

/* Tree Background */
.tree-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tree-paths {
    width: 100%;
    height: 100%;
}

.career-path {
    stroke-dasharray: 10, 5;
    animation: pathFlow 3s linear infinite;
}

@keyframes pathFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 15; }
}

/* Career Nodes */
.career-nodes {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.career-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.95), rgba(26, 26, 30, 0.9));
    border: 3px solid rgba(255, 199, 0, 0.4);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.career-node:hover {
    transform: translateX(-50%) translateY(-10px) scale(1.05);
    border-color: var(--bmm-gold);
    box-shadow: 0 20px 60px rgba(255, 199, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 199, 0, 0.1), rgba(26, 26, 30, 0.9));
}

.node-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--bmm-gold), transparent);
    border-radius: 25px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.career-node:hover .node-glow {
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.node-content {
    position: relative;
    z-index: 2;
}

.node-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--bmm-gold), #ffb000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000;
    box-shadow: 0 10px 30px rgba(255, 199, 0, 0.4);
    transition: all 0.3s ease;
}

.career-node:hover .node-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 199, 0, 0.6);
}

.node-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
}

.node-percentage {
    display: inline-block;
    background: var(--bmm-gold);
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.node-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0 0 15px 0;
}

.node-requirements {
    text-align: left;
    font-size: 0.8rem;
}

.requirement {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
    padding-left: 10px;
}

.node-arrow {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--bmm-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-5px); }
    60% { transform: translateX(-50%) translateY(-3px); }
}

/* Special Styles for Different Ranks */
.career-node--amateur {
    border-color: rgba(34, 197, 94, 0.6);
}

.career-node--amateur .node-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.career-node--underground {
    border-color: rgba(245, 158, 11, 0.6);
}

.career-node--underground .node-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.career-node--elite {
    border-color: rgba(139, 92, 246, 0.6);
}

.career-node--elite .node-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.career-node--main {
    border-color: rgba(59, 130, 246, 0.6);
}

.career-node--main .node-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.career-node--crown {
    border-color: rgba(255, 199, 0, 0.8);
    position: relative;
}

.career-node--crown .node-icon {
    background: linear-gradient(135deg, var(--bmm-gold), #ffb000);
    animation: crownSpin 4s linear infinite;
}

@keyframes crownSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.crown-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255, 199, 0, 0.4) 0%, transparent 70%);
    border-radius: 30px;
    animation: crownGlow 2s ease-in-out infinite alternate;
    z-index: -1;
}

.crown-rays {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: 
        conic-gradient(from 0deg, transparent, rgba(255, 199, 0, 0.3), transparent, rgba(255, 199, 0, 0.3), transparent);
    border-radius: 50%;
    animation: rotate 8s linear infinite;
    z-index: -2;
}

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

/* Career Milestones */
.career-milestones {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.milestone {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 10, 15, 0.9);
    border: 2px solid rgba(255, 199, 0, 0.3);
    border-radius: 16px;
    padding: 12px 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.milestone:hover {
    border-color: var(--bmm-gold);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 199, 0, 0.2);
}

.milestone-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--bmm-gold), #ffb000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.milestone-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.milestone-text strong {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.milestone-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.milestone--left {
    transform-origin: left center;
}

.milestone--right {
    transform-origin: right center;
}

/* Responsive */
@media (max-width: 1024px) {
    .career-tree {
        max-width: 100%;
        margin: 2rem 1rem;
        height: 500px;
    }
    
    .career-node {
        width: 240px;
    }
    
    .milestone {
        display: none;
    }
}

@media (max-width: 768px) {
    .career-tree {
        height: 400px;
    }
    
    .career-node {
        width: 200px;
        padding: 15px;
    }
    
    .node-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .node-title {
        font-size: 1.1rem;
    }
}

.tree-level {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    position: relative;
}

.tree-level--root {
    margin-bottom: 5rem;
}

.tree-level--crown {
    margin-bottom: 3rem;
}

.tree-node {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(40, 40, 40, 0.9));
    border: 3px solid rgba(255, 199, 0, 0.4);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 220px;
    max-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.tree-node:hover {
    transform: translateY(-12px) scale(1.05);
    border-color: var(--bmm-gold);
    box-shadow: 0 25px 80px rgba(255, 199, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 199, 0, 0.1), rgba(40, 40, 40, 0.9));
}

.tree-node__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--bmm-gold), #ffb000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bmm-dark);
    box-shadow: 0 12px 40px rgba(255, 199, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.tree-node__icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--bmm-gold), #ffb000);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.tree-node:hover .tree-node__icon::before {
    opacity: 0.3;
    animation: pulse 1.5s infinite;
}

.tree-node__content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
}

.tree-node__percentage {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bmm-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.tree-node__content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Tree Connections */
.tree-connection {
    position: absolute;
    background: linear-gradient(135deg, var(--bmm-gold), #ffb000);
    opacity: 0.6;
}

.tree-connection--down {
    width: 3px;
    height: 40px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -42px;
}

/* Special Node Styles */
.tree-node--amateur .tree-node__icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.tree-node--amateur .tree-node__percentage {
    color: #22c55e;
}

.tree-node--underground .tree-node__icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.tree-node--underground .tree-node__percentage {
    color: #f59e0b;
}

.tree-node--elite .tree-node__icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.tree-node--elite .tree-node__percentage {
    color: #8b5cf6;
}

.tree-node--main {
    border-color: rgba(255, 199, 0, 0.7);
    position: relative;
}

.tree-node--main::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--bmm-gold), #ffb000);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
}

.tree-node__crown-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255, 199, 0, 0.3) 0%, transparent 70%);
    border-radius: 30px;
    z-index: -1;
    animation: crownGlow 2s ease-in-out infinite alternate;
}

@keyframes crownGlow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
    100% { transform: scale(1); opacity: 0.3; }
}

/* Tree Features */
.ranking-tree-features {
    margin-top: 4rem;
}

.tree-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tree-feature {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 199, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tree-feature:hover {
    transform: translateY(-4px);
    border-color: var(--bmm-gold);
    box-shadow: 0 12px 40px rgba(255, 199, 0, 0.15);
}

.tree-feature i {
    font-size: 2.5rem;
    color: var(--bmm-gold);
    margin-bottom: 1rem;
}

.tree-feature h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.tree-feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mobile Tree Styles */
@media (max-width: 768px) {
    .ranking-tree {
        margin: 2rem auto;
    }
    
    .tree-node {
        min-width: 180px;
        max-width: 200px;
        padding: 1.5rem;
    }
    
    .tree-node__icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .tree-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}