* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-main: #050505;
    --bg-secondary: #101010;
    --bg-panel: #161616;
    --bg-panel-2: #1d1d1d;
    --border-color: #2b2b2b;
    --text-main: #f4f4f4;
    --text-soft: #b7b7b7;
    --red-main: #a40000;
    --red-hover: #d10000;
    --gold: #d2aa45;
    --white: #ffffff;
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top, rgba(120, 0, 0, 0.18), transparent 35%),
        linear-gradient(180deg, #030303 0%, #0c0c0c 100%);
    color: var(--text-main);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: all 0.25s ease;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.site-header {
    position: relative;
    min-height: 260px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.88)),
        linear-gradient(135deg, #1b0000 0%, #050505 50%, #220000 100%);
    border-bottom: 3px solid var(--red-main);
    overflow: hidden;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(180, 0, 0, 0.22), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(255, 180, 0, 0.08), transparent 20%);
    pointer-events: none;
}

.header-overlay {
    position: relative;
    z-index: 1;
}

.branding {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-height: 260px;
}

.logo-wrap {
    flex-shrink: 0;
}

.logo {
    width: 120px;
    border: 2px solid rgba(164, 0, 0, 0.8);
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    padding: 0.5rem;
    box-shadow: 0 0 20px rgba(164, 0, 0, 0.25);
}

.brand-copy {
    max-width: 700px;
}

.site-name {
    font-size: 3rem;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 0 0 20px rgba(164, 0, 0, 0.28);
}

.site-description {
    margin-top: 0.7rem;
    font-size: 1.05rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(8, 8, 8, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--red-main);
    backdrop-filter: blur(8px);
}

.nav-inner {
    display: flex;
    align-items: center;
    min-height: 68px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 1rem;
    color: var(--white);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 10px;
    border: 1px solid transparent;
}

.main-nav a:hover {
    background: linear-gradient(180deg, var(--red-hover) 0%, var(--red-main) 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(164, 0, 0, 0.28);
}

.content-grid {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 2rem;
    padding: 2.25rem 0 3rem;
}

.main-content,
.sidebar {
    min-width: 0;
}

.hero,
.card,
.widget,
.admin-card,
.admin-login-box,
.admin-panel {
    background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 3rem;
    margin-bottom: 2rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(164, 0, 0, 0.18), transparent 48%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(210, 170, 69, 0.35);
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(210, 170, 69, 0.06);
}

.hero h1 {
    font-size: 3.3rem;
    line-height: 1.05;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero p {
    max-width: 720px;
    color: var(--text-soft);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.35rem;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: all 0.25s ease;
}

.btn-primary {
    background: linear-gradient(180deg, var(--red-hover) 0%, var(--red-main) 100%);
    color: var(--white);
    box-shadow: 0 10px 22px rgba(164, 0, 0, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(164, 0, 0, 0.32);
}

.btn-secondary {
    border: 1px solid rgba(210, 170, 69, 0.45);
    color: var(--gold);
    background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
    background: rgba(210, 170, 69, 0.08);
    color: var(--white);
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-bottom: 1.8rem;
}

.home-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
    margin-top: 1.8rem;
}

.card,
.widget {
    padding: 1.6rem;
}

.card h1,
.card h2,
.widget h3 {
    line-height: 1.2;
}

.card h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--white);
}

.card h2 {
    margin-bottom: 0.9rem;
    font-size: 1.35rem;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 0.4px;
}

.widget h3 {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--gold);
    text-transform: uppercase;
}

.card p,
.widget p {
    color: var(--text-soft);
}

.feature-card {
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(164, 0, 0, 0.45);
}

.text-link {
    display: inline-block;
    /* margin-top: 1rem; */
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.88rem;
    letter-spacing: 0.6px;
}

.text-link:hover {
    color: var(--white);
}

.home-highlight {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-left: 4px solid var(--red-main);
}

.home-highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(164, 0, 0, 0.12), transparent 55%);
    pointer-events: none;
}

.highlight-copy {
    position: relative;
    z-index: 1;
}

.dark-card {
    background: linear-gradient(180deg, #151515 0%, #0f0f0f 100%);
}

.sidebar .widget + .widget {
    margin-top: 1.5rem;
}

.site-footer {
    margin-top: 2rem;
    background:
        linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
    border-top: 1px solid var(--red-main);
    color: #b0b0b0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
}

.footer-column h3 {
    margin-bottom: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.8px;
}

.footer-column p {
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 420px;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.footer-links li {
    color: #cfcfcf;
}

.footer-links a {
    color: #cfcfcf;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.28);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.footer-bottom-inner p {
    color: #8f8f8f;
    font-size: 0.95rem;
}

.contact-form,
.admin-login-box form {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
}

input,
textarea,
button {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
}

input,
textarea {
    border: 1px solid #333;
    background: #0f0f0f;
    color: #fff;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: var(--red-main);
    box-shadow: 0 0 0 3px rgba(164, 0, 0, 0.16);
}

button {
    border: none;
    background: linear-gradient(180deg, var(--red-hover) 0%, var(--red-main) 100%);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    cursor: pointer;
}

button:hover {
    box-shadow: 0 10px 22px rgba(164, 0, 0, 0.28);
}

.alert {
    padding: 0.9rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.success {
    background: #12351f;
    color: #d9ffe3;
    border: 1px solid #1f5c35;
}

.error {
    background: #3a1818;
    color: #ffd9d9;
    border: 1px solid #6d2a2a;
}

.admin-body {
    background:
        radial-gradient(circle at top, rgba(164, 0, 0, 0.18), transparent 30%),
        linear-gradient(180deg, #050505 0%, #101010 100%);
}

.admin-login-box {
    width: min(430px, 92%);
    margin: 5rem auto;
    padding: 2rem;
}

.admin-login-box h1 {
    margin-bottom: 1rem;
    color: var(--gold);
    text-transform: uppercase;
}

.admin-panel {
    width: min(1150px, 92%);
    margin: 2rem auto;
    padding: 2rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-header h1 {
    color: var(--gold);
    text-transform: uppercase;
}

.admin-header a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    background: var(--red-main);
    color: var(--white);
    font-weight: 700;
}

.admin-header a:hover {
    background: var(--red-hover);
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.admin-card {
    padding: 1.4rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-card:hover {
    transform: translateY(-3px);
    border-color: rgba(210, 170, 69, 0.4);
    color: var(--gold);
}

@media (max-width: 1000px) {
    .home-grid {
        grid-template-columns: 1fr;
    }

    .home-bottom-grid {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .branding {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 2rem 0;
    }

    .site-name {
        font-size: 2.2rem;
    }

    .hero {
        padding: 2rem;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        padding: 1rem 0;
    }

    .main-nav a {
        width: 100%;
        justify-content: flex-start;
    }
}

.members-page-intro {
    margin-bottom: 2.2rem;
    padding: 2rem;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 0.9rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(210, 170, 69, 0.08);
    border: 1px solid rgba(210, 170, 69, 0.25);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.section-lead {
    max-width: 850px;
    margin-top: 1rem;
    font-size: 1.08rem;
    color: var(--text-soft);
}

.members-grid {
    display: grid;
    gap: 2rem;
    margin-top: 1rem;
}

.member-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.member-image-wrap {
    min-height: 420px;
    max-height: 460px;
    overflow: hidden;
    background: linear-gradient(180deg, #250000 0%, #0d0d0d 100%);
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.35s ease;
}

.member-card:hover .member-image {
    transform: scale(1.03);
}

.member-content {
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-role {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(210, 170, 69, 0.08);
    border: 1px solid rgba(210, 170, 69, 0.25);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.member-content h2 {
    margin-bottom: 1.2rem;
    color: var(--white);
    font-size: 2rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.member-content p {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.member-content p + p {
    margin-top: 1rem;
}

.member-content .text-link {
    margin-top: 1.4rem;
}

@media (max-width: 900px) {
    .member-card {
        grid-template-columns: 1fr;
    }

    .member-image-wrap {
        min-height: 280px;
        max-height: 320px;
    }

    .member-content {
        padding: 1.5rem;
    }

    .member-content h2 {
        font-size: 1.6rem;
    }
}

.member-single-hero {
    padding: 2rem;
    margin-bottom: 2rem;
}

.member-single-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 2rem;
    align-items: center;
}

.member-single-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #250000 0%, #0d0d0d 100%);
    min-height: 420px;
    max-height: 520px;
}

.member-single-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.member-single-content h1 {
    margin: 1rem 0;
    font-size: 3rem;
    line-height: 1.05;
    color: var(--white);
    text-transform: uppercase;
}

.member-single-lead {
    max-width: 700px;
    color: var(--text-soft);
    font-size: 1.08rem;
}

.member-bio-card {
    padding: 2rem;
}

.member-bio-card h2 {
    margin-bottom: 1.2rem;
}

.member-bio-card p {
    line-height: 1.8;
    color: var(--text-soft);
}

.member-bio-card p + p {
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .member-single-grid {
        grid-template-columns: 1fr;
    }

    .member-single-image-wrap {
        min-height: 300px;
        max-height: 380px;
    }

    .member-single-content h1 {
        font-size: 2.2rem;
    }
}

.page-hero {
    padding: 2.2rem;
    margin-bottom: 2rem;
}

.page-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-card {
    padding: 2rem;
}

.content-card-wide {
    margin-top: 1.5rem;
}

.content-card h2 {
    margin-bottom: 1rem;
}

.content-card p {
    color: var(--text-soft);
    line-height: 1.8;
}

.content-card p + p {
    margin-top: 1rem;
}

.discography-grid {
    display: grid;
    gap: 2rem;
    margin-top: 1rem;
}

.discography-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.discography-cover {
    min-height: 320px;
    background: linear-gradient(180deg, #240000 0%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.placeholder-cover span {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

.discography-content {
    padding: 2rem;
}

.discography-type {
    display: inline-block;
    margin-bottom: 0.9rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(210, 170, 69, 0.08);
    border: 1px solid rgba(210, 170, 69, 0.25);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.discography-content h2 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.9rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.discography-content p {
    color: var(--text-soft);
    line-height: 1.8;
}

.discography-meta {
    list-style: none;
    margin-top: 1.2rem;
    display: grid;
    gap: 0.6rem;
}

.discography-meta li {
    color: var(--text-soft);
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.discography-meta strong {
    color: var(--white);
}

@media (max-width: 900px) {
    .page-content-grid {
        grid-template-columns: 1fr;
    }

    .discography-card {
        grid-template-columns: 1fr;
    }

    .discography-cover {
        min-height: 240px;
    }
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.8rem;
    margin-top: 1rem;
}

.contact-info-card,
.contact-form-card {
    padding: 2rem;
}

.contact-info-card h2,
.contact-form-card h2 {
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-soft);
    line-height: 1.8;
}

.contact-info-list {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
}

.contact-info-item {
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-label {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-card .contact-form {
    gap: 1.2rem;
}

.contact-form-card textarea {
    resize: vertical;
    min-height: 180px;
}

@media (max-width: 900px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(164, 0, 0, 0.45);
}

.blog-card-image {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    background: linear-gradient(180deg, #240000 0%, #0d0d0d 100%);
}

.placeholder-blog-image span {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-category {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 0.9rem;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: rgba(210, 170, 69, 0.08);
    border: 1px solid rgba(210, 170, 69, 0.25);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.blog-card-content h2 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.2;
    color: var(--white);
    text-transform: uppercase;
}

.blog-card-content p {
    color: var(--text-soft);
    line-height: 1.75;
}

.blog-card-content .text-link {
    margin-top: auto;
    padding-top: 1.2rem;
}

@media (max-width: 1000px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.home-hero {
    position: relative;
    min-height: 72vh;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    background:
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.82)),
        linear-gradient(135deg, #1b0000 0%, #050505 50%, #220000 100%);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(180, 0, 0, 0.22), transparent 28%),
        radial-gradient(circle at 80% 35%, rgba(210, 170, 69, 0.08), transparent 18%);
    pointer-events: none;
}

.home-hero-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 72vh;
    padding: 4rem;
}

.home-hero-content {
    max-width: 760px;
}

.home-hero-content h1 {
    margin: 0 0 1rem;
    font-size: 4.3rem;
    line-height: 1;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(164, 0, 0, 0.25);
}

.home-hero-lead {
    max-width: 700px;
    color: var(--text-soft);
    font-size: 1.15rem;
    line-height: 1.8;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.8rem;
}

.home-intro {
    padding: 2rem;
    margin-bottom: 2rem;
}

.home-intro h2 {
    margin-bottom: 1rem;
}

.home-intro p {
    color: var(--text-soft);
    line-height: 1.85;
    max-width: 950px;
}

.home-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.home-feature-card,
.home-news-card,
.home-member-card {
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.home-feature-card,
.home-news-card {
    padding: 1.8rem;
}

.home-feature-card h2,
.home-news-card h3 {
    margin: 1rem 0;
    color: var(--white);
    line-height: 1.2;
    text-transform: uppercase;
}

.home-feature-card p,
.home-news-card p {
    color: var(--text-soft);
    line-height: 1.8;
}

.home-feature-label {
    display: inline-block;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(210, 170, 69, 0.08);
    border: 1px solid rgba(210, 170, 69, 0.25);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.home-band-section {
    padding: 2rem;
    margin-bottom: 2rem;
}

.home-band-heading {
    margin-bottom: 1.8rem;
}

.home-band-heading h2 {
    margin: 0.8rem 0 1rem;
}

.home-band-heading p {
    color: var(--text-soft);
    max-width: 850px;
    line-height: 1.8;
}

.home-members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.home-member-card {
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.home-member-card:hover {
    transform: translateY(-4px);
    border-color: rgba(164, 0, 0, 0.45);
}

.home-member-image-wrap {
    min-height: 300px;
    max-height: 320px;
    overflow: hidden;
    background: linear-gradient(180deg, #250000 0%, #0d0d0d 100%);
}

.home-member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.35s ease;
}

.home-member-card:hover .home-member-image {
    transform: scale(1.03);
}

.home-member-content {
    padding: 1.4rem;
}

.home-member-content h3 {
    margin: 1rem 0 0.7rem;
    color: var(--white);
    font-size: 1.35rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.home-news-section {
    margin-bottom: 2rem;
}

.home-news-header {
    margin-bottom: 1.2rem;
}

.home-news-header h2 {
    margin-top: 0.8rem;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.home-cta {
    padding: 2.4rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.home-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(164, 0, 0, 0.14), transparent 55%);
    pointer-events: none;
}

.home-cta-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.home-cta-content h2 {
    margin: 0.8rem 0 1rem;
}

.home-cta-content p {
    margin-bottom: 1.4rem;
    color: var(--text-soft);
    line-height: 1.8;
}

@media (max-width: 1100px) {
    .home-feature-grid,
    .home-members-grid,
    .home-news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .home-hero {
        min-height: auto;
    }

    .home-hero-overlay {
        min-height: auto;
        padding: 2.2rem 1.5rem;
    }

    .home-hero-content h1 {
        font-size: 2.7rem;
    }

    .home-hero-lead {
        font-size: 1rem;
    }

    .home-intro,
    .home-band-section,
    .home-cta {
        padding: 1.5rem;
    }
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-widget {
    padding: 1.5rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #171717 0%, #101010 100%);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sidebar-widget p {
    color: var(--text-soft);
    line-height: 1.75;
}

.sidebar-kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: rgba(210, 170, 69, 0.08);
    border: 1px solid rgba(210, 170, 69, 0.25);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.sidebar-intro-widget h3 {
    margin-bottom: 0.9rem;
    color: var(--white);
    font-size: 1.3rem;
    line-height: 1.2;
}

.sidebar-links,
.sidebar-posts {
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.sidebar-links li,
.sidebar-posts li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}

.sidebar-links li:last-child,
.sidebar-posts li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-links a,
.sidebar-posts a {
    color: #d5d5d5;
    text-decoration: none;
    line-height: 1.6;
    transition: 0.25s ease;
}

.sidebar-links a:hover,
.sidebar-posts a:hover {
    color: var(--gold);
}

.sidebar-contact-widget p {
    margin-bottom: 1.2rem;
}

.sidebar-btn {
    width: 100%;
    justify-content: center;
}

.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.admin-login-box {
    width: min(460px, 100%);
    padding: 2rem;
}

.admin-login-text {
    margin: 1rem 0 1.5rem;
    color: var(--text-soft);
    line-height: 1.8;
}

.admin-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem 1.2rem;
}

.admin-sidebar-brand {
    margin-bottom: 2rem;
}

.admin-sidebar-kicker {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.admin-sidebar-brand h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.admin-sidebar-brand p {
    color: var(--text-soft);
    line-height: 1.7;
}

.admin-sidebar-nav {
    display: grid;
    gap: 0.75rem;
}

.admin-sidebar-nav a {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    color: #d8d8d8;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    transition: 0.25s ease;
}

.admin-sidebar-nav a:hover {
    color: var(--white);
    border-color: rgba(164, 0, 0, 0.35);
    background: rgba(164, 0, 0, 0.12);
}

.admin-main {
    padding: 2rem;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.admin-topbar h1 {
    margin-top: 0.8rem;
    color: var(--white);
    text-transform: uppercase;
}

.admin-topbar-user {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.admin-dashboard-card {
    padding: 1.7rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.admin-dashboard-card:hover {
    transform: translateY(-4px);
    border-color: rgba(164, 0, 0, 0.35);
}

.admin-dashboard-card h2 {
    margin-bottom: 1rem;
    color: var(--gold);
    text-transform: uppercase;
}

.admin-dashboard-card p {
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 1rem;
}

@media (max-width: 980px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.admin-table-wrap {
    overflow-x: auto;
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 850px;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-table th {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.8px;
    background: rgba(255, 255, 255, 0.02);
}

.admin-table td {
    color: var(--text-soft);
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.admin-actions form {
    display: inline-block;
    margin: 0;
}

.admin-form-card {
    padding: 2rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.admin-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-no-image {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.admin-delete-btn {
    padding: 0;
    background: none;
    border: none;
    color: #e94747;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    width: auto;
    display: inline;
}

.admin-delete-btn:hover {
    color: #eadcdc;
    box-shadow: none;
    transform: none;
}

.admin-current-image {
    margin: 0.5rem 0 1rem;
}

.admin-current-image p {
    margin-bottom: 0.8rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
}

.admin-edit-image {
    width: 180px;
    max-width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: #111;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #222;
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1rem;
}

.blog-single-card {
    max-width: 800px;
    margin: auto;
}

.blog-single-image {
    width: 100%;
    border-radius: 12px;
    margin: 1rem 0;
}

.blog-content {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}