:root {
    
    
            --color-bg: #000;
            --color-accent-blue: #00ddeb;
            --color-accent: #af40ff;
            --color-accent-alt: #5b42f3;
            --color-text: #FFFFFF;

    /* Font Sizes */
    --fs-small: 0.875rem;   /* 14px */
    --fs-base: 1rem;         /* 16px */
    --fs-medium: 1.125rem;   /* 18px */
    --fs-large: 1.25rem;     /* 20px */
    --fs-xl: 1.5rem;         /* 24px */
    --fs-xxl: 2rem;          /* 32px */
    --fs-xxxl: 2.5rem;       /* 40px */
    --fs-hero: 4rem;         /* 64px */
}

@media (max-width: 768px) {
    :root {
        --fs-medium: 1rem;
        --fs-large: 1.125rem;
        --fs-xl: 1.25rem;
        --fs-xxl: 1.5rem;
        --fs-xxxl: 2rem;
        --fs-hero: 2.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --fs-medium: 0.9375rem;
        --fs-large: 1rem;
        --fs-xl: 1.125rem;
        --fs-xxl: 1.25rem;
        --fs-xxxl: 1.5rem;
        --fs-hero: 2rem;
    }
}


body{
    color: var(--color-text);
    background-color: var(--color-bg);
    font-size: var(--fs-base);
    font-family: 'Lora', serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
}

header {
    height: 100px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}



/* Header */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.card-nav-container {
    position: absolute;
    top: 2em;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    z-index: 99;
    box-sizing: border-box;
}

.card-nav {
    display: block;
    height: 60px;
    padding: 0;
    background-color: white;
    border: 0.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    will-change: height;
}

.card-nav-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.45rem 0.55rem 1.1rem;
    z-index: 2;
}

.hamburger-menu {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 6px;
}

.hamburger-menu:hover .hamburger-line {
    opacity: 0.75;
}

.hamburger-line {
    width: 30px;
    height: 2px;
    background-color: currentColor;
    transition:
        transform 0.25s ease,
        opacity 0.2s ease,
        margin 0.3s ease;
    transform-origin: 50% 50%;
}

.hamburger-menu.open .hamburger-line:first-child {
    transform: translateY(4px) rotate(45deg);
}

.hamburger-menu.open .hamburger-line:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.logo-container {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.logo {
    height: 52px;
}

.card-nav-cta-button {
    background-color: #111;
    color: white;
    border: none;
    border-radius: calc(0.75rem - 0.35rem);
    padding: 0 1rem;
    height: 100%;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.card-nav-cta-button:hover {
    background-color: #333;
}

.card-nav-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    bottom: 0;
    padding: 0.5rem;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
}

.card-nav.open .card-nav-content {
    visibility: visible;
    pointer-events: auto;
}

.nav-card {
    height: 100%;
    flex: 1 1 0;
    min-width: 0;
    border-radius: calc(0.75rem - 0.2rem);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    gap: 8px;
    user-select: none;
}

.nav-card-label {
    font-weight: 400;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.nav-card-links {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-card-link {
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
}

.nav-card-link:hover {
    opacity: 0.75;
}

/* Arrow icon */
.nav-card-link-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.nav-card-link-icon::before {
    content: '↗';
    font-size: 14px;
}

@media (max-width: 768px) {
    .card-nav-container {
        width: 90%;
        top: 1.2em;
    }

    .card-nav-top {
        padding: 0.5rem 1rem;
        justify-content: space-between;
    }

    .hamburger-menu {
        order: 2;
    }

    .logo-container {
        position: static;
        transform: none;
        order: 1;
    }

    .card-nav-cta-button {
        display: none;
    }

    .card-nav-content {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 0.5rem;
        bottom: 0;
        justify-content: flex-start;
    }

    .nav-card {
        height: auto;
        min-height: 60px;
        flex: 1 1 auto;
        max-height: none;
    }

    .nav-card-label {
        font-size: 18px;
    }

    .nav-card-link {
        font-size: 15px;
    }
}

/* Particles */
#particles-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particles-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.particles-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    #particles-wrapper {
        display: none;
    }

    
}

/* Hero Section */

/* hero */
.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 100px);
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    padding-top: 120px;  /* Add space between nav and hero content */
    background-color: var(--color-bg);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 2rem;
}

.hero h1 {
    font-size: var(--fs-hero);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h4{
    font-size: var(--fs-medium);
    margin: 0px 0px 6px 6px;
    background: linear-gradient(180deg, var(--color-accent), var(--color-accent-alt));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

}

.hero h4 span{
    color: var(--color-text);
}

.hero h1 span {
   /*color: var(--color-accent);
    text-shadow: 0 0 10px rgba(30, 194, 161, 0.3);*/

    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-alt));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: var(--fs-large);
    margin-bottom: 40px;
    color: var(--color-text);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.primary-btn {
    align-items: center;
    background-image: linear-gradient(144deg, var(--color-accent), var(--color-accent-alt) 50%, var(--color-accent-blue));
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    box-sizing: border-box;
    color: var(--color-text);
    display: inline-flex;
    font-size: 18px;
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 140px;
    padding: 3px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
}

.primary-btn span {
    background-color: var(--color-bg);
    padding: 16px 24px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    transition: 300ms;
    display: inline-block;
}

.primary-btn:hover span {
    background: none;
}

.primary-btn:active {
    transform: scale(0.9);
}

.secondary-btn {
    align-items: center;
    background-image: linear-gradient(144deg, var(--color-accent), var(--color-accent-alt) 50%, var(--color-accent-blue));
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    box-sizing: border-box;
    color: var(--color-text);
    display: inline-flex;
    font-size: 18px;
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 140px;
    padding: 3px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
}

.secondary-btn span {
    padding: 16px 24px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    transition: 300ms;
    display: inline-block;
}

.secondary-btn:active {
    transform: scale(0.9);
}

/* CTA Button Ripple Effect */
.primary-btn, .secondary-btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.hero-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .hero-text {
        max-width: 50%;
    }
    .hero-svg {
        max-width: 40%;
    }

    
}

@media (max-width: 480px) {
    .hero-btns {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 10px;
    }

    .hero-btns a {
        flex: 0 1 auto;
        width: auto;
        min-width: 0;
        white-space: nowrap;
    }
        .hero h4{
        font-size: var(--fs-small);
    }
}



/* Particles Container */

#particles-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particles-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.particles-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Albums Section */
.albums-section {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
    z-index: 1;
}

.albums-title{
    font-size: var(--fs-xxl);
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--color-accent-alt), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.albums-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3.2rem;
    justify-content: left;
}

/* Card Styles */
.container {
    width: 320px;
    height: 480px;
    position: relative;
    user-select: none;
    margin: 20px;
    perspective: 2000px;
    transform-style: preserve-3d;
    transition: .3s ease;
}

.container .canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-template-rows: repeat(5,1fr);
    gap: 20px;
    z-index: 1;
    transform: translateZ(0);
    pointer-events: none;
}

.container .canvas div {
    width: 100%;
    height: 100%;
    transform: translateZ(0);
    position: relative;
}

.container #card {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 3, 3, 0.9);
    border-radius: 10px;
    border: 2px solid rgba(151, 65, 252, 0.4);
    overflow: hidden;
    transition: .3s ease;
    transform-style: preserve-3d;
}

.card-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 30px;
    color: white;
    padding: 20px;
}

    .albumcover {
    opacity: 0.7;
    margin-top: 120px;
    width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

#prompt {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 16px;
    opacity: 0;
    transform: translateY(-50px);
    transition: .3s ease;
    position: absolute;
    top: 16px;
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    transition: .3s ease;
}

.subtitle {
    font-size: 16px;
    margin: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: .3s ease;
}

.highlight {
    color: rgb(151, 65, 252, 0.7);
    margin-left: 8px;
}

/* Card Effects */
.glowing-elements div {
    position: absolute;
    border-radius: 100%;
}

.glow-1 {
    width: 100px;
    height: 100px;
    top: -30px;
    right: -30px;
    background: linear-gradient(45deg, rgb(151, 65, 252), rgba(151, 65, 252, 0.4));
    filter: blur(25px);
    opacity: .3;
    transition: .3s ease;
}

.glow-2 {
    width: 150px;
    height: 150px;
    bottom: -40px;
    left: -40px;
    background: linear-gradient(45deg, rgb(151, 65, 252), rgba(151, 65, 252, 0.4));
    filter: blur(25px);
    opacity: .2;
    transition: .3s ease;
}

.glow-3 {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(45deg, rgb(151, 65, 252), rgba(151, 65, 252, 0.4));
    filter: blur(5px);
    opacity: 0;
    transition: .3s ease;
}

.card-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: rgb(151, 65, 252);
    transition: .3s ease;
    opacity: .2;
}

.card-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
}

.card-particles span:nth-child(2) {
    left: 80%;
    top: 60%;
}

.card-particles span:nth-child(3) {
    left: 30%;
    top: 80%;
}

.card-particles span:nth-child(4) {
    left: 20%;
    top: 40%;
}

.card-particles span:nth-child(5) {
    left: 70%;
    top: 30%;
}

.card-particles span:nth-child(6) {
    left: 50%;
    top: 70%;
}

.cyber-lines span {
    position: absolute;
    background: linear-gradient(transparent, rgb(151, 65, 252), transparent);
    width: 1px;
    height: 100%;
    top: -100%;
    opacity: .2;
    transition: .3s ease;
}

.cyber-lines span:nth-child(1) {
    left: 30%;
    transition-delay: .3s;
}

.cyber-lines span:nth-child(2) {
    left: 60%;
    transition-delay: .4s;
}

.cyber-lines span:nth-child(3) {
    left: 85%;
    transition-delay: .5s;
}

.cyber-lines span:nth-child(4) {
    left: 95%;
    transition-delay: .6s;
}

.corner-elements span {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgb(151, 65, 252);
    opacity: 0;
    transition: .3s ease;
}

.corner-elements span:nth-child(1) {
    top: 0;
    left: 0;
    border-right: 0;
    border-bottom: 0;
    transform: translate(-10px, -10px);
}

.corner-elements span:nth-child(2) {
    top: 0;
    right: 0;
    border-left: 0;
    border-bottom: 0;
    transform: translate(10px, -10px);
}

.corner-elements span:nth-child(3) {
    bottom: 0;
    left: 0;
    border-right: 0;
    border-top: 0;
    transform: translate(-10px, 10px);
}

.corner-elements span:nth-child(4) {
    bottom: 0;
    right: 0;
    border-left: 0;
    border-top: 0;
    transform: translate(10px, 10px);
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgb(151, 65, 252), transparent);
    top: -20%;
    opacity: 0;
    transition: .3s ease;
}

.card-glare {
    position: absolute;
    width: 100%;
    height: 200%;
    background: linear-gradient(0deg, transparent, rgba(151, 65, 252, 0.2), transparent);
    transform: translateY(-50%) rotate(35deg) translateX(-100%);
    opacity: 0;
    transition: .3s ease;
}

/* Hover Effects */
.container:hover {
    transform: scale(1.04);
}

.container:hover #card {
    border-color: rgb(151, 65, 252);
    box-shadow: 0 0 30px rgba(151, 65, 252, 0.4);
}

.container:hover #card .card-content #prompt {
    transform: translateY(0);
    opacity: 1;
}

.container:hover #card .card-content .title {
    transform: scale(1.1);
}

.container:hover #card .card-content .subtitle {
    transform: translateY(0);
    opacity: 1;
}

.container:hover #card .glowing-elements .glow-1 {
    transform: translate(20px, -20px) scale(1.2);
    opacity: .4;
}

.container:hover #card .glowing-elements .glow-2 {
    transform: translate(-20px, 20px) scale(1.2);
    opacity: .3;
}

.container:hover #card .glowing-elements .glow-3 {
    opacity: .1;
}

.container:hover #card .card-particles span {
    transform: translateY(-20px);
    opacity: .4;
}

.container:hover #card .cyber-lines span {
    top: 100%;
}

.container:hover #card .corner-elements span {
    opacity: 1;
    transform: translate(0, 0);
}

.container:hover #card .scan-line {
    top: 120%;
    opacity: 1;
}

.container:hover #card .card-glare {
    transform: translateY(-50%) rotate(35deg) translateX(100%);
    opacity: 1;
}

/* Section Dvider */

.gradient-line-divider {
    height: 2px;
    position: relative;
    background: transparent;
    margin: 80px auto;
    width: 60%; 
    overflow: visible; 
}

.gradient-line-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,           
        rgba(151, 65, 252, 0.2) 10%,  
        rgba(151, 65, 252, 0.5) 30%,  
        rgba(151, 65, 252, 0.6) 50%,  
        rgba(151, 65, 252, 0.5) 70%,  
        rgba(151, 65, 252, 0.2) 90%,  
        transparent 100%          
    );
}

/* Optional: Mit sanfter Animation */
.gradient-line-divider.animated::before {
    animation: pulse-line 3s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% {
        opacity: 0.7;
        transform: scaleX(0.95);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Featured Artists Section */
.featured-artists {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: var(--fs-xxl);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--color-accent-alt), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.artists-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-items: center;
}

.artist-card {
    background: rgba(2, 3, 3, 0.9);
    border: 2px solid rgba(151, 65, 252, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 280px;
    min-width: 200px;
}

.artist-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(151, 65, 252, 0.3);
    transform: translateY(-5px);
}

/* Clickable artist card style */
.artist-card[onclick] {
    position: relative;
    overflow: hidden;
}

.artist-card[onclick]:before {
    content: '🔗';
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(151, 65, 252, 0.8);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.artist-card[onclick]:hover:before {
    opacity: 1;
}

.artist-card[onclick]:hover {
    border-color: var(--color-accent);
    box-shadow: 0 15px 40px rgba(151, 65, 252, 0.4);
    transform: translateY(-8px);
}

.artist-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-accent);
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-btn {
    color: var(--color-accent);
    font-size: 2rem;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.artist-card:hover .artist-image img {
    transform: scale(1.1);
}

.artist-card h3 {
    font-size: var(--fs-large);
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.artist-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-small);
}

/* Genre Categories Section */
.genres {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
    z-index: 1;
}

.genres-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.genre-card {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.genre-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.genre-card h3 {
    font-size: var(--fs-xl);
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-weight: bold;
}

.genre-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-medium);
}

/* Recently Added Albums Section */
.recent-albums {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
    z-index: 1;
}

.recent-albums-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) transparent;
}

.recent-albums-container::-webkit-scrollbar {
    height: 8px;
}

.recent-albums-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.recent-albums-container::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
}

.recent-album-card {
    flex: 0 0 160px;
    background: rgba(2, 3, 3, 0.9);
    border: 2px solid rgba(151, 65, 252, 0.3);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recent-album-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 25px rgba(151, 65, 252, 0.3);
    transform: translateY(-5px);
}

.recent-album-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.recent-album-info {
    padding: 0.75rem;
}

.recent-album-info h4 {
    font-size: var(--fs-small);
    margin-bottom: 0.25rem;
    color: var(--color-text);
    line-height: 1.2;
}

.recent-album-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.release-date {
    color: var(--color-accent);
    font-size: var(--fs-small);
    font-weight: bold;
}

/* Top Charts Section */
.top-charts {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
    z-index: 1;
}

.charts-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chart-item {
    display: flex;
    align-items: center;
    background: rgba(2, 3, 3, 0.9);
    border: 2px solid rgba(151, 65, 252, 0.3);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.chart-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 25px rgba(151, 65, 252, 0.3);
    transform: translateX(10px);
}

.chart-rank {
    font-size: var(--fs-xl);
    font-weight: bold;
    color: var(--color-accent);
    min-width: 60px;
    text-align: center;
}

.chart-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    margin: 0 1rem;
}

.chart-info {
    flex: 1;
}

.chart-info h4 {
    font-size: var(--fs-medium);
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.chart-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-small);
    margin-bottom: 0.25rem;
}

.chart-platform {
    color: var(--color-accent-blue);
    font-size: var(--fs-small);
    font-weight: bold;
    background: rgba(0, 221, 235, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    display: inline-block;
}

.chart-streams {
    color: var(--color-accent);
    font-size: var(--fs-small);
    font-weight: bold;
    text-align: right;
    min-width: 120px;
}

/* Music News Section */
.music-news {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
    z-index: 1;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.news-card {
    background: rgba(2, 3, 3, 0.9);
    border: 2px solid rgba(151, 65, 252, 0.3);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 15px 30px rgba(151, 65, 252, 0.3);
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.news-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-accent);
    color: var(--color-text);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: var(--fs-small);
    font-weight: bold;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: var(--fs-large);
    margin-bottom: 1rem;
    color: var(--color-text);
    line-height: 1.3;
}

.news-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--fs-small);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--fs-small);
}

.read-more {
    color: var(--color-accent);
    text-decoration: none;
    font-size: var(--fs-small);
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--color-accent-alt);
}

/* Music Player Preview Section */
.music-player-preview {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
    z-index: 1;
}

.player-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(2, 3, 3, 0.9);
    border: 2px solid rgba(151, 65, 252, 0.5);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(151, 65, 252, 0.2);
}

.player-album-art {
    flex: 0 0 120px;
}

.player-album-art img {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.player-info {
    flex: 1;
}

.player-info h3 {
    font-size: var(--fs-xl);
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.player-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: height 0.2s ease;
}

.progress-bar:hover {
    height: 10px;
}

.progress {
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-alt));
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
    position: relative;
}

.progress::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -6px;
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.progress-bar:hover .progress::after {
    opacity: 1;
}

.player-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.control-btn {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: var(--fs-large);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(151, 65, 252, 0.2);
    color: var(--color-accent);
    transform: scale(1.1);
}

.control-btn:active {
    transform: scale(0.95);
}

.control-btn.play-btn {
    background: var(--color-accent);
    color: var(--color-text);
    font-size: var(--fs-xl);
    padding: 0.75rem;
}

.control-btn.playing {
    background: var(--color-accent);
    color: white;
    box-shadow: 0 0 20px rgba(151, 65, 252, 0.5);
}

.control-btn.active {
    color: var(--color-accent) !important;
    background: rgba(151, 65, 252, 0.2);
}

.control-btn.liked {
    color: var(--color-accent) !important;
    animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.volume-control span {
    font-size: var(--fs-large);
    cursor: pointer;
    transition: color 0.2s ease;
}

.volume-control span:hover {
    color: var(--color-accent);
}

.volume-bar {
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: height 0.2s ease;
}

.volume-bar:hover {
    height: 8px;
}

.volume-level {
    background: var(--color-accent);
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
    position: relative;
}

.volume-level::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -4px;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.volume-bar:hover .volume-level::after {
    opacity: 1;
}

/* Statistics Counter Section */
.stats-section {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
    z-index: 1;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(2, 3, 3, 0.9);
    border: 2px solid rgba(151, 65, 252, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 15px 30px rgba(151, 65, 252, 0.3);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-alt));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: var(--fs-large);
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Section */
.footer {
    background: rgba(2, 3, 3, 0.95);
    border-top: 2px solid rgba(151, 65, 252, 0.3);
    padding: 3rem 2rem 1rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-size: var(--fs-large);
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo h3 {
    font-size: var(--fs-xl);
    color: var(--color-text);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-alt));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(151, 65, 252, 0.2);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--color-text);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-accent);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(151, 65, 252, 0.4);
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(151, 65, 252, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .artists-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .genres-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .news-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .player-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .player-controls {
        justify-content: center;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .chart-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .chart-item img {
        margin: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .artists-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .recent-album-card {
        flex: 0 0 150px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .player-album-art {
        flex: none;
    }
    
    .player-album-art img {
        width: 80px;
        height: 80px;
    }
}