/*
 * Who We Are v2 - Design 9: ガーリー (Girly)
 * Sweet scrapbook-inspired design with pink/lavender palette,
 * washi-tape accents, polaroid-style cards, polka-dot patterns,
 * handwriting fonts, and playful rounded shapes.
 */

/* ===== Google Fonts Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Gochi+Hand&display=swap');

/* ===== CSS Variables ===== */
body.wwa-design-9 {
    /* Colors */
    --color-primary: #f4258c;
    --color-primary-light: #ff8cc4;
    --color-primary-dark: #c00e65;
    --color-secondary: #a78bfa;
    --color-accent-yellow: #fde047;
    --color-accent-blue: #60a5fa;
    --color-bg-light: #f8f5f7;
    --color-bg-white: #ffffff;
    --color-text-dark: #1e293b;
    --color-text-body: #475569;
    --color-text-muted: #94a3b8;
    --color-border-light: #f1e8f0;

    /* Fonts */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-hand: 'Gochi Hand', cursive;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Shadows */
    --shadow-cute: 0 10px 25px -5px rgba(244, 37, 140, 0.15), 0 8px 10px -6px rgba(244, 37, 140, 0.1);
    --shadow-paper: 2px 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);

    /* Border Radius */
    --radius-sm: 0.75rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-2xl: 3rem;
}

/* ===== Base Styles ===== */
body.wwa-design-9 {
    background-color: var(--color-bg-light);
    color: var(--color-text-body);
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.wwa-design-9 ::selection {
    background-color: var(--color-primary);
    color: #fff;
}

body.wwa-design-9 .wwa-page,
body.wwa-design-9 .wwa-main {
    background-color: var(--color-bg-light);
}

/* ===== Layout Container ===== */
body.wwa-design-9 .wwa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    body.wwa-design-9 .wwa-container {
        padding: 0 1rem;
    }
}

/* ===== Section Common Styles ===== */
body.wwa-design-9 .wwa-section {
    padding: 5rem 0;
}

body.wwa-design-9 .section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

/* ===== HERO SECTION ===== */
body.wwa-design-9 .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

/* Hero Background */
body.wwa-design-9 .hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

body.wwa-design-9 .hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(244, 37, 140, 0.05) 0%,
        var(--color-bg-light) 40%,
        rgba(167, 139, 250, 0.1) 100%);
}

body.wwa-design-9 .hero-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--color-primary) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.04;
    pointer-events: none;
}

body.wwa-design-9 .hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

body.wwa-design-9 .hero-blob-yellow {
    top: 5rem;
    right: 10%;
    width: 16rem;
    height: 16rem;
    background-color: rgba(253, 224, 71, 0.2);
    animation: girly-pulse 4s ease-in-out infinite;
}

body.wwa-design-9 .hero-blob-pink {
    bottom: 5rem;
    left: 10%;
    width: 20rem;
    height: 20rem;
    background-color: rgba(244, 37, 140, 0.15);
}

@keyframes girly-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Hero Content Layout */
body.wwa-design-9 .hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
}

body.wwa-design-9 .hero-text-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

body.wwa-design-9 .hero-band-name {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--color-text-dark);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin: 0;
}

body.wwa-design-9 .hero-band-intro {
    font-size: 1rem;
    color: var(--color-text-body);
    width: 100%;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
}

/* Hero Stats */
body.wwa-design-9 .hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

body.wwa-design-9 .hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.wwa-design-9 .hero-stats .stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

body.wwa-design-9 .hero-stats .stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

body.wwa-design-9 .hero-stats .stat-divider {
    width: 2px;
    height: 2rem;
    background-color: var(--color-border-light);
}

/* Hero Image */
body.wwa-design-9 .hero-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
}

body.wwa-design-9 .hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 5;
}

body.wwa-design-9 .hero-image-gradient-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-2xl);
    transform: rotate(3deg) scale(1.05);
    opacity: 0.2;
}

body.wwa-design-9 .hero-image-frame .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
    border: 4px solid var(--color-bg-white);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

body.wwa-design-9 .hero-image-frame .hero-bg-image:hover {
    transform: rotate(0deg);
}

body.wwa-design-9 .hero-image-frame .hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, rgba(244, 37, 140, 0.1), rgba(167, 139, 250, 0.1));
    border: 4px solid var(--color-bg-white);
    position: relative;
    z-index: 10;
}

body.wwa-design-9 .hero-image-frame .placeholder-icon {
    font-size: 4rem;
}

/* ===== INFO BADGES SECTION ===== */
body.wwa-design-9 .info-badges-section {
    padding: 2.5rem 0;
    background-color: var(--color-bg-white);
}

body.wwa-design-9 .badges-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

body.wwa-design-9 .info-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--color-text-dark);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

body.wwa-design-9 .info-badge i {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

body.wwa-design-9 .badge-genre {
    background-color: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
}

body.wwa-design-9 .badge-genre i {
    color: var(--color-secondary);
}

body.wwa-design-9 .badge-location {
    background-color: rgba(244, 37, 140, 0.1);
    border: 1px solid rgba(244, 37, 140, 0.2);
}

body.wwa-design-9 .badge-location i {
    color: var(--color-primary);
}

body.wwa-design-9 .badge-website {
    background-color: rgba(253, 224, 71, 0.15);
    border: 1px solid rgba(253, 224, 71, 0.3);
    transition: all 0.3s ease;
}

body.wwa-design-9 .badge-website:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

body.wwa-design-9 .badge-website i {
    color: #ca8a04;
}

body.wwa-design-9 .badge-external {
    font-size: 0.7rem;
    margin-left: auto;
    opacity: 0.5;
    width: auto !important;
    height: auto !important;
    background: none !important;
    box-shadow: none !important;
}

/* ===== BAND INFO SECTION ===== */
body.wwa-design-9 .content-section {
    background-color: var(--color-bg-white);
}

body.wwa-design-9 .content-section .section-title {
    position: relative;
}

body.wwa-design-9 .content-section .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    margin: 0.75rem auto 0;
}

body.wwa-design-9 .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

body.wwa-design-9 .info-card {
    background-color: var(--color-bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--color-border-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.wwa-design-9 .info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-cute);
}

body.wwa-design-9 .info-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

body.wwa-design-9 .info-card h3 i {
    margin-right: 0.5rem;
}

body.wwa-design-9 .info-item {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--color-text-body);
    border-bottom: 1px dashed var(--color-border-light);
}

body.wwa-design-9 .info-item:last-child {
    border-bottom: none;
}

body.wwa-design-9 .info-item strong {
    color: var(--color-text-dark);
    font-weight: 700;
}

body.wwa-design-9 .info-item a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

body.wwa-design-9 .info-item a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* ===== MEMBERS SECTION ===== */
body.wwa-design-9 .members-section {
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-light);
}

body.wwa-design-9 .members-section .section-title {
    position: relative;
}

body.wwa-design-9 .members-section .section-title::before {
    content: 'Meet the band!';
    display: block;
    font-family: var(--font-hand);
    font-size: 1.6rem;
    color: var(--color-primary);
    transform: rotate(-3deg);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

body.wwa-design-9 .members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2.5rem;
}

/* Polaroid / Scrapbook style member card */
body.wwa-design-9 .member-card {
    position: relative;
    background-color: var(--color-bg-white);
    padding: 1rem;
    padding-bottom: 2rem;
    box-shadow: var(--shadow-paper);
    transition: transform 0.3s ease;
    border-radius: 0;
}

body.wwa-design-9 .member-card:hover {
    transform: rotate(2deg) scale(1.02);
}

body.wwa-design-9 .member-card:nth-child(even):hover {
    transform: rotate(-2deg) scale(1.02);
}

/* Washi tape decoration */
body.wwa-design-9 .member-card::before {
    content: '';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 8rem;
    height: 2rem;
    background-color: rgba(244, 37, 140, 0.25);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(2px);
    z-index: 20;
}

body.wwa-design-9 .member-card:nth-child(2)::before {
    background-color: rgba(167, 139, 250, 0.3);
    transform: translateX(-50%) rotate(1deg);
}

body.wwa-design-9 .member-card:nth-child(3)::before {
    background-color: rgba(253, 224, 71, 0.35);
    transform: translateX(-50%) rotate(-1deg);
}

body.wwa-design-9 .member-card:nth-child(4)::before {
    background-color: rgba(96, 165, 250, 0.3);
    transform: translateX(-50%) rotate(2deg);
}

body.wwa-design-9 .member-card:nth-child(5)::before {
    background-color: rgba(244, 37, 140, 0.2);
    transform: translateX(-50%) rotate(-1.5deg);
}

body.wwa-design-9 .member-photo {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: 1rem;
    background-color: #f3f4f6;
}

body.wwa-design-9 .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

body.wwa-design-9 .member-card:hover .member-photo img {
    transform: scale(1.1);
}

body.wwa-design-9 .member-info {
    text-align: center;
}

body.wwa-design-9 .member-name {
    font-family: var(--font-hand);
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 0.3rem;
}

body.wwa-design-9 .member-instrument {
    display: inline-block;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

body.wwa-design-9 .member-card:nth-child(2) .member-instrument {
    background-color: var(--color-secondary);
}

body.wwa-design-9 .member-card:nth-child(3) .member-instrument {
    background-color: var(--color-accent-yellow);
    color: var(--color-text-dark);
}

body.wwa-design-9 .member-card:nth-child(4) .member-instrument {
    background-color: var(--color-accent-blue);
}

body.wwa-design-9 .member-card:nth-child(5) .member-instrument {
    background-color: var(--color-primary-light);
}

body.wwa-design-9 .member-profile {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.5;
}

/* Member SNS Icons */
body.wwa-design-9 .member-sns-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

body.wwa-design-9 .member-sns-icons .sns-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    color: var(--color-text-muted);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

body.wwa-design-9 .member-sns-icons .sns-icon:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: scale(1.15);
}

/* ===== HISTORY / BAND STORY SECTION ===== */
body.wwa-design-9 .wwa-history {
    background-color: var(--color-bg-white);
    overflow: hidden;
}

body.wwa-design-9 .wwa-history .section-title {
    font-family: var(--font-hand);
    font-size: 2.8rem;
    color: var(--color-primary);
}

body.wwa-design-9 .story-card {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    border: 3px dashed rgba(244, 37, 140, 0.3);
}

body.wwa-design-9 .story-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-text-body);
}

/* ===== NEWS SECTION ===== */
body.wwa-design-9 .news-section {
    background-color: var(--color-bg-light);
}

body.wwa-design-9 .news-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

body.wwa-design-9 .news-card {
    background-color: var(--color-bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border-light);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

body.wwa-design-9 .news-card:hover {
    box-shadow: var(--shadow-cute);
    transform: translateY(-2px);
}

body.wwa-design-9 .news-photo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

body.wwa-design-9 .news-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.wwa-design-9 .news-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(244, 37, 140, 0.1), rgba(167, 139, 250, 0.1));
    color: var(--color-primary);
    font-size: 1.5rem;
}

body.wwa-design-9 .news-info {
    flex-grow: 1;
}

body.wwa-design-9 .news-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

body.wwa-design-9 .news-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
    transition: color 0.2s;
}

body.wwa-design-9 .news-card:hover .news-title {
    color: var(--color-primary);
}

body.wwa-design-9 .news-content {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
    line-height: 1.5;
}

body.wwa-design-9 .news-actions {
    text-align: center;
    margin-top: 2rem;
}

body.wwa-design-9 .past-news-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background-color: var(--color-bg-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.wwa-design-9 .past-news-btn:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-cute);
}

body.wwa-design-9 .past-news-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: var(--color-text-muted);
    color: var(--color-text-muted);
}

body.wwa-design-9 .past-news-btn.disabled:hover {
    background-color: var(--color-bg-white);
    color: var(--color-text-muted);
    transform: none;
    box-shadow: none;
}

/* ===== LIVE INFO SECTION ===== */
body.wwa-design-9 .live-section {
    background-color: rgba(244, 37, 140, 0.03);
}

body.wwa-design-9 .live-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Ticket-style live card (CSS Grid) */
body.wwa-design-9 .live-card {
    position: relative;
    display: grid;
    grid-template-columns: 7rem 1fr;
    grid-template-rows: auto auto auto;
    background-color: var(--color-bg-white);
    border-radius: 9999px;
    box-shadow: var(--shadow-cute);
    overflow: hidden;
    transition: transform 0.3s ease;
}

body.wwa-design-9 .live-card:hover {
    transform: translateY(-4px);
}

/* Date box on the left - spans all rows */
body.wwa-design-9 .live-header {
    grid-column: 1;
    grid-row: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 1rem 0.5rem;
}

/* Alternate colors for each card */
body.wwa-design-9 .live-card:nth-child(1) .live-header {
    background: var(--color-primary);
}

body.wwa-design-9 .live-card:nth-child(2) .live-header {
    background: var(--color-secondary);
}

body.wwa-design-9 .live-card:nth-child(3) .live-header {
    background: var(--color-text-dark);
}

body.wwa-design-9 .live-card:nth-child(n+4) .live-header {
    background: var(--color-primary);
}

body.wwa-design-9 .live-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3;
}

body.wwa-design-9 .live-date i.fas.fa-calendar-alt {
    display: none;
}

body.wwa-design-9 .live-time {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.2rem;
}

/* Content columns */
body.wwa-design-9 .live-title {
    grid-column: 2;
    grid-row: 1;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
    padding: 1.25rem 1.5rem 0.25rem;
}

body.wwa-design-9 .live-venue {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
    padding: 0 1.5rem;
}

body.wwa-design-9 .live-venue i {
    color: var(--color-primary);
    font-size: 0.85rem;
}

body.wwa-design-9 .venue-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

body.wwa-design-9 .venue-link:hover {
    text-decoration: underline;
}

body.wwa-design-9 .live-details {
    grid-column: 2;
    grid-row: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    padding: 0.5rem 1.5rem 1.25rem;
}

body.wwa-design-9 .live-details i {
    color: var(--color-primary);
    margin-right: 0.25rem;
}

body.wwa-design-9 .no-upcoming-lives {
    text-align: center;
    padding: 3rem;
    color: var(--color-text-muted);
    font-size: 1rem;
}

body.wwa-design-9 .live-actions {
    text-align: center;
    margin-top: 2rem;
}

body.wwa-design-9 .past-live-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background-color: var(--color-bg-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

body.wwa-design-9 .past-live-btn:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-cute);
}

body.wwa-design-9 .past-live-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: var(--color-text-muted);
    color: var(--color-text-muted);
}

body.wwa-design-9 .past-live-btn.disabled:hover {
    background-color: var(--color-bg-white);
    color: var(--color-text-muted);
    transform: none;
    box-shadow: none;
}

/* ===== GALLERY SECTION ===== */
body.wwa-design-9 .gallery-section {
    background-color: var(--color-bg-light);
}

body.wwa-design-9 .gallery-section .section-title::after {
    content: 'Snapshots from our world!';
    display: block;
    font-family: var(--font-hand);
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    font-weight: 400;
}

body.wwa-design-9 .gallery-subtitle {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
}

body.wwa-design-9 .gallery-subsection {
    margin-bottom: 3rem;
}

body.wwa-design-9 .photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

body.wwa-design-9 .photo-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--color-bg-white);
    box-shadow: var(--shadow-paper);
    cursor: pointer;
}

body.wwa-design-9 .photo-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

body.wwa-design-9 .photo-item:hover img {
    transform: scale(1.1);
}

body.wwa-design-9 .photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(244, 37, 140, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
}

body.wwa-design-9 .photo-overlay i {
    color: #fff;
    font-size: 1.5rem;
}

body.wwa-design-9 .photo-item:hover .photo-overlay {
    opacity: 1;
}

/* YouTube Grid */
body.wwa-design-9 .youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

body.wwa-design-9 .youtube-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-paper);
    border: 4px solid var(--color-bg-white);
}

body.wwa-design-9 .youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

body.wwa-design-9 .youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

body.wwa-design-9 .youtube-thumbnail {
    position: relative;
}

body.wwa-design-9 .youtube-link {
    display: block;
    position: relative;
}

body.wwa-design-9 .youtube-thumb-img {
    width: 100%;
    height: auto;
    display: block;
}

body.wwa-design-9 .youtube-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

body.wwa-design-9 .youtube-play-overlay:hover {
    background: rgba(0, 0, 0, 0.15);
}

body.wwa-design-9 .youtube-play-button {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(244, 37, 140, 0.4);
}

/* Desktop/Mobile visibility */
body.wwa-design-9 .desktop-only {
    display: block;
}

body.wwa-design-9 .mobile-only {
    display: none;
}

@media (max-width: 767px) {
    body.wwa-design-9 .desktop-only {
        display: none;
    }

    body.wwa-design-9 .mobile-only {
        display: block;
    }
}

/* ===== SNS SECTION ===== */
body.wwa-design-9 .sns-section {
    background-color: var(--color-bg-white);
    position: relative;
    overflow: hidden;
}

body.wwa-design-9 .sns-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent-yellow));
}

body.wwa-design-9 .sns-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

body.wwa-design-9 .sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.wwa-design-9 .sns-link:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

body.wwa-design-9 .sns-link .sns-label {
    display: none;
}

body.wwa-design-9 .x-link {
    background-color: #000;
}

body.wwa-design-9 .instagram-link {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

body.wwa-design-9 .facebook-link {
    background-color: #1877f2;
}

body.wwa-design-9 .youtube-link {
    background-color: #ff0000;
}

/* ===== BACK TO TOP ===== */
body.wwa-design-9 .back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-cute);
    z-index: 100;
}

body.wwa-design-9 .back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

body.wwa-design-9 .back-to-top:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
}

/* ===== LIGHTBOX ===== */
body.wwa-design-9 .lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

body.wwa-design-9 .lightbox-overlay.active {
    display: flex;
}

body.wwa-design-9 .lightbox-content img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    border: 4px solid var(--color-bg-white);
}

body.wwa-design-9 .lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
}

/* ===== MODALS ===== */
body.wwa-design-9 .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    justify-content: center;
    align-items: flex-start;
    padding: 5vh 1rem;
    overflow-y: auto;
}

body.wwa-design-9 .modal-overlay.active {
    display: flex;
}

body.wwa-design-9 .modal-container {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-xl);
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

body.wwa-design-9 .modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background-color: var(--color-bg-white);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    z-index: 10;
}

body.wwa-design-9 .modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

body.wwa-design-9 .modal-close {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
}

body.wwa-design-9 .modal-close:hover {
    color: var(--color-primary);
}

body.wwa-design-9 .modal-body {
    padding: 1.5rem 2rem;
}

/* Modal items styling */
body.wwa-design-9 .modal-news-item,
body.wwa-design-9 .modal-live-item {
    padding: 1rem 0;
    border-bottom: 1px dashed var(--color-border-light);
}

body.wwa-design-9 .modal-news-item:last-child,
body.wwa-design-9 .modal-live-item:last-child {
    border-bottom: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    body.wwa-design-9 .hero-section {
        padding-top: 6rem;
        min-height: auto;
        padding-bottom: 3rem;
    }

    body.wwa-design-9 .hero-content {
        flex-direction: column;
        padding: 0 1rem;
        gap: 2rem;
    }

    body.wwa-design-9 .hero-text-side {
        align-items: center;
        text-align: center;
    }

    body.wwa-design-9 .hero-band-name {
        font-size: 3rem;
    }

    body.wwa-design-9 .hero-band-intro {
        text-align: center;
    }

    body.wwa-design-9 .hero-stats {
        justify-content: center;
    }

    body.wwa-design-9 .hero-image-frame {
        max-width: 300px;
        aspect-ratio: 1;
    }

    body.wwa-design-9 .wwa-section {
        padding: 3rem 0;
    }

    body.wwa-design-9 .section-title {
        font-size: 2rem;
    }

    body.wwa-design-9 .badges-container {
        padding: 0 1rem;
    }

    body.wwa-design-9 .info-badge {
        min-width: 100%;
    }

    body.wwa-design-9 .members-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 2rem;
    }

    body.wwa-design-9 .story-card {
        padding: 1.5rem;
    }

    body.wwa-design-9 .news-card {
        flex-direction: column;
        align-items: flex-start;
    }

    body.wwa-design-9 .live-card {
        grid-template-columns: 5rem 1fr;
    }

    body.wwa-design-9 .live-header {
        padding: 0.75rem 0.25rem;
    }

    body.wwa-design-9 .live-date {
        font-size: 0.75rem;
    }

    body.wwa-design-9 .live-title {
        font-size: 1.05rem;
        padding: 1rem 1rem 0.25rem;
    }

    body.wwa-design-9 .live-venue {
        padding: 0 1rem;
        font-size: 0.8rem;
    }

    body.wwa-design-9 .live-details {
        padding: 0.5rem 1rem 1rem;
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    body.wwa-design-9 .live-title {
        font-size: 1.1rem;
    }

    body.wwa-design-9 .photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    body.wwa-design-9 .youtube-grid {
        grid-template-columns: 1fr;
    }

    body.wwa-design-9 .sns-link {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    body.wwa-design-9 .hero-content {
        gap: 2rem;
    }

    body.wwa-design-9 .hero-image-frame {
        max-width: 320px;
    }

    body.wwa-design-9 .members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== HEADER OVERRIDE (overlay) ===== */
body.wwa-design-9 .band-connect-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(244, 37, 140, 0.1);
}

body.wwa-design-9 .band-connect-header .header-logo,
body.wwa-design-9 .band-connect-header .header-nav a {
    color: var(--color-text-dark);
}

body.wwa-design-9 .band-connect-header .header-nav a:hover {
    color: var(--color-primary);
}

/* ===== PRINT STYLES ===== */
@media print {
    body.wwa-design-9 .back-to-top,
    body.wwa-design-9 .lightbox-overlay,
    body.wwa-design-9 .modal-overlay {
        display: none !important;
    }
}
