/*
 * Who We Are v2 - Design 6: Neon Rebel Pop
 * カラフルでポップ、若者向けのエネルギッシュなデザイン
 */

/* ===== Google Fonts Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Indie+Flower&family=Inter:wght@400;600;700&display=swap');

/* ===== CSS Variables ===== */
body.wwa-design-6 {
    /* Colors */
    --color-primary: #FF007F; /* Neon Pink */
    --color-secondary: #00E5FF; /* Cyan */
    --color-tertiary: #FFD600; /* Yellow */
    --color-accent-purple: #AA00FF;

    --color-bg-light: #FAFAFA;
    --color-bg-dark: #121212;
    --color-card-light: #FFFFFF;
    --color-card-dark: #1E1E1E;
    --color-text-light: #333333;
    --color-text-dark: #EEEEEE;

    /* Fonts */
    --font-display: 'Permanent Marker', cursive;
    --font-hand: 'Indie Flower', cursive;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-pop: 4px 4px 0px 0px rgba(0, 0, 0, 1);
    --shadow-pop-hover: 2px 2px 0px 0px rgba(0, 0, 0, 1);
    --shadow-card: 2px 2px 5px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-default: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
}

/* ===== Base Styles ===== */
body.wwa-design-6 {
    background-color: var(--color-bg-light);
    color: var(--color-text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.wwa-design-6 ::selection {
    background-color: var(--color-primary);
    color: white;
}

body.wwa-design-6 .wwa-page,
body.wwa-design-6 .wwa-main {
    background-color: var(--color-bg-light);
}

/* ===== Layout Container ===== */
body.wwa-design-6 .wwa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    body.wwa-design-6 .wwa-container {
        padding: 0 1rem;
    }
}

/* ===== Hero Section ===== */
body.wwa-design-6 .hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 3rem;
    overflow: hidden;
}

body.wwa-design-6 .hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

body.wwa-design-6 .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

body.wwa-design-6 .hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

body.wwa-design-6 .hero-placeholder .placeholder-icon {
    font-size: 5rem;
    opacity: 0.4;
}

body.wwa-design-6 .hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-bg-light) 0%, transparent 50%);
}

body.wwa-design-6 .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 800px;
}

body.wwa-design-6 .hero-band-name {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: white;
    margin-bottom: 1.5rem;
    transform: rotate(-2deg);
    line-height: 1.2;
}

body.wwa-design-6 .hero-band-name.graffiti-text {
    text-shadow: 2px 2px 0px var(--color-secondary), -2px -2px 0px var(--color-tertiary);
}

body.wwa-design-6 .hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

body.wwa-design-6 .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.wwa-design-6 .stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-primary);
}

body.wwa-design-6 .stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.15em;
    color: white;
}

body.wwa-design-6 .stat-divider {
    width: 1px;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.5);
}

body.wwa-design-6 .scroll-indicator {
    margin-top: 2rem;
    animation: bounce 2s infinite;
}

body.wwa-design-6 .scroll-indicator i {
    font-size: 2rem;
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== Band Info Section (Info Badges Style) ===== */
body.wwa-design-6 .wwa-band-info {
    padding: 2rem 1rem;
}

body.wwa-design-6 .wwa-band-info .section-title {
    margin-bottom: 1.5rem;
}

body.wwa-design-6 .wwa-band-info .band-info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 48rem;
    margin: 0 auto;
}

body.wwa-design-6 .wwa-band-info .info-card {
    background-color: var(--color-card-light);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    border: 3px solid black;
    box-shadow: var(--shadow-pop);
    width: 100%;
}

body.wwa-design-6 .wwa-band-info .info-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

body.wwa-design-6 .wwa-band-info .info-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

body.wwa-design-6 .wwa-band-info .info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    border: 3px solid black;
    box-shadow: var(--shadow-pop);
    font-weight: bold;
    font-size: 0.95rem;
    transition: transform 0.2s;
    background-color: var(--color-card-light);
}

body.wwa-design-6 .wwa-band-info .info-item:hover {
    transform: translateY(-4px);
}

body.wwa-design-6 .wwa-band-info .info-item:nth-child(3n+1) {
    background-color: var(--color-primary);
    color: white;
}

body.wwa-design-6 .wwa-band-info .info-item:nth-child(3n+1) a {
    color: white;
}

body.wwa-design-6 .wwa-band-info .info-item:nth-child(3n+2) {
    background-color: var(--color-secondary);
    color: black;
}

body.wwa-design-6 .wwa-band-info .info-item:nth-child(3n) {
    background-color: var(--color-tertiary);
    color: black;
}

body.wwa-design-6 .wwa-band-info .info-item a {
    color: inherit;
    text-decoration: underline;
}

body.wwa-design-6 .wwa-band-info .info-card p {
    font-family: var(--font-hand);
    font-size: 1rem;
    color: #555;
}

body.wwa-design-6 .wwa-band-info .info-card p a {
    color: var(--color-primary);
    text-decoration: none;
}

body.wwa-design-6 .wwa-band-info .info-card p a:hover {
    text-decoration: underline;
}

body.wwa-design-6 .wwa-band-info .band-introduction {
    display: block;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 2px dashed #ddd;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
}

/* ===== Section Title ===== */
body.wwa-design-6 .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.5rem);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

body.wwa-design-6 .section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(2deg);
    width: 12rem;
    height: 1rem;
    background-color: var(--color-tertiary);
    z-index: -1;
}

/* ===== Members Section (THE CREW) ===== */
body.wwa-design-6 .members-section {
    padding: 2.5rem 1rem;
    background-color: white;
}

body.wwa-design-6 .members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

body.wwa-design-6 .member-card {
    display: flex;
    background-color: var(--color-card-light);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-pop);
    transition: transform 0.3s;
}

body.wwa-design-6 .member-card:nth-child(4n+1) {
    border: 2px solid var(--color-primary);
}

body.wwa-design-6 .member-card:nth-child(4n+2) {
    border: 2px solid var(--color-secondary);
}

body.wwa-design-6 .member-card:nth-child(4n+3) {
    border: 2px solid var(--color-tertiary);
}

body.wwa-design-6 .member-card:nth-child(4n+4) {
    border: 2px solid var(--color-accent-purple);
}

body.wwa-design-6 .member-photo {
    width: 33.333%;
    position: relative;
    overflow: hidden;
}

body.wwa-design-6 .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

body.wwa-design-6 .member-card:hover .member-photo img {
    transform: scale(1.1);
}

body.wwa-design-6 .member-info {
    width: 66.666%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.wwa-design-6 .member-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

body.wwa-design-6 .member-card:nth-child(4n+1) .member-name {
    color: var(--color-primary);
}

body.wwa-design-6 .member-card:nth-child(4n+2) .member-name {
    color: var(--color-secondary);
}

body.wwa-design-6 .member-card:nth-child(4n+3) .member-name {
    color: var(--color-tertiary);
}

body.wwa-design-6 .member-card:nth-child(4n+4) .member-name {
    color: var(--color-accent-purple);
}

body.wwa-design-6 .member-instrument {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    background-color: black;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
    width: fit-content;
}

body.wwa-design-6 .member-profile {
    font-family: var(--font-hand);
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
}

body.wwa-design-6 .member-sns-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

body.wwa-design-6 .member-sns-icons .sns-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #000;
    color: white;
    font-size: 0.875rem;
    transition: transform 0.2s;
}

body.wwa-design-6 .member-sns-icons .sns-icon:hover {
    transform: scale(1.1);
}

/* ===== History / Band Story Section (OUR STORY) ===== */
body.wwa-design-6 .wwa-history {
    padding: 3rem 1.5rem;
    position: relative;
    overflow: hidden;
}

body.wwa-design-6 .wwa-history::before,
body.wwa-design-6 .wwa-history::after {
    content: '⚡';
    position: absolute;
    font-size: 4rem;
    opacity: 0.2;
    user-select: none;
    pointer-events: none;
}

body.wwa-design-6 .wwa-history::before {
    top: 2.5rem;
    left: -1.25rem;
    transform: rotate(12deg);
}

body.wwa-design-6 .wwa-history::after {
    content: '🤘';
    bottom: 5rem;
    right: -0.625rem;
    transform: rotate(-12deg);
}

body.wwa-design-6 .wwa-history .section-title {
    position: relative;
    z-index: 1;
    margin-bottom: 2.5rem;
}

body.wwa-design-6 .wwa-history .section-title::after {
    display: none;
}

body.wwa-design-6 .wwa-history .band-story-content {
    max-width: 48rem;
    margin: 0 auto;
}

body.wwa-design-6 .wwa-history .story-card {
    background-color: var(--color-card-light);
    padding: 2.5rem 2rem 2rem;
    border-radius: var(--radius-2xl);
    border: 4px dashed #d1d1d1;
    position: relative;
}

body.wwa-design-6 .wwa-history .story-card::before {
    content: 'OUR STORY';
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%) rotate(1deg);
    background-color: var(--color-tertiary);
    color: black;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 1.25rem;
    box-shadow: var(--shadow-card);
    white-space: nowrap;
}

body.wwa-design-6 .wwa-history .story-text {
    font-family: var(--font-hand);
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-top: 1rem;
}

body.wwa-design-6 .wwa-history .story-text p {
    margin-bottom: 1rem;
}

body.wwa-design-6 .wwa-history .story-text p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 3rem;
    float: left;
    margin-right: 0.5rem;
    line-height: 1;
    color: var(--color-primary);
}

/* ===== News Section (LATEST NEWS) ===== */
body.wwa-design-6 .news-section {
    padding: 2.5rem 0;
    background: linear-gradient(to right, rgba(255, 0, 127, 0.1) 0%, rgba(0, 229, 255, 0.1) 100%);
}

body.wwa-design-6 .news-section .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.5rem);
    transform: rotate(-1deg);
    margin: 0 0 1.5rem 0;
    text-align: left;
}

body.wwa-design-6 .news-section .section-title::after {
    display: none;
}

body.wwa-design-6 .news-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 0 0 1rem;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body.wwa-design-6 .news-grid::-webkit-scrollbar {
    display: none;
}

body.wwa-design-6 .news-card {
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: center;
    background-color: var(--color-card-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
    cursor: pointer;
}

body.wwa-design-6 .news-card:hover {
    transform: translateY(-4px);
}

body.wwa-design-6 .news-card .news-photo {
    height: 10rem;
    background-color: #e5e5e5;
    position: relative;
    overflow: hidden;
}

body.wwa-design-6 .news-card .news-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.wwa-design-6 .news-card .news-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #ccc;
    font-size: 3rem;
}

body.wwa-design-6 .news-card .news-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

body.wwa-design-6 .news-card .news-date {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0.5rem;
}

body.wwa-design-6 .news-card .news-title {
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: #333;
}

body.wwa-design-6 .news-card .news-content {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.wwa-design-6 .news-actions {
    display: none;
}

/* ===== Live Info Section (UPCOMING GIGS) ===== */
body.wwa-design-6 .wwa-live-info {
    padding: 3rem 1rem;
}

body.wwa-design-6 .wwa-live-info .wwa-container {
    max-width: 1200px;
    margin: 0 auto;
}

body.wwa-design-6 .wwa-live-info .section-title {
    color: var(--color-secondary);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 1);
}

body.wwa-design-6 .live-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

body.wwa-design-6 .live-card {
    background-color: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 8px;
    transition: transform 0.2s;
}

body.wwa-design-6 .live-card:hover {
    transform: translateY(-2px);
}

body.wwa-design-6 .live-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
}

body.wwa-design-6 .live-card:nth-child(odd)::before {
    background-color: var(--color-primary);
}

body.wwa-design-6 .live-card:nth-child(even)::before {
    background-color: var(--color-secondary);
}

body.wwa-design-6 .live-card .live-header {
    padding: 0.75rem 1rem 0;
}

body.wwa-design-6 .live-card .live-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
    background-color: #f5f5f5;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border-bottom: 1px dashed #d1d1d1;
}

body.wwa-design-6 .live-card .live-date i {
    color: var(--color-primary);
    font-size: 1rem;
}

body.wwa-design-6 .live-card .live-date .live-time {
    color: #888;
    font-weight: normal;
    margin-left: 0.25rem;
}

body.wwa-design-6 .live-card .live-title {
    font-weight: bold;
    font-size: 1.25rem;
    margin: 0.75rem 1rem 0.5rem;
    color: #333;
    transition: color 0.2s;
}

body.wwa-design-6 .live-card:hover .live-title {
    color: var(--color-primary);
}

body.wwa-design-6 .live-card .live-venue {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    padding: 0 1rem;
    margin-bottom: 0.5rem;
}

body.wwa-design-6 .live-card .live-venue i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

body.wwa-design-6 .live-card .live-venue .venue-link {
    color: var(--color-primary);
    text-decoration: none;
}

body.wwa-design-6 .live-card .live-venue .venue-link:hover {
    text-decoration: underline;
}

body.wwa-design-6 .live-card .live-details {
    padding: 0.5rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

body.wwa-design-6 .live-card .live-price,
body.wwa-design-6 .live-card .live-order,
body.wwa-design-6 .live-card .live-performance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

body.wwa-design-6 .live-card .live-price i,
body.wwa-design-6 .live-card .live-order i,
body.wwa-design-6 .live-card .live-performance i {
    font-size: 0.9rem;
    color: #888;
    width: 1rem;
    text-align: center;
}

/* Live Actions (Past Lives Button) */
body.wwa-design-6 .wwa-live-info .live-actions {
    text-align: center;
    margin-top: 1.5rem;
}

body.wwa-design-6 .wwa-live-info .past-live-btn {
    background-color: var(--color-tertiary);
    color: black;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-weight: bold;
    border: 2px solid black;
    box-shadow: var(--shadow-pop);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
}

body.wwa-design-6 .wwa-live-info .past-live-btn:hover {
    transform: translateY(2px);
    box-shadow: var(--shadow-pop-hover);
}

body.wwa-design-6 .wwa-live-info .past-live-btn.disabled {
    background-color: #e0e0e0;
    border-color: #ccc;
    color: #999;
    box-shadow: none;
    cursor: not-allowed;
}

body.wwa-design-6 .no-upcoming-lives {
    text-align: center;
    padding: 2rem;
    color: #888;
    font-family: var(--font-hand);
    font-size: 1.125rem;
}

/* ===== Gallery Section (SNAP SHOTS) ===== */
body.wwa-design-6 .gallery-section {
    padding: 3rem 1rem;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect width="100" height="100" fill="%23f0f0f0"/><path d="M0 0h50v50H0zm50 50h50v50H50z" fill="%23e0e0e0"/></svg>');
    background-attachment: fixed;
}

body.wwa-design-6 .gallery-section .section-title {
    color: white;
    text-shadow: 2px 2px 0 #000;
}

body.wwa-design-6 .gallery-section .gallery-subsection {
    margin-bottom: 3rem;
}

body.wwa-design-6 .gallery-section .gallery-subsection:last-child {
    margin-bottom: 0;
}

body.wwa-design-6 .gallery-section .gallery-subtitle {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: white;
    text-shadow: 2px 2px 0 #000;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

body.wwa-design-6 .gallery-section .photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

body.wwa-design-6 .gallery-section .photo-item {
    padding: 10px 10px 30px 10px;
    background: white;
    box-shadow: var(--shadow-card);
    transform: rotate(1deg);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

body.wwa-design-6 .gallery-section .photo-item:nth-child(even) {
    transform: rotate(-1deg);
}

body.wwa-design-6 .gallery-section .photo-item:hover {
    transform: rotate(2deg) scale(1.05);
    z-index: 10;
}

body.wwa-design-6 .gallery-section .photo-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

body.wwa-design-6 .gallery-section .photo-item:nth-child(4n+1) img {
    filter: sepia(0.3);
}

body.wwa-design-6 .gallery-section .photo-item:nth-child(4n+2) img {
    filter: contrast(1.25);
}

body.wwa-design-6 .gallery-section .photo-item:nth-child(4n+3) img {
    filter: none;
}

body.wwa-design-6 .gallery-section .photo-item:nth-child(4n+4) img {
    filter: saturate(1.5);
}

body.wwa-design-6 .gallery-section .photo-item::after {
    content: '';
    display: block;
    text-align: center;
    font-family: var(--font-hand);
    margin-top: 0.5rem;
    color: black;
    font-weight: bold;
    font-size: 0.875rem;
}

body.wwa-design-6 .gallery-section .photo-overlay {
    position: absolute;
    inset: 10px 10px 30px 10px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

body.wwa-design-6 .gallery-section .photo-item:hover .photo-overlay {
    opacity: 1;
}

body.wwa-design-6 .gallery-section .photo-overlay i {
    color: white;
    font-size: 2rem;
}

body.wwa-design-6 .gallery-section .youtube-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    max-width: 80rem;
    margin: 2rem auto 0;
}

body.wwa-design-6 .gallery-section .youtube-card {
    padding: 10px 10px 30px 10px;
    background: white;
    box-shadow: var(--shadow-card);
    transform: rotate(-1deg);
    cursor: pointer;
    transition: all 0.3s;
}

body.wwa-design-6 .gallery-section .youtube-card:hover {
    transform: rotate(2deg) scale(1.05);
    z-index: 10;
}

body.wwa-design-6 .gallery-section .youtube-embed,
body.wwa-design-6 .gallery-section .youtube-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
}

body.wwa-design-6 .gallery-section .youtube-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.wwa-design-6 .gallery-section .youtube-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
}

body.wwa-design-6 .gallery-section .youtube-play-button {
    font-size: 4rem;
    color: white;
    transition: transform 0.2s;
}

body.wwa-design-6 .gallery-section .youtube-card:hover .youtube-play-button {
    transform: scale(1.1);
}

/* ===== SNS Section (FOLLOW US) ===== */
body.wwa-design-6 .sns-section {
    padding: 4rem 1rem;
    text-align: center;
}

body.wwa-design-6 .sns-section .section-title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    margin-bottom: 2rem;
    text-align: center;
}

body.wwa-design-6 .sns-section .section-title::after {
    display: none;
}

body.wwa-design-6 .sns-section .sns-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

body.wwa-design-6 .sns-section .sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

body.wwa-design-6 .sns-section .sns-link:hover {
    transform: scale(1.1);
}

body.wwa-design-6 .sns-section .sns-label {
    display: none;
}

body.wwa-design-6 .sns-section .x-link {
    background-color: #000;
}

body.wwa-design-6 .sns-section .instagram-link {
    background: linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
}

body.wwa-design-6 .sns-section .facebook-link {
    background-color: #1877F2;
}

body.wwa-design-6 .sns-section .youtube-link {
    background-color: #FF0000;
}

/* ===== Responsive Design ===== */
@media (min-width: 768px) {
    body.wwa-design-6 .wwa-band-info {
        padding: 2rem 1.5rem;
    }

    body.wwa-design-6 .members-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body.wwa-design-6 .gallery-section .photos-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    body.wwa-design-6 .gallery-section .youtube-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    body.wwa-design-6 .gallery-section .photo-item:nth-child(2n) {
        margin-top: 2.5rem;
    }

    body.wwa-design-6 .gallery-section .youtube-card:nth-child(2n) {
        margin-top: 2.5rem;
    }

}

@media (min-width: 768px) and (max-width: 1023px) {
    body.wwa-design-6 .live-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    body.wwa-design-6 .live-grid {
        grid-template-columns: 1fr;
    }

    body.wwa-design-6 .hero-stats {
        gap: 0.75rem;
    }

    body.wwa-design-6 .stat-number {
        font-size: 1.5rem;
    }

    body.wwa-design-6 .wwa-band-info .info-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    body.wwa-design-6 .member-card {
        flex-direction: column;
    }

    body.wwa-design-6 .member-photo {
        width: 100%;
        height: 200px;
    }

    body.wwa-design-6 .member-info {
        width: 100%;
    }
}

/* ===== Utility Classes ===== */
body.wwa-design-6 .text-center {
    text-align: center;
}

body.wwa-design-6 .mb-0 { margin-bottom: 0; }
body.wwa-design-6 .mb-1 { margin-bottom: 0.5rem; }
body.wwa-design-6 .mb-2 { margin-bottom: 1rem; }
body.wwa-design-6 .mb-3 { margin-bottom: 1.5rem; }
body.wwa-design-6 .mb-4 { margin-bottom: 2rem; }

body.wwa-design-6 .mt-0 { margin-top: 0; }
body.wwa-design-6 .mt-1 { margin-top: 0.5rem; }
body.wwa-design-6 .mt-2 { margin-top: 1rem; }
body.wwa-design-6 .mt-3 { margin-top: 1.5rem; }
body.wwa-design-6 .mt-4 { margin-top: 2rem; }
