:root {
    --bg-color: #050505;
    /* Slightly softer than pure black */
    --text-color: #f5f5f7;
    --accent-color: #d4af37;
    /* Metallic Gold */
    --secondary-bg: #111111;
    --gray-text: #a1a1a6;
    --apple-blue: #2997ff;
    --font-main: 'Inter', "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

body.apple-style {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.7;
    /* Increased line-height for readability */
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    /* Slightly tighter container for readability */
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* Header */
.header {
    height: 52px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 2000;
    background: rgba(5, 5, 5, 0.85);
    /* Matches new bg */
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 22px;
}

.logo {
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: 1.1rem;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 11px;
    color: #e2e2e5;
    opacity: 0.8;
    transition: opacity 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.nav-links a:hover {
    opacity: 1;
    color: #fff;
}

/* Hero Section - Simplified & Elegant */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    transform: scale(1.05);
    /* Slight scale for potential parallax */
    transition: transform 0.5s ease-out;
    /* Smooth float */
}

.hero-overlay-refined {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 20%, rgba(5, 5, 5, 0.6) 90%);
}

.hero-text-content {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: -5vh;
    /* Visual center adjustment */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 6rem;
    /* Toned down from 11vw for elegance */
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 1.5rem 0;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subline {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* About Section */
.section.about {
    padding: 120px 0;
    background: #0b0b0b;
}

.about-text p {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--gray-text);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-style: italic;
}

/* Members Section - Zig Zag Layout */
.section-badge {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.member-profile {
    display: flex;
    align-items: center;
    /* Center vertically specifically */
    gap: 80px;
    margin-bottom: 150px;
    /* Space between members */
}

.member-profile:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

/* Alternating Layout */
.member-profile.alt-layout {
    flex-direction: row-reverse;
}

.member-image-wrapper {
    flex: 0 0 45%;
    /* Occupies 45% of width */
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.member-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.member-image-wrapper:hover img {
    transform: scale(1.03);
}

.member-bio {
    flex: 1;
}

.member-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.member-en {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-text);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.member-instrument {
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 600;
}

.member-desc {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-weight: 300;
}

/* Discography - Clean Showcase */
.album-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    /* Space between art and text */
    padding: 60px 0;
}

.album-art-wrapper {
    width: 100%;
    max-width: 500px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.album-art-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease-out;
}

.album-detail-content {
    text-align: center;
    max-width: 700px;
}

.album-title-main {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.album-release {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.album-desc-main {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Buttons (Apple Style) */
.apple-btn {
    background: #fff;
    color: #000;
    padding: 14px 32px;
    border-radius: 99px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s, background 0.2s;
    font-size: 0.9rem;
}

.apple-btn:hover {
    transform: scale(1.02);
    background: #f5f5f7;
}

.apple-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 13px 31px;
    /* Visual balance */
    border-radius: 99px;
    font-weight: 600;
    display: inline-block;
    margin-left: 15px;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.apple-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Schedule */
.schedule-table {
    margin-top: 50px;
    border-top: 1px solid #222;
}

.schedule-row {
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    /* Simplified grid */
    padding: 30px 0;
    border-bottom: 1px solid #222;
    align-items: center;
    transition: background 0.2s;
}

.schedule-row:hover {
    background: #0f0f0f;
}

.s-date {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
}

.s-venue {
    font-size: 1.3rem;
    font-weight: 500;
    padding-left: 2rem;
}

.s-venue .city {
    color: #666;
    font-size: 0.9rem;
    margin-left: 15px;
    font-weight: 400;
}

.s-link a {
    color: var(--apple-blue);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Contact & Footer */
.contact-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1rem;
}

.big-email {
    font-size: 2rem;
    color: var(--accent-color);
    display: block;
    margin-top: 30px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.big-email:hover {
    opacity: 0.8;
}

.footer-apple {
    padding: 60px 0;
    background: #000;
    color: #555;
    font-size: 0.8rem;
    border-top: 1px solid #111;
}

/* Responsive */
@media (max-width: 768px) {

    .member-profile,
    .member-profile.alt-layout {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 100px;
    }

    .member-image-wrapper {
        width: 100%;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .album-title-main {
        font-size: 2.8rem;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .big-email {
        font-size: 1.4rem;
    }

    .schedule-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .s-venue {
        padding-left: 0;
    }
}