/* ===== CSS Custom Properties ===== */
:root {
    --color-bg-dark: #0a0a0a;
    --color-bg-blue: #0a1628;
    --color-text-primary: #e0e0e0;
    --color-text-muted: #b0b0b0;
    --color-text-dim: #888;
    --color-accent: #c8dff0;
    --color-accent-blue: rgba(100, 150, 200, 1);
    --color-accent-blue-light: rgba(120, 170, 220, 0.8);
    --color-accent-glow: rgba(100, 150, 200, 0.3);
    --color-card-bg: rgba(10, 22, 40, 0.4);
    --color-border: rgba(100, 150, 200, 0.3);
    --color-border-hover: rgba(100, 150, 200, 0.6);
    --color-success: #90e0b0;
    --color-success-bg: rgba(100, 200, 150, 0.2);
    --color-warning: #e0c090;
    --color-warning-bg: rgba(200, 150, 100, 0.2);
    --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --transition-fast: 0.12s ease;
    --transition-normal: 0.3s ease;
    --shadow-soft: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 1.25rem rgba(100, 150, 200, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, var(--color-bg-blue) 0%, var(--color-bg-dark) 100%);
    color: var(--color-text-primary);
    font-family: var(--font-system);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.25rem;
}

::-webkit-scrollbar-thumb {
    background: rgba(100, 150, 200, 0.3);
    border-radius: 0.25rem;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 150, 200, 0.5);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(100, 150, 200, 0.3) rgba(255, 255, 255, 0.03);
}

/* ===== Accessibility ===== */
.skip-link {
    position: absolute;
    top: -6.25rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(80, 140, 200, 0.95), rgba(50, 110, 170, 1));
    color: #ffffff;
    padding: 0.75rem 1.875rem;
    text-decoration: none;
    z-index: 1000;
    font-weight: 600;
    border: 2px solid var(--color-accent-blue-light);
    border-radius: 0.3125rem;
    box-shadow: var(--shadow-soft);
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
    font-size: 0.9rem;
    transition: top var(--transition-normal);
}

.skip-link:focus {
    top: 1.25rem;
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
    box-shadow: 0 0.375rem 1.5625rem rgba(100, 160, 220, 0.7);
}

:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* ===== Layout ===== */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
}

.section {
    margin-bottom: 3.75rem;
}

.header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

/* ===== Hero Section ===== */
.hero-image-section {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 2.5rem 0;
    overflow: hidden;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 12.5rem;
    object-fit: contain;
}

.hero-section {
    text-align: center;
    margin: 2.5rem 0;
    padding: 0 1.25rem;
}

.hero-headline {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.9375rem;
    line-height: 1.2;
    text-shadow: 0 2px 0.625rem var(--color-accent-glow);
}

.hero-subheadline {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 1.875rem;
    line-height: 1.6;
    font-weight: 300;
}

/* ===== Typography ===== */
h1 {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.125rem;
    margin-bottom: 0.625rem;
    text-transform: uppercase;
    color: var(--color-accent);
    text-shadow: 0 0 1.25rem var(--color-accent-glow);
}

h2 {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.09375rem;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.875rem;
    text-align: center;
}

.subtitle {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    letter-spacing: 0.0625rem;
    text-transform: uppercase;
}

.bio {
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    color: #d4d4d4;
    line-height: 1.8;
    text-align: left;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
}

.bio p {
    margin-bottom: 0.9375rem;
}

/* ===== Buttons ===== */
.cta-button {
    display: inline-block;
    padding: 0.9375rem 2.5rem;
    background: linear-gradient(135deg, rgba(80, 140, 200, 0.9), rgba(50, 110, 170, 1));
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(120, 170, 220, 0.5);
    border-radius: 0.3125rem;
    font-size: 1rem;
    font-weight: 700;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
    box-shadow: var(--shadow-soft);
}

.cta-button:hover,
.cta-button:focus {
    border-color: rgba(140, 190, 240, 1);
    box-shadow: var(--shadow-glow);
    transform: translateY(-0.125rem) scale(1.02);
}

button {
    background-color: rgba(60, 100, 150, 0.5);
    color: var(--color-text-primary);
    border: 1px solid rgba(100, 150, 200, 0.7);
    padding: 0.75rem 1.875rem;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    transition: all var(--transition-normal);
    width: 100%;
}

button:hover,
button:focus {
    background-color: rgba(60, 100, 150, 0.8);
    box-shadow: 0 0 0.9375rem rgba(100, 150, 200, 0.5);
    transform: translateY(-0.0625rem);
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.interactive-hover {
    transition: all var(--transition-normal);
}

.interactive-hover:hover,
.interactive-hover:focus {
    background-color: rgba(60, 100, 150, 0.6);
    border-color: rgba(100, 150, 200, 0.8);
    box-shadow: var(--shadow-glow);
    transform: translateY(-0.125rem) scale(1.02);
}

/* ===== Profile Section ===== */
.profile-section {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.profile-image {
    width: 12.5rem;
    height: 12.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(100, 150, 200, 0.5);
    filter: grayscale(100%);
    transition: filter var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.profile-image:hover,
.profile-image:focus {
    filter: grayscale(0%);
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
}

/* ===== Works/Portfolio Section ===== */
.works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.work-item {
    background-color: rgba(10, 22, 40, 0.3);
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.work-thumbnail {
    width: 100%;
    height: 11.25rem;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
}

.work-content {
    padding: 1.25rem;
}

.work-item:hover,
.work-item:focus {
    background-color: rgba(10, 22, 40, 0.5);
    border-color: var(--color-border-hover);
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-medium);
}

.work-item:hover .work-thumbnail {
    transform: scale(1.03);
}

.work-title {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.work-arrow {
    opacity: 0;
    transition: opacity var(--transition-normal), transform var(--transition-normal);
    font-size: 1.2rem;
}

.work-item:hover .work-arrow,
.work-item:focus .work-arrow {
    opacity: 1;
    transform: translateX(0.25rem);
}

.work-description {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0.5rem 0;
    font-style: italic;
}

.work-company {
    font-size: 0.9rem;
    color: #aaa;
    font-style: italic;
    margin-bottom: 0.625rem;
}

.work-status {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: 0.75rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
    font-weight: 500;
}

.status-released {
    background-color: var(--color-success-bg);
    color: var(--color-success);
    border: 1px solid rgba(100, 200, 150, 0.3);
}

.status-development {
    background-color: var(--color-warning-bg);
    color: var(--color-warning);
    border: 1px solid rgba(200, 150, 100, 0.3);
}

/* ===== Audio Reel Section ===== */
.audio-section-heading {
    font-size: 1.4rem;
    margin: 1.75rem 0 0.25rem;
    font-weight: 600;
}

.audio-section-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.875rem;
}

.audio-reel {
    border-radius: 0.875rem;
    background: rgba(6, 10, 26, 0.92);
    box-shadow: 0 1.125rem 2.5rem rgba(0, 0, 0, 0.65);
    padding: 1.125rem 1.125rem 0.625rem;
    backdrop-filter: blur(0.375rem);
    display: flex;
    flex-direction: column;
    max-height: 25rem;
}

.sticky-audio {
    position: sticky;
    top: 1.5rem;
    z-index: 10;
}

.audio-player {
    margin-bottom: 0.75rem;
    border-radius: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at top left, rgba(126, 196, 255, 0.13), transparent),
        radial-gradient(circle at bottom right, rgba(148, 97, 255, 0.13), transparent);
    padding: 0.625rem 0.75rem 0.375rem;
    flex-shrink: 0;
}

.current-track {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}

.current-art {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.375rem;
    flex-shrink: 0;
    background: radial-gradient(circle at top left, rgba(126, 196, 255, 0.2), transparent),
        radial-gradient(circle at bottom right, rgba(148, 97, 255, 0.2), transparent);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
    opacity: 0.7;
    transition: opacity 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.current-art.has-art {
    opacity: 1;
    box-shadow: 0 0 0 1px rgba(192, 224, 255, 0.6);
    transform: translateZ(0);
}

.current-track-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.current-track-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    opacity: 0.7;
    margin-bottom: 0.1875rem;
}

.track-title {
    font-weight: 600;
    font-size: 1rem;
}

.track-meta {
    font-size: 0.85rem;
    opacity: 0.8;
}

audio {
    width: 100%;
    margin-top: 0.5rem;
    outline: none;
    border-radius: 0.25rem;
}

/* ===== Track List ===== */
.track-list {
    list-style: none;
    margin: 0.375rem -0.375rem 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    flex: 1;
    overflow-y: auto;
    padding-right: 0.25rem;
    position: relative;
}

.track-list::before,
.track-list::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1rem;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.2s ease;
}

.track-list::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(3, 7, 18, 0.85), transparent);
}

.track-list::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(3, 7, 18, 0.85), transparent);
}

.track-list.at-top::before {
    opacity: 0;
}

.track-list.at-bottom::after {
    opacity: 0;
}

.track-list-group-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.7;
    margin: 0.625rem 0.375rem 0.125rem;
}

.track-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.375rem;
    cursor: pointer;
    font-size: 0.94rem;
    border-radius: 0.5rem;
    transition: background var(--transition-fast), transform 0.08s ease, box-shadow var(--transition-fast);
    margin: 0.125rem 0;
}

.track-list li:hover:not(.track-list-group-label) {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(0.125rem);
}

.track-list li:active:not(.track-list-group-label) {
    transform: translateX(0);
    box-shadow: 0 0 0 1px rgba(192, 224, 255, 0.3);
}

.track-list li.active {
    background: linear-gradient(90deg, rgba(126, 196, 255, 0.22), rgba(148, 97, 255, 0.22));
    box-shadow: 0 0 0 1px rgba(192, 224, 255, 0.55);
}

.track-main {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    margin-right: 0.625rem;
}

.track-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-origin {
    font-size: 0.78rem;
    opacity: 0.75;
}

.track-extra {
    font-size: 0.78rem;
    opacity: 0.7;
    white-space: nowrap;
    text-align: right;
}

/* ===== Release Section ===== */
.release-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    margin-top: 1.25rem;
}

.release-artwork {
    width: 100%;
    height: auto;
    max-width: 18.75rem;
    max-height: 18.75rem;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.release-artwork:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
}

.release-info {
    text-align: center;
    color: #d4d4d4;
    line-height: 1.7;
}

.release-info h3 {
    color: var(--color-accent);
    font-size: 1.3rem;
    margin-bottom: 0.625rem;
}

/* ===== Bandcamp Section ===== */
.bandcamp-section {
    background-color: var(--color-card-bg);
    padding: 1.875rem;
    border: 1px solid rgba(100, 150, 200, 0.4);
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    transition: all var(--transition-normal);
}

.bandcamp-section:hover,
.bandcamp-section:focus-within {
    background-color: rgba(10, 22, 40, 0.6);
    border-color: var(--color-border-hover);
}

.bandcamp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--color-accent);
    text-decoration: none;
    padding: 0.9375rem 1.875rem;
    background-color: rgba(60, 100, 150, 0.3);
    border: 1px solid rgba(100, 150, 200, 0.5);
    border-radius: 0.375rem;
    transition: all var(--transition-normal);
    margin: 1rem;
}

.bandcamp-link:hover,
.bandcamp-link:focus {
    background-color: rgba(60, 100, 150, 0.6);
    border-color: rgba(100, 150, 200, 0.8);
    box-shadow: var(--shadow-glow);
    transform: translateY(-0.125rem) scale(1.02);
}

.bandcamp-icon {
    font-size: 1.5rem;
}

/* ===== Links ===== */
.links-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.875rem;
}

a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #222;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
}

a:hover {
    color: #fff;
    border-bottom-color: #3a5a8f;
    text-shadow: 0 0 0.625rem rgba(100, 150, 200, 0.6);
}

/* ===== Social Links ===== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.875rem;
    margin: 1.875rem 0;
    flex-wrap: wrap;
}

.social-links a {
    border: none;
    font-size: 1.3rem;
    padding: 0.625rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover,
.social-links a:focus {
    padding-left: 0;
    text-shadow: 0 0 0.9375rem rgba(100, 150, 200, 0.8);
    transform: scale(1.1);
}

.music-link {
    padding-left: 0.75rem;
}

.music-link i {
    margin-right: 0.75rem;
    width: 1.25rem;
    text-align: center;
}

/* ===== Social Icons Grid ===== */
.social-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 5rem);
    gap: 1.875rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.social-icon-link {
    display: block;
    width: 5rem;
    height: 5rem;
    transition: all var(--transition-normal);
}

.social-icon-link:hover,
.social-icon-link:focus {
    transform: translateY(-0.3125rem) scale(1.15);
    filter: drop-shadow(0 0.5rem 1.25rem rgba(100, 150, 200, 0.6));
}

.social-icon-link img {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===== Testimonials ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5625rem;
    margin-top: 1.875rem;
}

.testimonial {
    background-color: var(--color-card-bg);
    padding: 1.5625rem;
    border-left: 3px solid var(--color-border-hover);
    border-radius: 0.3125rem;
    margin: 0;
    transition: all var(--transition-normal);
}

.testimonial:hover {
    background-color: rgba(10, 22, 40, 0.6);
    transform: translateX(0.25rem);
}

.testimonial blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: #d4d4d4;
    font-style: italic;
    margin: 0 0 0.9375rem 0;
}

.testimonial figcaption {
    display: block;
    font-size: 0.9rem;
    color: #a8c5e0;
    font-style: normal;
    font-weight: 500;
}

/* ===== Contact Form ===== */
.contact-form {
    background-color: rgba(10, 22, 40, 0.5);
    padding: 1.5625rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    margin-top: 1.875rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    font-family: inherit;
    border-radius: 0.25rem;
    transition: all var(--transition-normal);
    font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(100, 150, 200, 0.7);
    box-shadow: 0 0 0.625rem rgba(100, 150, 200, 0.2);
}

textarea {
    resize: vertical;
    min-height: 7.5rem;
}

.success-message {
    background-color: rgba(62, 112, 6, 0.3);
    border: 1px solid rgba(62, 112, 6, 0.5);
    color: #b3ffb3;
    padding: 0.9375rem;
    border-radius: 0.25rem;
    margin-bottom: 1.25rem;
    display: none;
}

.error-message {
    background-color: rgba(112, 6, 6, 0.3);
    border: 1px solid rgba(112, 6, 6, 0.5);
    color: #ffb3b3;
    padding: 0.9375rem;
    border-radius: 0.25rem;
    margin-bottom: 1.25rem;
    display: none;
}

/* ===== Footer ===== */
.footer {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.8rem;
    color: #999;
}

/* ===== Mini-player Bar ===== */
.mini-player {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    transform: translateY(6.25rem);
    padding: 0.625rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: linear-gradient(90deg, rgba(10, 22, 40, 0.98), rgba(9, 9, 20, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3.125rem;
    backdrop-filter: blur(0.625rem);
    box-shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    z-index: 40;
    transition: transform 0.22s ease, opacity 0.22s ease;
    max-width: 25rem;
    width: auto;
}

.mini-player.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mini-player-main {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.mini-player-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.mini-label {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.65;
}

.mini-title {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-toggle {
    border: none;
    border-radius: 999px;
    padding: 0.375rem 0.875rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    background: radial-gradient(circle at top left, rgba(126, 196, 255, 0.35), transparent),
        radial-gradient(circle at bottom right, rgba(148, 97, 255, 0.35), transparent);
    color: #f3f4f6;
    box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.5);
    transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.mini-toggle:hover {
    transform: translateY(-0.0625rem);
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.7);
}

.mini-toggle:active {
    transform: translateY(0);
    box-shadow: 0 0.1875rem 0.5rem rgba(0, 0, 0, 0.5);
}

/* ===== Responsive: Tablet & Desktop ===== */
@media (min-width: 640px) {
    .container {
        padding: 3.75rem 2.5rem;
        max-width: 56.25rem;
        margin: 0 auto;
    }

    .section {
        margin-bottom: 5rem;
    }

    .header {
        margin-bottom: 3.75rem;
        padding-bottom: 1.875rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .works-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.875rem;
    }

    .social-links {
        gap: 2.5rem;
    }

    .social-links a {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 2.5rem;
    }

    .hero-image-section {
        margin-bottom: 3.75rem;
    }

    .hero-image {
        max-height: 15.625rem;
    }

    .profile-image {
        width: 15.625rem;
        height: 15.625rem;
    }

    .audio-reel {
        max-height: 28.75rem;
    }
}

@media (min-width: 768px) {
    .release-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .release-artwork {
        max-width: 15.625rem;
        max-height: 15.625rem;
    }

    .release-info {
        text-align: left;
        flex: 1;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Responsive: Large Desktop ===== */
@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    .hero-image {
        max-height: 18.75rem;
    }

    .container {
        max-width: 62.5rem;
    }
}

/* ===== Responsive: Mobile Mini-player ===== */
@media (max-width: 640px) {
    .mini-player {
        left: 0.75rem;
        right: 0.75rem;
        transform: translateX(0) translateY(6.25rem);
        max-width: none;
        width: auto;
        bottom: 0.75rem;
    }

    .mini-player.visible {
        transform: translateX(0) translateY(0);
    }

    .mini-title {
        max-width: 50vw;
    }

    .audio-reel {
        padding: 0.875rem 0.75rem 0.5rem;
    }
}

/* ===== Accessibility: Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
