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

:root {
    --primary-color: #FF4532;
    --accent-gradient: linear-gradient(135deg, #FF4532 0%, #FF867E 100%);
    --bg-dark: #000000;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #FFFFFF;
    --font-inter: 'Inter', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
}

html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.library-item.reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.library-item.reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.library-item.reveal:nth-child(3) {
    transition-delay: 0.3s;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-inter);
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    scroll-snap-type: y mandatory;
    -webkit-font-smoothing: antialiased;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2.5rem;
    z-index: 1000;
}

.logo {
    margin-right: auto;
}

.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: #000;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lenses-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 134, 126, 0.15),
            transparent 80%);
    mix-blend-mode: screen;
    transition: background 0.1s ease;
}

section {
    width: 100%;
    min-height: 100vh;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}


.logo-img {
    height: 30px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 134, 126, 0.3));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    background: none;
    padding: 0;
    margin-right: 2rem;
    border: none;
    backdrop-filter: none;
}


.nav-item {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-item:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.glass-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-btn:hover {
    background: white;
    color: black;
    transform: translateY(-3px);
}

.auth-button {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-selector {
    position: relative;
}

.language-selector select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    padding: 0.6rem 2rem 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 10px;
    min-width: 75px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.language-selector select:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.language-selector select:focus {
    outline: none;
    border-color: rgba(255, 69, 50, 0.5);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 69, 50, 0.1);
}

.language-selector select option {
    background: #1a1a1a;
    color: white;
    padding: 0.8rem 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.user-dropdown {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 10px;
    min-width: 180px;
    z-index: 1001;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.user-dropdown.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    background: rgba(255, 69, 50, 0.2);
    border-color: rgba(255, 69, 50, 0.5);
    transform: translateX(5px);
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
}

.hero-content {
    position: absolute;
    left: 29.8vw;
    top: 38vh;
    width: 25vw;
    z-index: 10;
    text-align: left;
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.3vw;
    line-height: 1.1;
    margin-bottom: 3.5vh;
    font-weight: 300;
    letter-spacing: -1px;
}

.weight-600 {
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(135deg, #FF4532 0%, #FF867E 100%);
    color: white;
    font-family: var(--font-poppins);
    padding: 0.35em;
    padding-left: 1.5em;
    font-size: 1.1vw;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em #c93a2a, 0 20px 40px rgba(255, 69, 50, 0.3);
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.cta-button:hover::before {
    opacity: 1;
    animation: liquidMove 3s ease-in-out infinite;
}

@keyframes liquidMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10%, 10%);
    }
    50% {
        transform: translate(-5%, 15%);
    }
    75% {
        transform: translate(15%, -10%);
    }
}

.cta-button .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em rgba(255, 69, 50, 0.4);
    right: 0.3em;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-button:hover .icon {
    width: calc(100% - 0.6em);
    box-shadow: 0 0 20px rgba(255, 69, 50, 0.6);
}

.cta-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: #FF4532;
}

.cta-button:hover .icon svg {
    transform: translateX(0.1em);
}

.cta-button:active .icon {
    transform: scale(0.95);
}

.cta-button:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: inset 0 0 2em -0.6em #c93a2a, 0 25px 50px rgba(255, 69, 50, 0.5);
}

.cta-button:active {
    transform: scale(0.98) translateY(-3px);
}

.hero-description {
    position: absolute;
    left: 78.8vw;
    top: 83vh;
    width: 16vw;
    text-align: left;
    animation: fadeInRight 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description p {
    font-size: 1.1vw;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .hero-content {
        left: 10vw;
        width: 80vw;
        top: 30vh;
    }

    .hero-title {
        font-size: 8vw;
    }

    .hero-description {
        position: relative;
        left: 0;
        top: 0;
        margin: 20vh auto 0;
        text-align: center;
        width: 90vw;
    }

    .cta-button {
        font-size: 4vw;
        padding: 4vw 8vw;
        margin-top: 5vh;
    }

    .nav-links {
        display: none;
    }
}

.discover {
    display: flex;
    flex-direction: column;
    padding: 0;
    background: #000;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
}

.discover-container {
    padding: 8rem 5% 10rem 5%;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}


.discover-main-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.featured-card {
    height: 450px;
    background: linear-gradient(90deg, #FF4532 0%, #FF867E 100%);
    border-radius: 40px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.featured-card::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    height: 100%;
    background: none;
    mix-blend-mode: multiply;
    opacity: 0.9;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.featured-bg-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    mix-blend-mode: multiply;
}

.featured-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
}

.category-tag {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 2rem;
    display: block;
}

.featured-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.featured-info {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.featured-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-avatars {
    display: flex;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #555;
    border: 2px solid #FF4532;
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.chart-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.chart-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.chart-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.chart-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #222;
    object-fit: cover;
    flex-shrink: 0;
}

.chart-info {
    flex: 1;
}

.chart-info h4 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.chart-info span {
    font-size: 0.9rem;
    opacity: 0.6;
    display: block;
    margin-bottom: 4px;
}

.chart-info time {
    font-size: 0.8rem;
    opacity: 0.4;
}

.heart-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.heart-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
}

.artist-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-10px);
}

.artist-img {
    width: 100%;
    aspect-ratio: 1;
    background: #111;
    border-radius: 24px;
    margin-bottom: 1rem;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
}

.artist-name {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
}

.playlists {
    background: #000;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.playlists-horizontal-wrapper {
    width: 100%;
    position: relative;
    padding: 5vh 0;
}

.scrolling-title {
    position: absolute;
    top: 50%;
    left: 0;
    width: 200%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-title h2 {
    font-size: 15vh;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.02);
    text-transform: uppercase;
    animation: marquee 30s linear infinite;
    display: inline-block;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.playlists-ribbon {
    display: flex;
    gap: 4rem;
    padding: 100px 0;
    width: max-content;
    animation: scroll-infinite 40s linear infinite;
    perspective: 1500px;
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 2rem));
    }
}

.playlists-ribbon:hover {
    animation-play-state: running;
}

.playlists-ribbon::-webkit-scrollbar {
    display: none;
}

.playlist-card-3d {
    flex: 0 0 350px;
    height: 480px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.8s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.playlist-card-3d:hover {
    transform: rotateY(-10deg) rotateX(5deg) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.card-inner {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateZ(50px);
}

.card-image-box {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.playlist-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.playlist-card-3d:hover .playlist-cover {
    transform: scale(1.1);
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.playlist-card-3d:hover .play-icon-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 30px rgba(255, 134, 126, 0.5);
}

.card-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-genre {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.card-text p {
    font-size: 1rem;
    opacity: 0.5;
}

.library {
    background: #000;
    width: 100%;
    padding: 10rem 5%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.library-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.library-header {
    margin-bottom: 5rem;
}

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

.library-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.library-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.item-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.item-img {
    width: 60px;
    height: 60px;
    background: #111;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    flex-shrink: 0;
}

.item-info h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.item-info span {
    font-size: 0.9rem;
    opacity: 0.5;
}

.item-meta {
    display: flex;
    align-items: center;
    gap: 40px;
}

.item-genre {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.4;
}

.item-meta time {
    font-size: 0.9rem;
    opacity: 0.6;
}

.add-lib-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 130px;
}

.add-lib-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.add-lib-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.add-lib-btn.active:hover {
    filter: brightness(1.2);
    color: white;
}

@media (max-width: 768px) {
    .item-meta {
        display: none;
    }

    .library-item:hover {
        transform: none;
    }
}

.playlists::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 134, 126, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.site-footer {
    background: #000;
    width: 100%;
    padding: 15vh 5% 5vh 5%;
    position: relative;
    overflow: hidden;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bg-text {
    position: absolute;
    bottom: 2vh;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 45vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.01);
    line-height: 0.8;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    opacity: var(--footer-opacity, 0);
    background: radial-gradient(800px circle at var(--footer-px, 50%) var(--footer-py, 50%),
            rgba(255, 134, 126, 0.5) 0%,
            rgba(255, 134, 126, 0.1) 40%,
            transparent 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.5s ease-out;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15vh;
    gap: 4rem;
}

.footer-cta h2 {
    font-size: 3.5vw;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 300;
}

.newsletter-box {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 100px;
    width: 450px;
    backdrop-filter: blur(20px);
    margin-top: 3rem;
    align-items: center;
}

.newsletter-box input {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1rem;
    flex: 1;
    outline: none;
}

.newsletter-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-box button {
    background: white;
    border: none;
    color: black;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    white-space: nowrap;
    flex-shrink: 0;
}

.newsletter-box button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 69, 50, 0.2);
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem;
}

.footer-column h4 {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.85rem;
    opacity: 0.5;
}

.footer-logo {
    height: 25px;
    opacity: 0.8;
}

.bottom-right {
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.4;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
    padding: 0 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.auth-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.auth-modal-container {
    position: relative;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.auth-modal-overlay.active .auth-modal-container {
    transform: scale(1);
}

.auth-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #f0f0f0;
    border: none;
    font-size: 1.5rem;
    color: #000;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.auth-modal-close:hover {
    transform: rotate(90deg);
    background: var(--primary-color);
    color: white;
}

.login-page {
    background: rgba(230, 243, 255, 0.9);
    border-radius: 33px;
    height: 871.82px;
    width: 1200px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.85);
    transform-origin: center;
}

@media (max-height: 900px) {
    .login-page {
        transform: scale(0.75);
    }
}

@media (max-height: 800px) {
    .login-page {
        transform: scale(0.65);
    }
}

.login-page * {
    box-sizing: border-box;
}

.imagem {
    width: 920.35px;
    height: 920.35px;
    position: absolute;
    left: -261px;
    top: 0px;
    object-fit: cover;
    aspect-ratio: 1;
}

.content-frame {
    background: #fcfeff;
    border-radius: 21.28px 0px 0px 21.28px;
    width: 719.42px;
    height: 871.82px;
    position: absolute;
    right: 0px;
    top: 0px;
}

.content2 {
    width: 510.83px;
    height: 637.69px;
    position: static;
}

.button-git-hub {
    position: absolute;
    left: 893.96px;
    top: 696.44px;
}

.git-hub {
    width: 42.57px;
    height: 42.57px;
    position: absolute;
    left: 8.51px;
    top: 2.55px;
    object-fit: cover;
}

.sing-up-with-git-hub {
    color: #7c838a;
    text-align: left;
    font-family: "Poppins", sans-serif;
    font-size: 11.9px;
    font-weight: 500;
    position: absolute;
    left: 56.19px;
    top: 14.47px;
    width: 117.49px;
}

.button-frame {
    border-radius: 12.77px;
    border: 0.85px solid #7c838a;
    width: 187.31px;
    height: 46.83px;
}

.button-google {
    position: absolute;
    left: 637.69px;
    top: 696.44px;
}

.google {
    width: 42.57px;
    height: 42.57px;
    position: absolute;
    left: 5.96px;
    top: 2.55px;
    object-fit: cover;
}

.sing-up-with-google {
    color: #7c838a;
    text-align: left;
    font-family: "Poppins", sans-serif;
    font-size: 11.9px;
    font-weight: 500;
    position: absolute;
    left: 56.19px;
    top: 14.47px;
    width: 120.05px;
}

.button-frame2 {
    border-radius: 12.77px;
    border: 0.85px solid #7c838a;
    width: 187.31px;
    height: 46.83px;
}

.or {
    color: #b0bac3;
    text-align: left;
    font-family: "Poppins", sans-serif;
    font-size: 22.1px;
    font-weight: 500;
    position: absolute;
    left: 825px;
    top: 650.46px;
}

.already-have-a-account-log-in {
    font-family: "Poppins", sans-serif;
    font-size: 15.3px;
    font-weight: 400;
    position: absolute;
    left: 714.32px;
    top: 600px;
    text-align: center;
    width: 289.47px;
}

.already-have-a-account-log-in-span {
    color: #7c838a;
}

.already-have-a-account-log-in-span3 {
    color: #e5524a;
    cursor: pointer;
}

.button-frame3 {
    background: #e5524a;
    border-radius: 8.51px;
    width: 289.47px;
    height: 51.08px;
    position: absolute;
    left: 714.32px;
    top: 528.71px;
    cursor: pointer;
}

.create-account {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 22.1px;
    font-weight: 500;
    position: absolute;
    left: 773.91px;
    top: 537.23px;
    pointer-events: none;
}

.password {
    color: #7c838a;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 500;
    position: absolute;
    left: 613px;
    top: 413.77px;
}

.enter-your-password-here {
    color: rgba(0, 0, 0, 0.5);
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    position: absolute;
    left: 645.35px;
    top: 453.79px;
    pointer-events: none;
}

.input {
    background: rgba(176, 186, 195, 0.4);
    border-radius: 17.03px;
    width: 510.83px;
    height: 55.34px;
    position: absolute;
    left: 611.3px;
    top: 439.32px;
}

.email {
    color: #7c838a;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 500;
    position: absolute;
    left: 613px;
    top: 298.84px;
}

.enter-your-email-here {
    color: rgba(0, 0, 0, 0.5);
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    position: absolute;
    left: 645.35px;
    top: 338.85px;
    pointer-events: none;
}

.input2 {
    background: rgba(176, 186, 195, 0.4);
    border-radius: 17.03px;
    width: 510.83px;
    height: 55.34px;
    position: absolute;
    left: 611.3px;
    top: 324.38px;
}

.full-name {
    color: #7c838a;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 500;
    position: absolute;
    left: 613px;
    top: 183.05px;
}

.enter-your-fulll-name-here {
    color: rgba(0, 0, 0, 0.5);
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    position: absolute;
    left: 645.35px;
    top: 223.06px;
    pointer-events: none;
}

.input,
.input2,
.input3 {
    background: rgba(176, 186, 195, 0.4);
    border-radius: 17.03px;
    width: 510.83px;
    height: 55.34px;
    position: absolute;
    left: 611.3px;
    border: none;
    outline: none;
    padding: 0 25px;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    color: #000;
}

.input::placeholder,
.input2::placeholder,
.input3::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.input3 {
    top: 208.59px;
}

.input-login,
.input2-login {
    background: rgba(176, 186, 195, 0.4);
    border-radius: 17.03px;
    width: 510.83px;
    height: 55.34px;
    position: absolute;
    left: 611.3px;
    border: none;
    outline: none;
    padding: 0 25px;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    color: #000;
}

.input-login::placeholder,
.input2-login::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.input2-login {
    top: 324.38px;
}

.input-login {
    top: 439.32px;
}

.title {
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-size: 22.1px;
    font-weight: 600;
    position: absolute;
    left: 722.83px;
    top: 105.57px;
}

#loginModal .title {
    top: 240px;
}

#loginModal .button-frame3 {
    top: 528.71px;
}

#loginModal .create-account {
    left: 804px;
    top: 537.23px;
    text-align: center;
}

#loginModal .already-have-a-account-log-in {
    top: 600px;
}

.error-message {
    position: absolute;
    left: 611.3px;
    width: 510.83px;
    color: #e5524a;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    top: 510px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

.password-requirements {
    position: absolute;
    left: 611.3px;
    top: 500px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    color: #7c838a;
    width: 510.83px;
}

.salas-compartilhadas-playlists-colaborativas-e-udio-em-alta-fidelidade {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    position: absolute;
    left: 327px;
    top: 696px;
    width: 170px;
    line-height: 1.4;
}

.salas-compartilhadas-playlists-colaborativas-e-udio-em-alta-fidelidade-span2 {
    font-weight: 600;
}

@media (max-width: 1200px) {
    .login-page {
        transform: scale(0.8);
    }
}

@media (max-width: 768px) {
    .login-page {
        transform: scale(0.5);
    }
}

@media (max-width: 1024px) {
    .background-container {
        position: fixed;
    }

    .bg-image {
        object-position: 75% center;
        transform: scale(1.4);
    }

    .spotlight-overlay {
        display: none;
    }

    .navbar {
        padding: 1.5rem 5%;
    }

    .hero-content {
        left: 5%;
        top: 30vh;
        width: 90vw;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 15vw;
        margin-bottom: 2rem;
    }

    .cta-button {
        margin: 0 auto;
    }

    .discover-main-grid {
        grid-template-columns: 1fr;
    }

    .featured-card {
        padding: 3rem 5%;
    }

    .featured-title {
        font-size: 12vw;
    }

    .footer-top {
        flex-direction: column;
        gap: 5rem;
    }

    .footer-cta h2 {
        font-size: 8vw;
    }

    .newsletter-box {
        width: 100%;
    }

    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .bg-image {
        object-position: 10% center;
        transform: scale(1.3);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 1000;
        padding: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-item {
        font-size: 2rem;
    }

    .navbar {
        justify-content: space-between;
    }

    .logo {
        margin-right: 0;
    }

    .auth-button {
        gap: 15px;
    }

    .glass-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .library-item {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .item-meta {
        display: none;
    }

    .add-lib-btn {
        width: 100%;
        margin-top: 1rem;
    }

    .scrolling-title h2 {
        font-size: 15vw;
    }

    .playlist-card-3d {
        width: 300px;
    }

    .footer-nav-grid {
        grid-template-columns: 1fr;
    }

    .footer-bg-text {
        font-size: 60vw;
        bottom: 5vh;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .bottom-left {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 18vw;
    }

    .creative-title {
        font-size: 3rem;
    }

    .newsletter-box {
        flex-direction: column;
        border-radius: 20px;
        padding: 1rem;
    }

    .newsletter-box input {
        text-align: center;
        padding: 1rem 0;
    }

    .newsletter-box button {
        width: 100%;
    }
}