/*
 *  ╔═══════════════════════════════════╗
 *  ║                                   ║
 *  ║        BEN ASHFORD                ║
 *  ║                                   ║
 *  ║     Site By Propeller             ║
 *  ║                                   ║
 *  ╚═══════════════════════════════════╝
 */

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

@font-face {
    font-family: 'SofiaRoughBlackTwo';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/SofiaRoughBlackTwo.woff2') format('woff2');
}

@font-face {
    font-family: 'SofiaRoughBlackTwo';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/SofiaRoughBlackTwo.woff2') format('woff2');
}

:root {
    --font-sofia: 'SofiaRoughBlackTwo', Georgia, 'Times New Roman', serif;
    --font-copyright: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --dark-teal: #0a1a1f;
    --teal: #1a3a47;
    --light-teal: #2a5a6b;
    --accent-teal: #3a7a8b;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-grey: #b0b0b0;
    --spotify-green: #1db954;
    --apple-grey: #f5f5f7;
    --youtube-red: #ff0000;
}

html {
    overscroll-behavior: none;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sofia);
    background-color: var(--dark-teal);
    color: var(--text-white);
    overflow-x: hidden;
    overscroll-behavior: none;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.blurred-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(40px) brightness(0.4);
    transform: scale(1.1);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.blurred-cover.active {
    opacity: 1;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(1px 1px at 55% 20%, white, transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    animation: stars 20s linear infinite;
    opacity: 0.8;
}

@keyframes stars {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.horizon-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(58, 122, 139, 0.3), transparent);
}

.hero-intro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 100%;
    /* Above .horizontal-scroll-wrapper (z-index 1); must not eat clicks meant for streaming links */
    pointer-events: none;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    opacity: 0;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    opacity: 0;
}

/* Logo version of title at top */
.hero-logo {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    will-change: opacity, transform;
}

.logo-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-white);
    margin: 0;
    white-space: nowrap;
}


/* Horizontal Scroll Container */
.horizontal-scroll-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

.horizontal-scroll-wrapper.visible {
    opacity: 1;
    pointer-events: auto;
}

.horizontal-scroll-container {
    display: flex;
    width: fit-content;
    height: 100%;
    will-change: transform;
}

.song-slide {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 4rem calc(3.5rem + env(safe-area-inset-bottom));
    position: relative;
    z-index: 2;
}

.song-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
    padding: 0 2rem;
}

.song-artwork {
    flex: 0 0 auto;
    width: clamp(300px, 40vw, 500px);
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.song-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.song-artwork.has-video .song-image {
    opacity: 0;
}

.song-artwork iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.play-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: white;
    transform: scale(1.1);
}

.play-button svg {
    width: 24px;
    height: 24px;
    margin-left: 3px; /* Slight offset to center the play icon visually */
}

.song-artwork.has-video .play-button {
    display: none;
}

.placeholder-artwork {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
}

.song-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.footer-info {
    position: fixed;
    bottom: calc(2rem + env(safe-area-inset-bottom));
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 4rem;
    z-index: 100;
    opacity: 1;
    transform: none;
    /* Non-interactive strip; streaming links stay clickable */
    pointer-events: none;
}

.copyright-text {
    text-align: center;
    font-family: var(--font-copyright);
}

.copyright-text p {
    margin: 0;
    color: var(--text-white);
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    letter-spacing: 0.05em;
    font-family: var(--font-copyright);
}

.song-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-white);
    margin: 0;
    line-height: 1.2;
}

.song-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: white;
    border-radius: 50px;
    margin-top: 1rem;
    width: fit-content;
    align-self: flex-start;
}

.coming-soon-badge p {
    color: #000000;
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

.available-now-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: white;
    border-radius: 50px;
    margin-top: 1rem;
    width: fit-content;
    align-self: flex-start;
}

.available-now-badge p {
    color: #000000;
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

.launches-text {
    color: var(--text-white);
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    font-weight: 400;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.8;
}

.countdown-timer {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 0;
    width: fit-content;
    align-self: flex-start;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 60px;
}

.countdown-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.countdown-label {
    font-size: clamp(0.65rem, 0.9vw, 0.75rem);
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    opacity: 0.7;
}

.countdown-separator {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    margin-top: 0.25rem;
    align-self: flex-start;
}

.song-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 160px;
    justify-content: center;
}

.song-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.song-btn.spotify {
    background: transparent;
    padding: 0;
    border: none;
    min-width: auto;
}

.song-btn.spotify:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: none;
}

.spotify-badge {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.song-btn.spotify:hover .spotify-badge {
    transform: scale(1.1);
}

.song-btn.apple {
    background: transparent;
    padding: 0;
    border: none;
    min-width: auto;
}

.song-btn.apple:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: none;
}

.apple-music-badge {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.song-btn.apple:hover .apple-music-badge {
    transform: scale(1.1);
}

.song-btn.tidal {
    background: transparent;
    padding: 0;
    border: none;
    min-width: auto;
}

.song-btn.tidal:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: none;
}

.tidal-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 8px;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.song-btn.tidal:hover .tidal-badge {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
}

.scroll-indicator {
    position: absolute;
    bottom: calc(2rem + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
}

.scroll-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--text-white);
    border-radius: 15px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-right: 2px solid var(--text-white);
    border-bottom: 2px solid var(--text-white);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(0) rotate(45deg); }
    50% { opacity: 1; transform: translateX(-50%) translateY(5px) rotate(45deg); }
}

/* Music Section */
.music-section {
    padding: 8rem 2rem;
    background: var(--dark-teal);
}

.music-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.music-player {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.album-cover-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.album-cover {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-cover::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.play-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 2;
}

.play-btn, .prev-track, .next-track {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--text-white);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-white);
}

.play-btn {
    width: 80px;
    height: 80px;
}

.play-btn:hover, .prev-track:hover, .next-track:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.play-btn svg, .prev-track svg, .next-track svg {
    width: 24px;
    height: 24px;
}

.play-btn svg {
    width: 32px;
    height: 32px;
}

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

.track-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-white);
}

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

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
}

.progress-bar-container {
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: var(--text-white);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

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

.control-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.control-btn svg {
    width: 20px;
    height: 20px;
}

.control-btn span {
    position: absolute;
    bottom: -20px;
    font-size: 0.7rem;
}

.play-pause-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--text-white);
    border-radius: 50%;
}

.play-pause-btn svg {
    width: 24px;
    height: 24px;
}

.control-btn:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Album Info */
.album-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.album-title {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
}

.artist-name {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
}

.album-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 500px;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.buy-section, .streaming-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.buy-btn {
    background: var(--apple-grey);
    border: 2px solid #d0d0d0;
    color: #333;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    max-width: 200px;
}

.buy-btn svg {
    width: 20px;
    height: 20px;
}

.buy-btn:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.streaming-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stream-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stream-btn svg {
    width: 20px;
    height: 20px;
}

.stream-btn.spotify {
    background: var(--spotify-green);
    color: var(--text-white);
}

.stream-btn.spotify:hover {
    background: #1ed760;
    transform: translateY(-2px);
}

.stream-btn.apple {
    background: var(--apple-grey);
    color: #333;
    border-color: #d0d0d0;
}

.stream-btn.apple:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.stream-btn.youtube {
    background: var(--youtube-red);
    color: var(--text-white);
}

.stream-btn.youtube:hover {
    background: #ff3333;
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 8rem 2rem;
    background: var(--teal);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
}

.about-content {
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Projects Section */
.projects-section {
    padding: 8rem 2rem;
    background: var(--dark-teal);
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

/* News Section */
.news-section {
    padding: 8rem 2rem;
    background: var(--teal);
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

/* Mailing Section */
.mailing-section {
    padding: 8rem 2rem;
    background: var(--dark-teal);
    position: relative;
    overflow: hidden;
}

.mailing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(58, 122, 139, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(58, 122, 139, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.mailing-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mailing-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.mailing-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.mailing-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.form-input {
    flex: 1;
    min-width: 200px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: var(--text-grey);
}

.form-input:focus {
    outline: none;
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.15);
}

.form-submit {
    padding: 1rem 2.5rem;
    background: var(--light-teal);
    border: 2px solid var(--accent-teal);
    border-radius: 4px;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-submit:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 4rem 2rem 2rem;
    background: var(--dark-teal);
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    background: var(--text-white);
    color: var(--dark-teal);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-grey);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-white);
}

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--text-white);
    border-radius: 50%;
    color: var(--text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .music-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mailing-form {
        flex-direction: column;
    }

    .form-input, .form-submit {
        width: 100%;
    }
}

@media (max-width: 968px) {
    .song-card {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .song-artwork {
        width: 100%;
        max-width: 400px;
    }

    .song-info {
        max-width: 100%;
    }

    .song-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero-logo .logo-title {
        white-space: nowrap;
        font-size: clamp(1rem, 4vw, 1.5rem);
    }

    .coming-soon-badge {
        align-self: center;
    }

    .countdown-timer {
        padding: 0.75rem 1rem;
        gap: 0.4rem;
        align-self: center;
    }

    .countdown-item {
        min-width: 35px;
        gap: 0.3rem;
    }

    .countdown-value {
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.5rem;
    }

    .countdown-separator {
        font-size: 1.2rem;
    }

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

    .streaming-buttons {
        flex-direction: column;
    }

    .stream-btn {
        width: 100%;
        justify-content: center;
    }

    .song-slide {
        padding: 0 2rem calc(3.5rem + env(safe-area-inset-bottom));
    }

    .song-card {
        gap: 2rem;
    }

    .song-title {
        font-size: 2rem;
    }

    .song-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .song-btn {
        width: auto;
    }

    .spotify-badge,
    .apple-music-badge {
        height: 32px;
    }

    .tidal-badge {
        height: 32px;
        font-size: 0.625rem;
        padding: 0 1rem;
    }
}

