/* ==========================================================================
   FFVoid (虚空造物) - Core Design & Aesthetic Stylesheet
   Theme: Deep Dark Void / Ethereal Cyberpunk / Glassmorphism
   ========================================================================== */

:root {
    --bg-void: #050608;
    --bg-card: rgba(13, 15, 24, 0.68);
    --bg-card-hover: rgba(20, 24, 38, 0.82);
    --bg-glass: rgba(255, 255, 255, 0.035);
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-active: rgba(0, 229, 255, 0.35);
    --border-glow: rgba(155, 69, 245, 0.45);

    --text-primary: #f0f4fc;
    --text-secondary: #9aa5b8;
    --text-muted: #5e687e;

    --accent-cyan: #00e5ff;
    --accent-cyan-glow: rgba(0, 229, 255, 0.4);
    --accent-violet: #9b45f5;
    --accent-violet-glow: rgba(155, 69, 245, 0.4);
    --accent-magenta: #ff2a85;
    --spotify-green: #1db954;
    --spotify-glow: rgba(29, 185, 84, 0.35);

    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;

    --shadow-deep: 0 16px 40px -10px rgba(0, 0, 0, 0.65);
    --shadow-glow-cyan: 0 0 35px -5px rgba(0, 229, 255, 0.3);
    --shadow-glow-violet: 0 0 35px -5px rgba(155, 69, 245, 0.3);

    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    color-scheme: dark;
    background-color: var(--bg-void);
}

body {
    min-height: 100vh;
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: transparent;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fallback background if WebGL is unavailable */
body.no-webgl #void-shader {
    display: none;
}
body.no-webgl {
    background: radial-gradient(circle at 50% 20%, #101426 0%, #050608 80%);
}

/* WebGL Shader Canvas */
#void-shader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    pointer-events: none;
    opacity: 0.92;
}

/* Grain & Scanline Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(5, 6, 8, 0.45) 100%);
}

/* Main Container Layout */
.app-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Glassmorphism Panel Utilities */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-deep);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 24px;
    background: rgba(5, 6, 8, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.nav-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.brand-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px var(--accent-cyan-glow);
}

.brand-icon svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.brand-text {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-subtext {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 4px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
    transition: width 0.25s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-lang {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.btn-lang:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 14px var(--accent-cyan-glow);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding: 170px 0 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.28);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 4px var(--accent-cyan); }
    50% { transform: scale(1.25); opacity: 1; box-shadow: 0 0 12px var(--accent-cyan); }
    100% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 4px var(--accent-cyan); }
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.8rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-title-main {
    background: linear-gradient(135deg, #ffffff 30%, #b2c9ff 65%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.25));
}

.hero-title-sub {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800;
    display: block;
    background: linear-gradient(135deg, #d8b4fe 10%, var(--accent-violet) 70%, var(--accent-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 6px;
    letter-spacing: 0.08em;
}

.hero-tagline {
    max-width: 680px;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-glow-cyan);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px var(--accent-cyan), 0 0 45px var(--accent-violet);
}

.btn-spotify {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    background: rgba(29, 185, 84, 0.12);
    border: 1px solid rgba(29, 185, 84, 0.4);
    color: #1ed760;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 0 20px var(--spotify-glow);
}

.btn-spotify:hover {
    background: rgba(29, 185, 84, 0.22);
    border-color: #1ed760;
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(29, 185, 84, 0.5);
    color: #fff;
}

/* Stat Counters */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 800px;
    padding: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    background: linear-gradient(135deg, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Section Headers & Controls
   ========================================================================== */
.section {
    padding: 90px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Filter Controls */
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 9px 20px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(155, 69, 245, 0.2));
    border-color: var(--accent-cyan);
    color: #fff;
    box-shadow: 0 0 16px var(--accent-cyan-glow);
}

/* ==========================================================================
   Discography Cards Grid
   ========================================================================== */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.album-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    animation: fadeInCard 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.album-card:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 229, 255, 0.18);
}

.album-cover-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #0c0e17;
}

.album-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.album-card:hover .album-cover {
    transform: scale(1.05);
}

.album-cover-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    filter: blur(25px);
    opacity: 0.35;
    z-index: -1;
    transform: scale(0.9) translateY(10px);
    transition: opacity 0.4s ease;
}

.album-card:hover .album-cover-glow {
    opacity: 0.6;
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 6, 8, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .cover-overlay {
    opacity: 1;
}

.btn-preview-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 25px var(--accent-cyan);
    transform: scale(0.85);
    transition: var(--transition-smooth);
}

.cover-overlay:hover .btn-preview-icon {
    transform: scale(1.08);
}

.album-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.album-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.album-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: rgba(155, 69, 245, 0.15);
    border: 1px solid rgba(155, 69, 245, 0.3);
    color: #d8b4fe;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.album-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.album-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.album-genre-tag {
    font-size: 0.82rem;
    color: var(--accent-cyan);
    margin-bottom: 10px;
    font-weight: 500;
}

.album-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 20px;
    flex-grow: 1;
}

.album-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-action-preview, .btn-action-spotify {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-action-preview {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.btn-action-preview:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: var(--accent-cyan);
    color: #fff;
}

.btn-action-spotify {
    background: rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.3);
    color: #1ed760;
}

.btn-action-spotify:hover {
    background: rgba(29, 185, 84, 0.2);
    border-color: #1ed760;
    color: #fff;
}

/* ==========================================================================
   Philosophy & Lore Section
   ========================================================================== */
.lore-card {
    padding: 48px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(13, 15, 24, 0.85), rgba(20, 24, 40, 0.65));
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.lore-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(155, 69, 245, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.lore-quote {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.lore-content {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.lore-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.lore-tag {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 600;
}

/* ==========================================================================
   Contact Section & Footer
   ========================================================================== */
.contact-card {
    padding: 48px;
    text-align: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(15, 18, 30, 0.75), rgba(7, 8, 14, 0.95));
}

.email-box {
    margin: 32px auto;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 229, 255, 0.35);
    border-radius: var(--radius-full);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.15);
}

.email-address {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-family: var(--font-mono);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: color 0.2s ease;
}

.email-address:hover {
    color: var(--accent-cyan);
}

.btn-copy {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-copy:hover {
    transform: scale(1.05);
    box-shadow: 0 0 16px var(--accent-cyan);
}

.site-footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--accent-cyan);
}

/* ==========================================================================
   Spotify Embed Modal Player
   ========================================================================== */
.player-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.player-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 4, 7, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.modal-dialog {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 580px;
    background: #0d0f19;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 229, 255, 0.25);
    overflow: hidden;
    transform: scale(0.95) translateY(15px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.player-modal.active .modal-dialog {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-now-playing {
    font-size: 0.75rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.modal-album-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.btn-close-modal {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    color: var(--text-secondary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-close-modal:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.modal-body {
    padding: 16px 20px 20px;
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    padding: 12px 24px;
    background: rgba(13, 15, 26, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--accent-cyan);
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px var(--accent-cyan-glow);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: var(--transition-smooth);
}

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

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-section {
        padding: 130px 0 60px;
    }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .albums-grid {
        grid-template-columns: 1fr;
    }
    .lore-card, .contact-card {
        padding: 28px 20px;
    }
    .email-box {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        width: 100%;
    }
    .btn-copy {
        width: 100%;
    }
    .toast {
        left: 20px;
        right: 20px;
        bottom: 20px;
        text-align: center;
    }
}
