@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Inter:wght@300;400;600&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e63946;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, #0a0a0a 100%);
    z-index: -1;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.subtitle {
    opacity: 0.5;
}

.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: #e63946;
    color: #fff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background: #c1121f;
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    border: 2px solid #e63946;
    color: #e63946;
    margin-left: 1rem;
}

.btn-outline:hover {
    background: #e63946;
    color: #fff;
}

section {
    padding: 6rem 3rem;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #e63946;
    margin: 1rem auto 0;
}

.about {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #bbb;
    margin: 0 auto 2rem;
}

.members {
    display: flex;
    justify-content: center;
    gap: 5rem;
    max-width: 900px;
    margin: 3rem auto 0;
    flex-wrap: wrap;
}

.member {
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.member:hover {
    transform: scale(1.05);
}

.member-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 3px solid #e63946;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #333;
    overflow: hidden;
    transform: scaleX(-1);
}

.member-photo img {
    height: auto;
    width: 100%;
}

.member h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #fff;
}

.member span {
    font-size: 0.85rem;
    color: #e63946;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.member-modal {
    transform: translateY(40px) scale(0.97);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.member-modal-overlay.active .member-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.member-modal {
    background: #111;
    border: 1px solid #222;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 2.5rem;
}

.member-modal-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.member-modal-avatar {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e63946;
}

.member-modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-modal-info h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 0.3rem;
}

.member-modal-role {
    font-size: 0.8rem;
    color: #e63946;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.member-modal-bio {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.8;
}

.member-modal-bio p {
    margin-bottom: 1rem;
}

.member-modal-photos {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.member-modal-photo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
    border: 1px solid #222;
}

.member-modal-photo:hover {
    opacity: 0.8;
    transform: scale(1.03);
}

.music {
    background: #111;
    position: relative;
    overflow: hidden;
}

.wave {
    position: absolute;
    top: 25%;
    left: 0;
    width: 100%;
    height: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.wave-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wave::after {
    content: '';
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #111 100%);
    z-index: 1;
}

.wave::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #111 100%);
    z-index: 1;
}

#music > *:not(.wave) {
    position: relative;
    z-index: 1;
}

.albums-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.album-card {
    position: relative;
}

.album-card-cover {
    width: 300px;
    height: 300px;
    cursor: pointer;
    border: 2px solid #1a1a1a;
    background: #1a1a1a;
    transition: transform 0.3s;
}

.album-card-cover:hover {
    border-color: #e63946;
    transform: scale(1.03);
}

.album-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.album-locked .album-card-cover {
    cursor: default;
    border: none;
    position: relative;
}

.album-locked .album-card-cover:hover {
    border: none;
    transform: none;
}

.album-locked .album-card-cover img {
    filter: grayscale(1) brightness(0.5);
}

.album-card-overlay {
    padding: 1rem 0rem;
}

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

.album-card-year {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.5;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.album-card-overlay h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: #fff;
}

.album-locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: rgba(0, 0, 0, 0.4);
}

.album-locked-icon {
    font-size: 2.5rem;
    opacity: 1;
}

.album-locked-status {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.modal-overlay {
    display: flex;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 200;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transition: opacity 0.35s ease, visibility 0.35s ease, background 0.35s ease;
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
    background: rgba(0, 0, 0, 0.85);
}

.modal {
    background: #111;
    border: 1px solid #222;
    max-width: 960px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(40px) scale(0.97);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: #666;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #e63946;
}

.modal-body {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
}

.modal-cover {
    flex-shrink: 0;
    width: 320px;
}

.cover-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #0a0a0a;
}

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

.cover-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid transparent;
    color: #ccc;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
    line-height: 35px;
}

.cover-nav:hover {
    background: #e63946;
    border-color: #e63946;
    color: #fff;
}

.cover-prev {
    left: 0.5rem;
}

.cover-next {
    right: 0.5rem;
}

.cover-dots {
    position: absolute;
    bottom: 0.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.cover-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.cover-dot.active {
    background: #e63946;
}

.modal-info {
    padding-top: 1.2rem;
}

.modal-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 0.3rem;
}

.modal-date {
    font-size: 0.8rem;
    color: #e63946;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.modal-about {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.widget-tabs {
    display: flex;
    gap: 0;
    margin-top: 0.5rem;
}

.widget-tab {
    padding: 0.5rem 1.2rem;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #888;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.widget-tab:first-child {
    border-radius: 4px 0 0 4px;
}

.widget-tab:last-child {
    border-radius: 0 4px 4px 0;
}

.widget-tab:only-child {
    border-radius: 4px;
}

.widget-tab:not(:first-child) {
    border-left: none;
}

.widget-tab.active {
    background: #e63946;
    border-color: #e63946;
    color: #fff;
}

.widget-tab:hover:not(.active) {
    background: #222;
    color: #ccc;
}

.widget-tab.disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.modal-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

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

.player-track {
    display: flex;
    align-items: baseline;
    padding: 0.7rem 1rem;
    background: #1a1a1a;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
}

.player-track:hover,
.player-track.active {
    border-left-color: #e63946;
    background: #222;
}

.player-track-num {
    font-size: 0.8rem;
    color: #555;
    margin-right: 0.5rem;
}

.player-track.active .player-track-num {
    color: #e63946;
}

.player-track-name {
    flex: 1;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: #ddd;
}

.player-track-locked {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.player-track-locked .player-track-num::after {
    content: '\1F512';
    font-size: 0.6rem;
    margin-left: 0.3rem;
}

.player-track-dur {
    font-size: 0.8rem;
    color: #555;
    margin-left: 1rem;
}

.player-bar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
}

.player-bar-btn {
    background: none;
    border: 1px solid #333;
    color: #ccc;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    flex-shrink: 0;
    line-height: 36px;
    text-align: center;
}

.player-bar-btn:hover {
    background: #e63946;
    border-color: #e63946;
    color: #fff;
}

.player-progress {
    flex: 1;
    height: 4px;
    background: #333;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.player-progress-fill {
    height: 100%;
    background: #e63946;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.player-time {
    font-size: 0.75rem;
    color: #555;
    min-width: 70px;
    text-align: right;
    flex-shrink: 0;
}

.modal-iframe {
    flex: 1;
    min-width: 0;
}

.modal-iframe iframe {
    width: 100%;
    min-height: 400px;
    border: none;
}

.music-platforms-section {
    padding: 0 3rem 4rem;
}

.music-platforms-section .music-platforms {
    margin-top: 0;
}

.tracks {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.track {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: #1a1a1a;
    border-left: 3px solid transparent;
    transition: border-color 0.3s, background 0.3s;
    cursor: pointer;
}

.track:hover {
    border-left-color: #e63946;
    background: #222;
}

.track-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #555;
    margin-right: 1.5rem;
    min-width: 30px;
}

.track:hover .track-number {
    color: #e63946;
}

.track-info {
    flex: 1;
}

.track-info h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #fff;
}

.track-info span {
    font-size: 0.8rem;
    color: #666;
}

.track-duration {
    font-size: 0.9rem;
    color: #555;
}

.music-platforms {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-platform {
    background: transparent;
    border: 1px solid #333;
    color: #ccc;
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-platform:hover {
    background: #e63946;
    border-color: #e63946;
    color: #fff;
    transform: none;
}

#articles {
    position: relative;
    overflow: hidden;
}

#articles::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 70%;
    background: url('../media/wall_kira_left_alpha.webp') bottom left / contain no-repeat;
    opacity: 0.25;
    pointer-events: none;
}

#articles::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 70%;
    background: url('../media/wall_nasty_right_alpha.webp') bottom right / contain no-repeat;
    opacity: 0.25;
    pointer-events: none;
}

.articles-nav-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem auto;
}

.articles-nav-btn {
    display: block;
    padding: 0.6rem 1.5rem;
    background: none;
    border: 1px solid #333;
    color: #ccc;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s, border-color 0.3s;
    position: relative;
    z-index: 1;
}

.articles-nav-btn:hover:not(:disabled) {
    color: #e63946;
    border-color: #e63946;
}

.articles-nav-btn:disabled {
    opacity: 0;
    cursor: default;
}

.articles-list {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article {
    padding: 1.5rem;
    background: #111;
    border-left: 3px solid #e63946;
    transition: background 0.3s;
    cursor: pointer;
}

.article:hover {
    background: #161616;
}

.article-date {
    font-size: 0.75rem;
    color: #e63946;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.article-details h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 0.4rem;
}

.article-details p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
}

.article-modal {
    transform: translateY(40px) scale(0.97);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.article-modal-overlay.active .article-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.article-modal {
    background: #111;
    border: 1px solid #222;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 2.5rem;
}

.article-modal-date {
    font-size: 0.75rem;
    color: #e63946;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.article-modal-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.article-modal-body {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.article-modal-body p {
    margin-bottom: 1rem;
}

.article-modal-media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-modal-img {
    width: 100%;
    border-radius: 4px;
}

.article-modal-video {
    width: 100%;
    border-radius: 4px;
    background: #000;
}

.contact {
    text-align: center;
    background: #111;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../media/preview.webp') center/cover no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

.contact a {
    color: #e63946;
    font-weight: 700;
    text-decoration: none;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a,
.social-links a:hover {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    color: #999;
    text-decoration: none;
    font-size: 1.2rem;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.social-links a img {
    height: auto;
    width: 100%;
}

.lightbox {
    display: flex;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 400;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #666;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #e63946;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    color: #ccc;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
    z-index: 10;
}

.lightbox-nav:hover {
    background: #e63946;
    border-color: #e63946;
    color: #fff;
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

.lightbox-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.lightbox-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.lightbox-dot.active {
    background: #e63946;
}

.mini-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 300;
    background: #111;
    border-top: 1px solid #222;
    display: none;
    flex-direction: column;
}

.mini-player.active {
    display: flex;
}

.mini-player-progress {
    height: 3px;
    background: #222;
    cursor: pointer;
}

.mini-player-progress-fill {
    height: 100%;
    background: #e63946;
    width: 0%;
    transition: width 0.1s linear;
}

.mini-player-body {
    display: flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    gap: 1rem;
}

.mini-player-btn {
    background: none;
    border: 1px solid #333;
    color: #ccc;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.mini-player-btn:hover {
    background: #e63946;
    border-color: #e63946;
    color: #fff;
}

.mini-player-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.mini-player-name {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #ddd;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-player-album {
    font-size: 0.7rem;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-player-time {
    font-size: 0.75rem;
    color: #555;
    flex-shrink: 0;
}

.mini-player-close {
    background: none;
    border: none;
    color: #555;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0 0.3rem;
    transition: color 0.3s;
    flex-shrink: 0;
}

.mini-player-close:hover {
    color: #e63946;
}

footer {
    text-align: center;
    padding: 4rem 1rem;
    border-top: 1px solid #1a1a1a;
    color: #444;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

@media (max-width: 1600px) {
    .albums-grid {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .albums-grid {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .hero p {
        font-size: 0.9rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
    }

    .albums-grid {
        flex-direction: column;
        align-items: center;
    }

    .album-card-cover {
        width: 260px;
        height: 260px;
    }

    .modal-body {
        flex-direction: column;
        padding: 1.5rem;
    }

    .modal-cover {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .music-platforms-section {
        padding: 0 1.5rem 3rem;
    }

    .member-modal-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .member-modal-photos {
        justify-content: center;
    }
}