@font-face {
    font-family: Manrope;
    src: url('assets/fonts/manrope/manrope-medium.woff2') format('woff2');
    font-weight: 100 400;
    font-display: optional;
}

@font-face {
    font-family: Manrope;
    src: url('assets/fonts/manrope/manrope-bold.woff2') format('woff2');
    font-weight: 700 800;
    font-display: optional;
}

:root {
    --bg-color: #0b0b0b;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --accent-color: #9d59ff;
    --text-primary: #ffffff;
    --text-secondary: #9a9a9a;
    --font-family: 'Manrope', sans-serif;
    --hero-blur: 15px;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-family);
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/hero.png') no-repeat center center/cover;
    filter: brightness(0.4) saturate(0.8);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg-color) 100%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    animation: fadeInDown 1.5s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artist-photo-container {
    width: 280px;
    height: 280px;
    margin-bottom: 2rem;
    position: relative;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(45deg, #efe4d0, transparent, #cca464);
    box-shadow: 0 0 30px rgb(221 196 155);
}

.artist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--bg-color);
}

.artist-name {
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #ba8532);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.artist-alias {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.artist-title {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #dbc197;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.arrow {
    width: 1px;
    height: 40px;
    background: var(--text-secondary);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.arrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    animation: scrollAnim 2s infinite;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

/* Layout Settings */
.text-center {
    text-align: center;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

/* New Song Section */
.new-song-card {
    flex-direction: column;
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.song-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.song-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
}

.song-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.streaming-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 20px;
}

.streaming-icons a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid var(--card-border);
}

.streaming-icons a:hover {
    color: var(--accent-color);
    background: rgba(157, 89, 255, 0.1);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.social-icons a {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.streaming-icons i {
    width: 28px;
    height: 28px;
}

/* Glass Cards overrides */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(157, 89, 255, 0.2);
}

.glass-card .card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(157, 89, 255, 0.1);
    border-radius: 12px;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.glass-card:hover .card-icon {
    background: var(--accent-color);
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

.card-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.card-text span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.arrow-icon {
    margin-left: auto;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.glass-card:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes scrollAnim {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid var(--card-border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .artist-name {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 1rem;
    }
}