/* ===== BAND PAGE ===== */
.band-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.band-info {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(204, 0, 0, 0.2);
    border-radius: 8px;
    animation: slideUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.band-info h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    text-align: center;
}

.band-description {
    color: #bbb;
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.band-pictures img {
    margin: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 16px #cc000033;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.band-band {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(204, 0, 0, 0.2);
    border-radius: 8px;
    animation: slideUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.band-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 2rem;
    justify-content: center;
}

.band-member {
    background: linear-gradient(135deg,#2a0000 60%,#1a1a1a 100%);
    border-radius: 12px;
    box-shadow: 0 2px 16px #cc000033;
    padding: 1.2rem 1.2rem 1.5rem 1.2rem;
    width: 260px;
    text-align: center;
    transition: transform 0.18s;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.band-member img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #cc0000;
    margin-bottom: 1rem;
    background: #222;
    box-shadow: 0 0 18px #cc000055;
}

.band-member-name {
    color: #fff;
    font-size: 1.18rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.band-member-role {
    color: #cc0000;
    font-size: 1.02rem;
    margin-bottom: 0.7rem;
}

.band-member-desc {
    color: #bbb;
    font-size: 0.98rem;
}

.youtube {
    border: none;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.youtube:hover, .spotify:hover{
    transform: scale(1.15);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .band-container {
        grid-template-columns: 1fr;
    }
    .band-grid {
        flex-direction: column;
        gap: 2rem;
    }
}
/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #cc0000;
    --primary-dark: #990000;
    --secondary-color: #ff3333;
    --accent-color: #ffffff;
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.background-fixed {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.0)),
        radial-gradient(circle at 55% 40%, rgba(0, 0, 0, 0.7) 0%, transparent 60%),
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.0) 0%, transparent 50%),
        url('/img/large/wallpaper2.jpg');
    background-size: cover, auto, auto, cover;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-position: center center, 55% 40%, 20% 50%, center center;
    background-attachment: scroll, scroll, scroll, scroll;
    pointer-events: none;
    z-index: -1;
}

@media (orientation: portrait) {
    .background-fixed {
        background-image:
            linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.0)),
            radial-gradient(circle at 55% 40%, rgba(0, 0, 0, 0.7) 0%, transparent 60%),
            radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.0) 0%, transparent 50%),
            url('/img/large/wallpaper7.jpg');
    }
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    border-bottom: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
    animation: headerSlide 0.6s ease-out;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

@keyframes headerSlide {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(204, 0, 0, 0.5), 0 0 40px rgba(204, 0, 0, 0.3);
    /* animation: logoGlow 3s ease-in-out infinite; */
}

@keyframes logoGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(204, 0, 0, 0.5), 0 0 40px rgba(204, 0, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(204, 0, 0, 0.8), 0 0 60px rgba(204, 0, 0, 0.5);
    }
}


.logo .tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
    margin-top: -8px;
    transform: translateY(6px);

    /* font-size: 0.9rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
    margin-top: -4px;
    opacity: 0.8; */
}

.nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav a.active {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    text-decoration-color: #cc0000 !important;
}

.nav a.lang-active {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    text-decoration-color: #cc0000 !important;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.6);
}

.nav a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(204, 0, 0, 0.5);
}

.nav a:hover::before {
    width: 100%;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    gap: 6px;
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(204, 0, 0, 0.3);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav {
    display: flex;
    flex-direction: row;
}

.nav.mobile-active {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    border-bottom: 2px solid var(--primary-color);
    z-index: 999;
}

.nav.mobile-active ul {
    flex-direction: column;
    width: 100%;
    padding: 1rem 0;
}

.nav.mobile-active ul li {
    width: 100%;
}

.nav.mobile-active ul li a {
    display: inline-block;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(204, 0, 0, 0.1);
}

.nav.mobile-active ul li a::before {
    display: none;
}

.nav.mobile-active ul li a:hover {
    /* background: rgba(204, 0, 0, 0.1); */
    padding-left: 2.25rem;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page {
    display: none;
    animation: fadeIn 0.5s ease-in;
    min-height: 70vh;
    padding: 3rem 0;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HOME PAGE - HERO SECTION ===== */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 0 5rem 0;
}

.hero-logo {
    margin: 2rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: slideUp 0.8s ease-out 0.3s both;
    text-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    z-index: 10;
    position: relative;
    animation: slideUp 0.8s ease-out 0.5s both;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    display: inline-block;
    overflow: hidden; /* get rid of this for nice effect but weird behaviour */
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(204, 0, 0, 0.6), inset 0 0 20px rgba(204, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(204, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 30px rgba(204, 0, 0, 0.5);
    transform: translateY(-2px);
}

/* ===== FEATURED ALBUM ===== */
.featured-album {
    margin: 5rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(204, 0, 0, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    animation: slideUp 0.8s ease-out 0.6s both;
}

.featured-album > h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
}

.album-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.album-cover img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(204, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 2px solid var(--primary-color);
}

.album-cover img:hover {
    box-shadow: 0 0 50px rgba(204, 0, 0, 0.6);
}

.album-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.release-year {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-style: italic;
}

.album-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.tracks-count {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.track-info, .duration-info {
    position: relative;
    padding-left: 10px;
}

.track-info::before, .duration-info::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ===== BAND STORY ===== */
.band-story {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(26, 26, 26, 0.5);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    animation: slideUp 0.8s ease-out 0.7s both;
}

.band-story h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.band-story p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 5px;
    line-height: 1.9;
}

/* ===== SOCIAL FEED ===== */
.social-feed {
    margin: 4rem 0;
}

.social-feed > h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feed-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feed-item {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(204, 0, 0, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out both;
}

.feed-item:nth-child(1) { animation-delay: 0.8s; }
.feed-item:nth-child(2) { animation-delay: 0.9s; }
.feed-item:nth-child(3) { animation-delay: 1s; }

.feed-item:hover {
    background: linear-gradient(135deg, rgba(26, 26, 26, 1), rgba(10, 10, 10, 1));
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(204, 0, 0, 0.2);
    transform: translateY(-5px);
}

.feed-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.feed-item h4 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.feed-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .feed-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feed-item {
        padding: 1.5rem;
    }

    .feed-item h4 {
        font-size: 1.15rem;
    }

    .feed-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .feed-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feed-item {
        padding: 1rem;
    }

    .feed-date {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .feed-item h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .feed-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* ===== ALBUMS PAGE ===== */
#album-page > h2, #songs-page > h2, #concerts-page > h2, #band-page > h2, #contact-page > h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 2rem 0 3rem 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.album-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(204, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: slideUp 0.6s ease-out both;
}

.album-card:nth-child(1) { animation-delay: 0s; }
.album-card:nth-child(2) { animation-delay: 0.1s; }
.album-card:nth-child(3) { animation-delay: 0.2s; }
.album-card:nth-child(4) { animation-delay: 0.3s; }

.album-card:hover {
    background-color: rgba(10, 10, 10, 0.8);
    border-color: var(--primary-color);
    box-shadow: 0 0 40px rgba(204, 0, 0, 0.4);
    transform: translateY(-10px) rotateZ(2deg);
}

.album-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
    border: 1px solid rgba(204, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.album-card:hover img {
    transform: scale(1.05);
}

.album-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 1rem 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.album-card .year {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.album-card .description {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== SONGS PAGE ===== */
.filter-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 3rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(204, 0, 0, 0.3);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
}

.songs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.song-item {
    padding: 1.5rem;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(204, 0, 0, 0.2);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
}

.song-item:hover {
    background: linear-gradient(90deg, rgba(26, 26, 26, 1), rgba(10, 10, 10, 1));
    border-color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(204, 0, 0, 0.2);
    transform: translateX(10px);
}

.song-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(204, 0, 0, 0.3);
}

.song-details h4 {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.song-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.song-duration {
    color: var(--primary-color);
    font-weight: 600;
}

.song-play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.song-play:hover {
    background: var(--secondary-color);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.5);
    transform: scale(1.1);
}

/* ===== CONCERTS PAGE ===== */
.concerts-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .concerts-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .concerts-list {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
}

.concert-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(204, 0, 0, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.6s ease-out both;
}

.concert-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.1), transparent);
    transition: top 0.3s ease;
    z-index: 0;
}

.concert-card:hover::before::not(.concert-past) {
    top: 0;
}

.concert-card:nth-child(1) { animation-delay: 0s; }
.concert-card:nth-child(2) { animation-delay: 0.2s; }
.concert-card:nth-child(3) { animation-delay: 0.4s; }
.concert-card:nth-child(4) { animation-delay: 0.6s; }
.concert-card:nth-child(5) { animation-delay: 0.8s; }
.concert-card:nth-child(6) { animation-delay: 1.0s; }

.concert-card:hover::not(.concert-past) {
    border-color: var(--primary-color);
    box-shadow: 0 0 40px rgba(204, 0, 0, 0.3);
    transform: translateY(-8px);
}

.concert-link {
    text-decoration: none;
    color: white;
}

.concert-past {
    opacity: 0.75 !important;
    filter: grayscale(0.75);
    /* pointer-events: none; */
}

.concert-info {
    position: relative;
    z-index: 1;
}

.concert-date {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.date-day {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(204, 0, 0, 0.3);
}

.date-info {
    display: flex;
    flex-direction: column;
}

.date-month {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
}

.concert-venue h4 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin: 1rem 0 0.3rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.concert-venue p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.concert-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 1rem 0;
}

.concert-status.sold-out {
    background: var(--text-secondary);
    color: var(--bg-primary);
}

.concert-buy-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    margin-top: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    min-height: 44px;
    font-size: 0.9rem;
}

.concert-buy-btn:hover {
    background: var(--secondary-color);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .concert-card {
        padding: 1.5rem;
    }

    .concert-date {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .date-day {
        font-size: 1.75rem;
    }

    .date-month {
        font-size: 0.85rem;
    }

    .concert-venue h4 {
        font-size: 1.15rem;
        margin: 0.75rem 0 0.2rem 0;
    }

    .concert-venue p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .concert-status {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        margin: 0.75rem 0;
    }

    .concert-buy-btn {
        width: 100%;
        margin-top: 0.75rem;
        padding: 0.75rem 1rem;
    }

    .concert-flyer {
        margin-top: 1rem;
    }

    .concert-flyer-img {
        max-width: 100%;
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .concert-card {
        padding: 1rem;
    }

    .date-day {
        font-size: 1.5rem;
    }

    .date-month,
    .date-info {
        font-size: 0.8rem;
    }

    .concert-venue h4 {
        font-size: 1rem;
        margin: 0.5rem 0 0.15rem 0;
    }

    .concert-venue p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .concert-status {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
        margin: 0.5rem 0;
    }

    .concert-buy-btn {
        width: 100%;
        font-size: 16px;
        min-height: 44px;
        padding: 0.75rem;
    }

    .concert-flyer-img {
        max-height: 250px;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-form, .contact-info {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(204, 0, 0, 0.2);
    border-radius: 8px;
    animation: slideUp 0.6s ease-out;
}

.contact-form h3, .contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(204, 0, 0, 0.2);
    color: var(--text-primary);
    border-radius: 5px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(204, 0, 0, 0.05);
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.2);
}

.info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(204, 0, 0, 0.2);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.info-item p, .info-item a {
    color: var(--text-secondary);
    line-height: 1.8;
}

.info-item a {
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.info-item a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(204, 0, 0, 0.3);
    border-bottom-color: var(--primary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.map-container {
    margin: 4rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(204, 0, 0, 0.2);
    border-radius: 8px;
    animation: slideUp 0.6s ease-out 0.1s both;
}

.map-container h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.1), rgba(153, 0, 0, 0.1));
    border: 2px solid rgba(204, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
    animation: slideUp 0.6s ease-out both;
}

.newsletter h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.newsletter p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    /* max-width: 600px; */
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(204, 0, 0, 0.3);
    color: var(--text-primary);
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.newsletter-form input[type="text"] {
    max-width: 25%;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(204, 0, 0, 0.05);
    box-shadow: 0 0 15px rgba(204, 0, 0, 0.2);
}

.newsletter-form .btn {
    white-space: nowrap;
}

.form-message {
    margin-top: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    min-height: 1.5rem;
}

.form-message.success {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

.form-message.error {
    color: #ffcccc;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border-top: 2px solid var(--primary-color);
    padding: 3rem 2rem 1rem 2rem;
    margin-top: 5rem;
    animation: slideUp 0.6s ease-out both;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(204, 0, 0, 0.3);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(204, 0, 0, 0.2);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .header-content {
        gap: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .logo-text-wrapper {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .logo-img-main {
        height: 30px;
        width: auto;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
    }

    .logo-icon-wrapper {
        min-width: 50px;
    }

    .nav {
        display: none;
    }

    .nav.mobile-active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav ul li {
        width: 100%;
    }

    .nav ul li a {
        display: inline;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(204, 0, 0, 0.1);
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .nav ul li:last-child {
        border-bottom: none;
    }

    .nav ul li:last-child a {
        border-bottom: none;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-logo-img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }

    .hero-icon {
        width: 280px;
        height: 280px;
        max-width: 100%;
    }

    .hero-band-picture img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        margin: 0 -2rem;
        padding: 0 2rem;
    }

    .btn {
        min-height: 48px;
        font-size: 1rem;
        width: 100%;
    }

    .album-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .album-cover img {
        max-width: 250px;
        width: 100%;
    }

    .albums-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .band-grid {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .band-member {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .song-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .song-item > * {
        text-align: left;
    }

    .song-play {
        justify-self: flex-start;
        min-height: 48px;
    }

    .concerts-list {
        grid-template-columns: 1fr;
    }

    .concerts-item {
        min-height: 100%;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input,
    .newsletter-form input[type="text"],
    .newsletter-form button {
        width: 100%;
        max-width: 100%;
        min-height: 48px;
        font-size: 1rem;
    }

    .main-content {
        padding: 0 1rem;
    }

    .featured-album,
    .band-story,
    .contact-form,
    .contact-info,
    .map-container {
        padding: 1.5rem;
    }

    .logo h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .logo .tagline {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .page {
        padding: 2rem 0;
        min-height: auto;
    }

    .feed-items {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .map-iframe {
        width: 100% !important;
        height: 300px !important;
    }

    .band-pictures {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .band-pictures img {
        max-width: 100%;
        height: auto;
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    #album-page > h2,
    #songs-page > h2,
    #concerts-page > h2,
    #contact-page > h2,
    #band-page > h2,
    #discography-page > h2 {
        font-size: 1.6rem;
        margin: 1.5rem 0 1.5rem 0;
    }

    .feed-items {
        grid-template-columns: 1fr;
    }

    .albums-grid {
        grid-template-columns: 1fr;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .logo-img-main {
        height: 25px;
        width: auto;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
    }

    header {
        padding: 0.75rem 0;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .header-content {
        padding: 0.75rem 1rem;
    }

    .nav ul li a {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn {
        min-height: 44px;
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }

    .featured-album,
    .band-story,
    .contact-form,
    .contact-info,
    .map-container {
        padding: 1rem;
    }

    .form-group {
        margin: 0.75rem 0;
    }

    form input,
    form textarea,
    form button {
        font-size: 16px;
        min-height: 44px;
    }

    .band-member {
        padding: 1rem;
    }

    .band-member img {
        width: 100px;
        height: 100px;
        border-width: 2px;
    }

    .band-member-name {
        font-size: 1rem;
    }

    .band-member-role {
        font-size: 0.9rem;
    }

    .band-member-desc {
        font-size: 0.85rem;
    }

    .page {
        padding: 1.5rem 0;
    }

    .newsletter {
        padding: 3rem 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form input[type="text"],
    .newsletter-form button {
        width: 100%;
        max-width: 100%;
        min-height: 44px;
        font-size: 16px;
    }

    .hero-icon {
        width: 200px;
        height: 200px;
        max-width: 100%;
    }

    .concerts-container {
        padding: 0 1rem;
    }

    .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-link {
        display: block;
        padding: 0.75rem 0;
        min-height: 44px;
        text-align: center;
    }
}

/* ===== DESKTOP LAYOUT (769px and up) ===== */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }

    .nav {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: none;
        border: none;
    }

    .nav ul {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        list-style: none;
    }

    .nav ul li {
        width: auto;
    }

    .nav ul li a {
        display: inline-block;
        padding: 0;
        border: none;
        font-size: 1rem;
    }
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
    box-shadow: 0 0 10px rgba(204, 0, 0, 0.5);
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(204, 0, 0, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.2);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-spinner p {
    margin-top: 1.5rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .loading-spinner {
        padding: 2rem;
    }

    .spinner {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }

    .loading-spinner p {
        margin-top: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .loading-spinner {
        padding: 1.5rem;
    }

    .spinner {
        width: 35px;
        height: 35px;
        border-width: 2px;
    }

    .loading-spinner p {
        margin-top: 0.75rem;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
}

/* ===== FUSED ALBUMS & SONGS PAGE ===== */
#discography-page > h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 2rem 0 3rem 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
    animation: slideDown 0.6s ease-out;
}
.discography-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0 0 0;
}

@media (max-width: 768px) {
    .discography-list {
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .discography-list {
        margin: 1.5rem 0;
    }
}

.album-song-block {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(26,26,26,0.8), rgba(10,10,10,0.9));
    border: 1px solid rgba(204,0,0,0.2);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 12px rgba(204,0,0,0.08);
}
.album-song-block h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.album-song-block .song-item {
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .album-song-block {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .album-song-block > div:first-child {
        min-width: 0;
        max-width: 100%;
    }
}
/* ===== INLINE STYLES CONSOLIDATED ===== */

/* HEADER & LOGO STYLES */
.logo-icon-wrapper {
    display: inline-block;
    margin-right: 4px;
}

.logo-icon {
    vertical-align: bottom;
}

.logo-text-wrapper {
    display: inline-block;
    position: relative;
}

.logo-img-main {
    display: block;
    margin: 0 0 2px 0;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.3) 100%);
    box-shadow: -12px -12px 24px rgba(0,0,0,0.4), 12px 12px 24px rgba(0,0,0,0.3);
}

.relative {
    position: relative;
}

/* HERO SECTION STYLES */
.hero-icon {
    display: block;
    margin: 0 auto 24px auto;
}

.hero-logo {
    position: relative;
}

.hero-logo-img {
    display: block;
    margin: 0 auto 24px auto;
}

.hero-band-picture {
    margin: 3rem;
}

/* LATEST ALBUM SHOWCASE */
.latest-album-showcase {
    max-width: 520px;
    margin: 2rem auto;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.latest-album-img {
    border-radius: 8px;
    border: 2px solid #cc0000;
    object-fit: cover;
    box-shadow: 0 0 12px #cc0000AA;
}

.latest-album-info {
    flex: 1;
}

.latest-album-title {
    margin: 0 0 0.3rem 0;
    color: #cc0000;
    font-size: 1.15rem;
}

.latest-album-year {
    color: #aaa;
    font-size: 0.97rem;
    margin-bottom: 0.2rem;
}

.latest-album-description {
    color: #aaa;
    font-size: 0.92rem;
    margin-bottom: 0.7rem;
}

.latest-album-tracks {
    margin-bottom: 0.5rem;
}

/* BUTTON & TEXT ALIGNMENT */
.button-center {
    text-align: center;
    margin-bottom: 0.7rem;
}

.btn-compact {
    font-size: 1rem;
    padding: 0.5rem 1.3rem;
}

/* WHO WE ARE CARD */
.band-single-card {
    width: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.8), rgba(10,10,10,0.9));
    border: 1px solid rgba(204,0,0,0.2);
    border-radius: 12px;
    padding: 2.5rem 2rem 2.2rem 2rem;
    box-shadow: 0 2px 16px #cc000033;
}

.band-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-bottom: 2.2rem;
    flex-wrap: wrap;
}

/* ALBUM/SONGS PAGE STYLES */
.album-block-styled {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.album-info-wrapper {
    flex: 0 0 auto;
}

.album-info-width {
    max-width: 380px;
    margin: 0 0.5rem;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .album-block-styled {
        gap: 1rem;
    }

    .album-cover-real,
    .album-cover-placeholder {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {

    .album-block-styled {
        display: block;
        gap: 1rem;
    }

    .album-info-width {
        margin: 0;
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .songs-wrapper {
        width: 100%;
        grid-column: 1 / -1;
    }

    .cover-wrapper {
        display: block;
        text-align: center;
        grid-column: 1;
        grid-row: 1;
    }

    .info-text-wrapper {
        display: block;
        margin: 0;
        min-width: auto;
        max-width: 100%;
    }

    .album-title {
        font-size: 1.15rem;
        margin-top: 0;
    }

    .album-cover-real,
    .album-cover-placeholder {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {

    .logo-img-main {
        margin: 0 auto 2px auto;
    }

    .album-block-styled {
        gap: 1rem;
        display: block;
    }
    
    .album-cover-real,
    .album-cover-placeholder {
        width: 100px;
        height: 100px;
        margin: 0 auto 0.75rem auto;
    }

    .album-title {
        font-size: 1rem;
    }

    .album-meta,
    .album-duration {
        font-size: 0.85rem;
    }

    .album-desc {
        font-size: 0.85rem;
        margin: 0.5rem 0 1rem 0;
    }
}

.cover-wrapper {
    display: inline-block;
    vertical-align: middle;
}

.info-text-wrapper {
    display: inline-block;
    vertical-align: middle;
    max-width: 320px;
    margin-left: 18px;
}

.album-cover-real {
    width: 140px;
    height: 140px;
    border-radius: 8px;
    border: 2px solid #cc0000;
    object-fit: cover;
    box-shadow: 0 0 20px #cc0000AA;
    margin-bottom: 1rem;
}

.album-cover-placeholder {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #cc0000, #330000);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    border: 2px solid #cc0000;
    margin-bottom: 1rem;
}

.album-title {
    margin: 0 0 0.3rem 0;
    color: #cc0000;
    font-size: 1.3rem;
}

.album-meta {
    color: #aaa;
    font-size: 0.97rem;
    margin-bottom: 0.2rem;
}

.album-duration {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
}

.album-desc {
    color: #aaa;
    font-size: 0.92rem;
    display: block;
    width: 100%;
    margin: 0.7rem 0 1.2rem 0;
}

.songs-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.song-item-styled {
    display: grid;
    grid-template-columns: 20px 1fr 1fr 40px 40px;
    align-items: center;
    background: linear-gradient(90deg, rgba(26,26,26,0.8), rgba(10,10,10,0.9));
    border-left: 4px solid #cc0000;
    border-radius: 5px;
    padding: 0.4rem 1.4rem 0.4rem 0.4rem;
    font-size: 1rem;
}

.song-number {
    margin-left: 10px;
    font-size: 0.95rem;
    font-weight: 900;
    color: #cc0000;
    text-shadow: 0 0 10px #cc0000AA;
}

.song-details h4 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    display: inline;
}

.song-duration {
    color: #aaa;
    font-size: 0.92rem;
    text-align: right;
}

.social-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    min-width: 40px;
    height: 40px;
}

@media (max-width: 768px) {
    .social-link-icon {
        min-width: 36px;
        height: 36px;
    }

    .social-link-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .social-link-icon {
        min-width: 32px;
        height: 32px;
    }

    .social-link-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .song-item-styled {
        grid-template-columns: 20px 1fr 50px 40px 40px;
        padding: 0.5rem 0.8rem;
        gap: 0.5rem;
    }

    .song-number {
        margin-left: 5px;
    }

    .song-duration {
        font-size: 0.85rem;
    }

    .social-link-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .song-item-styled {
        grid-template-columns: 20px 1fr 35px 35px;
        padding: 0.5rem 0.5rem;
        gap: 0.3rem;
    }

    .song-details h4 {
        font-size: 0.95rem;
    }

    .song-duration {
        display: none;
    }

    .social-link-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* LOADING SPINNER STATE */
.loading-visible {
    display: flex;
}

.loading-hidden {
    display: none;
}

/* CONCERT FLYER STYLING */
.concert-flyer-img {
    max-width: 400px;
    max-height: 400px;
    width: auto;
    height: auto;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 12px #cc0000AA;
}

/* ALBUM GRID COVER */
.album-cover-grid {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid rgba(204,0,0,0.3);
    object-fit: cover;
    background: #222;
}

/* MAP IFRAME */
.map-iframe {
    border: 2px solid #880000cc;
    border-radius: 12px;
}
/* ===== INLINE STYLE REPLACEMENTS ===== */
.error-message {
    text-align: center;
    color: #cc0000;
}

.loading-placeholder {
    text-align: center;
    color: #aaa;
}

.separator-bullet {
    margin: 0 8px;
}

.spotify-embed-rounded {
    border-radius: 12px;
}

.arrow-small {
    font-size: 0.95em;
}