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

:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --text-dim: #a0a0a0;
    --accent-pink: #ff007f;
    --accent-cyan: #00f3ff;
    --accent-purple: #833ab4;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --placeholder-bg: linear-gradient(135deg, #1a0b2e 0%, #050505 100%);
    --placeholder-pattern: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 0, transparent 50%);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --section-padding: 100px 10%;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 10%;
    z-index: 1000;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 15px 10%;
    background: rgba(5, 5, 5, 0.9);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

nav .logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li {
    margin-left: 40px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    opacity: 0.8;
}

nav ul li a:hover {
    color: var(--accent-cyan);
    opacity: 1;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, #1a0b2e 0%, #050505 100%);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.05;
    animation: rotate 60s linear infinite;
}

#hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    margin-bottom: 5px;
    letter-spacing: -2px;
    line-height: 1;
    background: linear-gradient(180deg, #fff 0%, #aaa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

#hero p {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--accent-cyan);
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 20px;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-dim);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

/* Section Styling */
section {
    padding: var(--section-padding);
}

h2.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 60px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-pink), var(--accent-cyan));
}

/* Live & News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.news-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.05);
}

.card-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a0b2e 0%, #050505 100%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 0, transparent 50%);
    background-size: cover, 20px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-pink);
    color: #fff;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 900;
    border-radius: 4px;
    letter-spacing: 1px;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.75rem;
    color: var(--accent-cyan);
    margin-bottom: 8px;
    font-weight: 700;
}

.news-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Live & News Section (Cards) */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.news-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.05);
}

.card-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a0b2e 0%, #050505 100%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 0, transparent 50%);
    background-size: cover, 20px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
}

.live-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-pink);
    color: #fff;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 900;
    border-radius: 4px;
    letter-spacing: 1px;
    z-index: 1;
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.btn-sm {
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-ticket {
    background: var(--accent-purple);
    color: #fff;
    border: 1px solid var(--accent-purple);
}

.btn-ticket:hover {
    background: transparent;
    color: var(--accent-purple);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Schedule Section */
#schedule {
    background: #080808;
}

.schedule-container {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
}

.schedule-month {
    margin-bottom: 40px;
}

.schedule-month h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
    display: inline-block;
    padding-right: 20px;
}

.schedule-item {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.schedule-item span {
    font-weight: 700;
    margin-right: 15px;
}

.schedule-footer {
    margin-top: 60px;
    text-align: center;
    padding: 30px;
    background: var(--glass-bg);
    border-radius: 15px;
    font-size: 1rem;
    border: 1px dashed var(--glass-border);
}

.schedule-footer a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 700;
}

/* Flyer Grid */
.flyer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.flyer-card {
    background: #fff;
    color: #000;
    border-radius: 40px;
    overflow: hidden;
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.flyer-img {
    width: 100%;
    aspect-ratio: 3/4;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background: var(--placeholder-bg);
}

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

.flyer-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.flyer-card .venue {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.flyer-info {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.flyer-links {
    margin: 20px 0;
}

.flyer-links a {
    color: #333;
    font-weight: 700;
    text-decoration: underline;
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.flyer-cast {
    font-size: 0.75rem;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* Profile Section */
#profile {
    background: #0a0a0a;
}

.profile-container {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.profile-image {
    flex: 1;
    min-width: 300px;
    aspect-ratio: 1/1;
    background: linear-gradient(45deg, #111, #222);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5);
    transition: all 0.5s ease;
}

.profile-image:hover img {
    filter: grayscale(0);
    scale: 1.05;
}

.profile-content {
    flex: 1.5;
    min-width: 300px;
}

.profile-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.profile-content p {
    margin-bottom: 20px;
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.8;
}

.profile-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.tag {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.3s ease;
}

.tag:hover {
    border-color: var(--accent-pink);
    color: var(--accent-pink);
}

/* Discography Section */
.disco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.album-card {
    text-align: center;
    transition: all 0.4s ease;
}

.album-art {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #1a0b2e 0%, #050505 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0, rgba(255, 255, 255, 0.01) 1px, transparent 0, transparent 10%);
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
    align-items: center;
}

.album-card:hover .album-art {
    border-color: var(--accent-cyan);
    transform: scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 243, 255, 0.15);
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.album-card:hover .album-art img {
    transform: scale(1.1);
}

.album-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.album-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Footer Section */
footer {
    padding: 80px 10%;
    background: #050505;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.social-link:hover {
    opacity: 1;
    color: var(--accent-cyan);
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(131, 58, 180, 0.3));
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 5%;
    }

    #hero h1 {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }

    nav ul li {
        margin-left: 20px;
    }

    nav ul li a {
        font-size: 0.75rem;
    }

    #hero h1 {
        font-size: 4rem;
    }

    #hero p {
        letter-spacing: 4px;
        font-size: 0.9rem;
    }

    .profile-container {
        flex-direction: column;
        text-align: center;
    }

    .profile-content h3 {
        font-size: 1.8rem;
    }

    .profile-tags {
        justify-content: center;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .disco-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 3rem;
    }

    nav .logo {
        font-size: 1.4rem;
    }

    nav ul {
        display: none;
    }
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    width: 95%;
    max-width: 700px;
    padding: 30px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-flex {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.modal-flyer-thumb {
    flex: 0 0 200px;
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.modal-flyer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    flex: 1;
}

@media (max-width: 600px) {
    .modal-flex {
        flex-direction: column;
        gap: 20px;
    }

    .modal-flyer-thumb {
        flex: 0 0 auto;
        width: 150px;
        margin: 0 auto;
    }
}

.modal-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.btn-stream {
    background: var(--accent-cyan);
    color: #000;
    border: 1px solid var(--accent-cyan);
}

.btn-stream:hover {
    background: transparent;
    color: var(--accent-cyan);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dim);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-pink);
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--accent-cyan);
}

.modal-date {
    font-weight: 700;
    color: var(--accent-pink);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.modal-body {
    margin-bottom: 30px;
}

.modal-info-item {
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    gap: 10px;
}

.modal-info-item strong {
    color: var(--accent-cyan);
}

.modal-cast {
    font-size: 0.9rem;
    color: var(--text-dim);
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    margin-top: 20px;
}

/* Make schedule items interactive */
.schedule-item {
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: var(--glass-bg);
    transform: translateX(10px);
    color: var(--accent-pink);
}

.placeholder-pattern {
    background: var(--placeholder-bg), var(--placeholder-pattern);
    background-size: cover, 20px 20px;
}

.modal-liner {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.modal-liner-desc {
    margin-bottom: 15px;
    opacity: 0.85;
}

.modal-tracklist {
    margin-top: 10px;
}

.modal-tracklist h4 {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    opacity: 0.8;
}

.modal-tracklist ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 6px 20px;
}

.modal-tracklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.2s ease;
}

.modal-tracklist li:hover {
    color: #fff;
}

.track-num {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--accent-pink);
    min-width: 20px;
    opacity: 0.8;
}

.track-name {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* --- SNS Follow Bar --- */
.sns-follow-bar {
    padding: 30px 0;
    background: linear-gradient(90deg, transparent, var(--glass-bg), transparent);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin: 40px 0;
}

.sns-follow-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.sns-btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-main);
    text-decoration: none;
    min-width: 140px;
    text-align: center;
}

.sns-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.sns-btn.tiktok:hover {
    background: #000;
    color: #fff;
    border-color: #ff0050;
    box-shadow: 0 0 15px #ff0050;
}

.sns-btn.x-twitter:hover {
    background: #000;
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.sns-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border-color: transparent;
}

.sns-btn.youtube:hover {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
    box-shadow: 0 0 15px #ff0000;
}

/* --- Produce Work Consistency --- */
#produce-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

#produce-grid .album-card {
    text-align: center;
}

#produce-grid .album-art {
    background: var(--placeholder-bg), var(--placeholder-pattern);
    background-size: cover, 15px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    aspect-ratio: 1/1;
    font-size: 3rem;
    border: 1px solid var(--glass-border);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

#produce-grid .album-card:hover .album-art {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--neon-glow);
    border-color: var(--accent-pink);
}

/* --- Modal Refinement --- */
.modal-actions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-flyer-thumb {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.modal-flyer-thumb img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: zoom-in;
}

.btn-stream {
    background: var(--accent-cyan) !important;
    color: #000 !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    #produce-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .modal-flex {
        flex-direction: column;
    }

    .modal-flyer-thumb {
        min-width: 100%;
        margin-bottom: 20px;
    }

    .sns-btn {
        min-width: 120px;
        font-size: 0.8rem;
    }

    .schedule-item {
        font-size: 0.85rem;
        padding: 12px 10px;
    }
}

/* Mobile menu could be added here */
/* --- HAMBURGER MENU --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 5, 20, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 1000;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

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

    /* Hamburger Animation to X */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* --- Dynamic Title Refinements --- */
.title-sm {
    font-size: 0.95rem !important;
    /* Slightly smaller for complex titles */
    line-height: 1.2 !important;
}

.album-card h4.title-sm,
.flyer-card h3.title-sm {
    letter-spacing: 0;
}

/* --- Fan Club & LINE Section --- */
#fc-line {
    padding: 60px 5%;
    background: rgba(255, 255, 255, 0.02);
}

.fc-line-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.fc-card,
.line-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.fc-card:hover,
.line-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-pink);
}

.fc-content {
    display: flex;
    gap: 25px;
    align-items: center;
}

.fc-icon {
    font-size: 3.5rem;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fc-icon img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.fc-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.fc-info p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-line {
    background: #06C755 !important;
    border: none !important;
}

/* Subdivided Title Styles */
.title-main {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.title-sub {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

.title-num {
    display: block;
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.7;
    margin-top: 2px;
}

/* Modal Title Adjustments */
#modal-title {
    line-height: 1.2;
}

#modal-title .title-main {
    font-size: 2rem;
}

#modal-title .title-sub {
    font-size: 1.1rem;
}

#modal-title .title-num {
    font-size: 1rem;
}

/* Flyer Zoom Overlay */
.flyer-zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    cursor: zoom-out;
}

.flyer-zoom-overlay.active {
    display: flex;
}

.flyer-zoom-overlay img {
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    animation: zoomIn 0.3s ease-out;
}

.zoom-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 3001;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .title-main {
        font-size: 1.3rem;
    }

    .title-sub {
        font-size: 0.8rem;
    }

    .flyer-zoom-overlay img {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .fc-line-container {
        grid-template-columns: 1fr;
    }

    .fc-content {
        flex-direction: column;
        text-align: center;
    }
}