/*
 * Who We Are v2 - Design 7: Comic Pop
 * American comic book inspired design with halftone patterns,
 * bold black borders, burst shapes, and speech bubbles.
 */

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

/* ===== CSS Variables ===== */
body.wwa-design-7 {
    /* Colors */
    --color-primary: #FACC15;      /* Yellow */
    --color-secondary: #EF4444;    /* Red */
    --color-tertiary: #3B82F6;     /* Blue */
    --color-cyan: #22d3ee;
    --color-magenta: #e879f9;
    --color-bg-light: #FFFBEB;     /* Light cream */
    --color-bg-dark: #111827;
    --color-card-light: #FFFFFF;
    --color-text-light: #000000;
    --color-text-muted: #4B5563;

    /* Fonts */
    --font-display: 'Bangers', cursive;
    --font-body: 'Comic Neue', cursive;
    --font-marker: 'Permanent Marker', cursive;

    /* Shadows */
    --shadow-comic: 4px 4px 0px 0px #000000;
    --shadow-comic-lg: 8px 8px 0px 0px #000000;
    --shadow-comic-sm: 2px 2px 0px 0px #000000;

    /* Borders */
    --border-comic: 3px solid #000;
    --border-comic-thick: 4px solid #000;
}

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

body.wwa-design-7 ::selection {
    background-color: var(--color-primary);
    color: #000;
}

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

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

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

/* ===== Halftone Pattern Backgrounds ===== */
body.wwa-design-7 .bg-halftone,
body.wwa-design-7 .hero-halftone-bg {
    background-image: radial-gradient(circle, #333 1px, transparent 1.5px);
    background-size: 10px 10px;
}

body.wwa-design-7 .bg-halftone-light {
    background-image: radial-gradient(circle, #e5e5e5 2px, transparent 2.5px);
    background-size: 8px 8px;
}

/* ===== Burst Shape ===== */
body.wwa-design-7 .burst-shape-bg {
    clip-path: polygon(20% 0%, 30% 10%, 45% 0%, 50% 15%, 65% 0%, 75% 15%, 90% 5%, 85% 25%, 100% 30%, 85% 45%, 100% 60%, 85% 70%, 95% 85%, 75% 80%, 65% 95%, 55% 80%, 35% 95%, 25% 80%, 10% 90%, 15% 70%, 0% 60%, 15% 45%, 0% 30%, 15% 20%);
}

/* ======================================================
   HERO SECTION
   ====================================================== */
body.wwa-design-7 .hero-section {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 3rem;
    overflow: hidden;
    background-color: var(--color-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
}

body.wwa-design-7 .hero-halftone-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

/* Decorative shapes */
body.wwa-design-7 .hero-deco-circle {
    position: absolute;
    top: 5rem;
    right: -50px;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    border: 4px solid #000;
    z-index: 0;
    opacity: 0.8;
}
body.wwa-design-7 .hero-deco-yellow {
    background-color: var(--color-primary);
}
body.wwa-design-7 .hero-deco-square {
    position: absolute;
    bottom: 2.5rem;
    left: -30px;
    width: 12rem;
    height: 12rem;
    border: 4px solid #000;
    z-index: 0;
    opacity: 0.8;
    transform: rotate(12deg);
}
body.wwa-design-7 .hero-deco-red {
    background-color: var(--color-secondary);
}

body.wwa-design-7 .hero-inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

/* Photo frame */
body.wwa-design-7 .hero-photo-frame {
    position: relative;
    width: 100%;
    max-width: 48rem;
    aspect-ratio: 16 / 9;
    margin-bottom: 2rem;
}

body.wwa-design-7 .hero-photo-shadow {
    position: absolute;
    inset: 0;
    background-color: #000;
    transform: translate(12px, 12px);
    border: 2px solid #000;
}

body.wwa-design-7 .hero-photo-container {
    position: absolute;
    inset: 0;
    background-color: #fff;
    border: var(--border-comic-thick);
    z-index: 10;
    overflow: hidden;
}

body.wwa-design-7 .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.25) brightness(1.1);
}

body.wwa-design-7 .hero-halftone-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #333 1px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.2;
    pointer-events: none;
}

body.wwa-design-7 .hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-tertiary);
    border: var(--border-comic-thick);
}

body.wwa-design-7 .placeholder-icon {
    font-size: 4rem;
}

/* Burst badge with band name */
body.wwa-design-7 .hero-burst-badge {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    z-index: 20;
    width: 12rem;
    min-height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
}

body.wwa-design-7 .hero-burst-badge .burst-shape-bg {
    position: absolute;
    inset: 0;
    background-color: var(--color-primary);
    border: 4px solid #000;
    box-shadow: var(--shadow-comic-lg);
}

body.wwa-design-7 .hero-band-name {
    position: relative;
    z-index: 10;
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    line-height: 1.1;
    color: #000;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
    padding: 0.5rem;
    word-break: break-word;
}

/* Speech bubble */
body.wwa-design-7 .hero-speech-bubble {
    background-color: #fff;
    border: var(--border-comic-thick);
    padding: 1.5rem;
    max-width: 40rem;
    position: relative;
    box-shadow: var(--shadow-comic);
    margin: 1.5rem 1rem 0;
}

body.wwa-design-7 .hero-speech-bubble::after {
    content: '';
    position: absolute;
    top: -16px;
    left: 50%;
    margin-left: -16px;
    border: 16px solid transparent;
    border-bottom-color: #000;
    border-top: 0;
}

body.wwa-design-7 .hero-speech-bubble::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    margin-left: -16px;
    border: 16px solid transparent;
    border-bottom-color: #fff;
    border-top: 0;
    z-index: 1;
}

body.wwa-design-7 .speech-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #1f2937;
}

/* Stats grid */
body.wwa-design-7 .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
}

body.wwa-design-7 .stat-item {
    border: 3px solid #000;
    padding: 0.5rem;
    text-align: center;
    box-shadow: var(--shadow-comic-sm);
}

body.wwa-design-7 .stat-red {
    background-color: var(--color-secondary);
    color: #fff;
    transform: rotate(-2deg);
}
body.wwa-design-7 .stat-cyan {
    background-color: var(--color-cyan);
    color: #000;
    transform: rotate(2deg);
}
body.wwa-design-7 .stat-magenta {
    background-color: var(--color-magenta);
    color: #fff;
    transform: rotate(-1deg);
}
body.wwa-design-7 .stat-yellow {
    background-color: var(--color-primary);
    color: #000;
    transform: rotate(3deg);
}

body.wwa-design-7 .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

body.wwa-design-7 .stat-number.stat-text {
    font-size: 1.1rem;
    padding-top: 0.25rem;
}

body.wwa-design-7 .stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Scroll indicator */
body.wwa-design-7 .scroll-indicator {
    margin-top: 2rem;
    animation: comic-bounce 1s infinite;
}

body.wwa-design-7 .scroll-indicator i {
    font-size: 2rem;
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
}

@keyframes comic-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ===== Info Badges Section ===== */
body.wwa-design-7 .info-badges-section {
    background-color: var(--color-bg-light);
    padding: 1.5rem 1rem;
    border-bottom: var(--border-comic-thick);
}

body.wwa-design-7 .badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

body.wwa-design-7 .info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: var(--border-comic);
    box-shadow: var(--shadow-comic-sm);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: #000;
    text-decoration: none;
    transition: transform 0.2s;
}

body.wwa-design-7 .badge-location {
    background-color: var(--color-cyan);
    transform: rotate(-1deg);
}

body.wwa-design-7 .badge-website {
    background-color: var(--color-magenta);
    color: #000;
    transform: rotate(1deg);
}

body.wwa-design-7 .info-badge:hover {
    transform: translateY(-2px) rotate(0deg);
}

body.wwa-design-7 .badge-external {
    font-size: 0.7rem;
}

/* ======================================================
   SECTION TITLES (Comic style)
   ====================================================== */
body.wwa-design-7 .section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #000;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.05em;
}

body.wwa-design-7 .section-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: -0.5rem;
    right: -0.5rem;
    bottom: 0;
    background-color: var(--color-secondary);
    transform: skew(-6deg) translate(2px, 2px);
    z-index: -1;
    border: 2px solid #000;
}

/* ======================================================
   BAND INFO SECTION
   ====================================================== */
body.wwa-design-7 .wwa-band-info {
    padding: 3rem 0;
    background-color: #fff;
    background-image: radial-gradient(circle, #e5e5e5 2px, transparent 2.5px);
    background-size: 8px 8px;
    border-bottom: var(--border-comic-thick);
}

body.wwa-design-7 .band-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

body.wwa-design-7 .info-card {
    border: var(--border-comic);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-comic);
    position: relative;
    overflow: hidden;
}

body.wwa-design-7 .info-card:nth-child(1) {
    background-color: var(--color-cyan);
}
body.wwa-design-7 .info-card:nth-child(2) {
    background-color: var(--color-magenta);
}

body.wwa-design-7 .info-card::before {
    content: '';
    position: absolute;
    right: -1rem;
    top: -1rem;
    width: 4rem;
    height: 4rem;
    background-color: rgba(255,255,255,0.3);
    border-radius: 50%;
}

body.wwa-design-7 .info-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #000;
}

body.wwa-design-7 .info-item {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: #000;
}

body.wwa-design-7 .info-item strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-right: 0.5rem;
}

body.wwa-design-7 .info-item a {
    color: #1d4ed8;
    background-color: rgba(255,255,255,0.8);
    padding: 0.15rem 0.5rem;
    border: 2px solid #000;
    display: inline-block;
    transform: rotate(1deg);
    text-decoration: underline;
    transition: transform 0.2s;
}

body.wwa-design-7 .info-item a:hover {
    transform: scale(1.05) rotate(0deg);
}

body.wwa-design-7 .band-introduction {
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: var(--border-comic);
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    color: #000;
}

/* ======================================================
   MEMBERS SECTION
   ====================================================== */
body.wwa-design-7 .wwa-members {
    padding: 4rem 0;
    background-color: #f3f4f6;
    position: relative;
}

body.wwa-design-7 .wwa-members::before,
body.wwa-design-7 .wwa-members::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #000;
}
body.wwa-design-7 .wwa-members::before { top: 0; }
body.wwa-design-7 .wwa-members::after { bottom: 0; }

body.wwa-design-7 .wwa-members .section-title {
    font-size: 3rem;
    background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(4px 4px 0 rgba(0,0,0,1));
}

body.wwa-design-7 .wwa-members .section-title::after {
    display: none;
}

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

body.wwa-design-7 .member-card {
    background-color: #fff;
    border: var(--border-comic-thick);
    padding: 0.5rem;
    box-shadow: var(--shadow-comic-lg);
    transition: transform 0.3s;
}

body.wwa-design-7 .member-card:nth-child(odd) {
    transform: rotate(1deg);
}
body.wwa-design-7 .member-card:nth-child(even) {
    transform: rotate(-1deg);
}
body.wwa-design-7 .member-card:hover {
    transform: rotate(0deg) !important;
}

body.wwa-design-7 .member-card .member-photo {
    height: 18rem;
    border-bottom: var(--border-comic-thick);
    overflow: hidden;
    position: relative;
}

body.wwa-design-7 .member-card .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.25);
}

/* Color overlay for member photos */
body.wwa-design-7 .member-card:nth-child(1) .member-photo::after,
body.wwa-design-7 .member-card:nth-child(2) .member-photo::after,
body.wwa-design-7 .member-card:nth-child(3) .member-photo::after,
body.wwa-design-7 .member-card:nth-child(4) .member-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
    opacity: 0.4;
    pointer-events: none;
}
body.wwa-design-7 .member-card:nth-child(1) .member-photo::after { background-color: var(--color-magenta); }
body.wwa-design-7 .member-card:nth-child(2) .member-photo::after { background-color: var(--color-cyan); }
body.wwa-design-7 .member-card:nth-child(3) .member-photo::after { background-color: var(--color-primary); }
body.wwa-design-7 .member-card:nth-child(4) .member-photo::after { background-color: var(--color-secondary); }

body.wwa-design-7 .member-info {
    padding: 1rem;
    border: 2px solid #000;
    position: relative;
}

/* Color tint for member info background */
body.wwa-design-7 .member-card:nth-child(1) .member-info { background-color: rgba(232, 121, 249, 0.1); }
body.wwa-design-7 .member-card:nth-child(2) .member-info { background-color: rgba(34, 211, 238, 0.1); }
body.wwa-design-7 .member-card:nth-child(3) .member-info { background-color: rgba(250, 204, 21, 0.1); }
body.wwa-design-7 .member-card:nth-child(4) .member-info { background-color: rgba(239, 68, 68, 0.1); }

body.wwa-design-7 .member-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
    margin-bottom: 0.25rem;
}

body.wwa-design-7 .member-instrument {
    font-family: var(--font-display);
    font-size: 1rem;
    background-color: var(--color-primary);
    border: 2px solid #000;
    padding: 0.1rem 0.5rem;
    display: inline-block;
    transform: rotate(-3deg);
    margin-bottom: 0.75rem;
    color: #000;
}

body.wwa-design-7 .member-profile {
    font-size: 0.85rem;
    line-height: 1.5;
    background-color: #fff;
    border: 2px solid #000;
    padding: 0.75rem;
    box-shadow: var(--shadow-comic-sm);
    color: #1f2937;
}

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

body.wwa-design-7 .member-sns-icons .sns-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    background-color: #fff;
    color: #000;
    font-size: 0.9rem;
    box-shadow: var(--shadow-comic-sm);
    transition: transform 0.2s;
}

body.wwa-design-7 .member-sns-icons .sns-icon:hover {
    transform: translateY(-2px);
    background-color: var(--color-primary);
}

/* ======================================================
   HISTORY SECTION
   ====================================================== */
body.wwa-design-7 .wwa-history {
    padding: 4rem 0;
    background-color: var(--color-cyan);
    position: relative;
    overflow: hidden;
}

body.wwa-design-7 .wwa-history::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#000 20%, transparent 20%), radial-gradient(#000 20%, transparent 20%);
    background-color: transparent;
    background-position: 0 0, 5px 5px;
    background-size: 10px 10px;
    opacity: 0.08;
    pointer-events: none;
}

body.wwa-design-7 .wwa-history .section-title {
    font-size: 2rem;
    color: #000;
    border-bottom: var(--border-comic-thick);
    padding-bottom: 0.5rem;
    display: block;
    left: 0;
    transform: none;
    text-align: center;
    width: 100%;
}

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

body.wwa-design-7 .story-card {
    background-color: #fff;
    border: var(--border-comic-thick);
    padding: 0.25rem;
    box-shadow: var(--shadow-comic-lg);
    transform: rotate(-1deg);
    max-width: 40rem;
    margin: 0 auto;
}

body.wwa-design-7 .story-text {
    border: 2px solid #000;
    padding: 1.5rem 2rem;
    font-family: var(--font-marker);
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1f2937;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cline x1='0' y1='30' x2='100' y2='30' stroke='%23ddd' stroke-width='1'/%3E%3Cline x1='0' y1='60' x2='100' y2='60' stroke='%23ddd' stroke-width='1'/%3E%3Cline x1='0' y1='90' x2='100' y2='90' stroke='%23ddd' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100px 100px;
}

body.wwa-design-7 .story-text p:first-child::first-letter {
    font-family: var(--font-display);
    font-size: 2.5rem;
    float: left;
    margin-right: 0.25rem;
    margin-top: -0.25rem;
    color: var(--color-secondary);
    line-height: 1;
}

/* ======================================================
   NEWS SECTION
   ====================================================== */
body.wwa-design-7 .wwa-news {
    padding: 4rem 0;
    background-color: var(--color-bg-light);
}

body.wwa-design-7 .wwa-news .section-title::after {
    background-color: var(--color-secondary);
}

body.wwa-design-7 .news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

body.wwa-design-7 .news-card {
    background-color: #fff;
    border: var(--border-comic-thick);
    padding: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

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

body.wwa-design-7 .news-photo {
    position: relative;
    height: 12rem;
    border-bottom: var(--border-comic-thick);
    margin-bottom: 1rem;
    overflow: hidden;
}

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

body.wwa-design-7 .news-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e5e7eb;
    border: 4px dashed #9ca3af;
}

body.wwa-design-7 .news-placeholder i {
    font-size: 2.5rem;
    color: #9ca3af;
}

body.wwa-design-7 .news-date {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-primary);
    border-right: var(--border-comic-thick);
    border-bottom: var(--border-comic-thick);
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    color: #000;
}

body.wwa-design-7 .news-info {
    padding: 0.5rem;
}

body.wwa-design-7 .news-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: #000;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

body.wwa-design-7 .news-content {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* News actions */
body.wwa-design-7 .news-actions {
    margin-top: 2.5rem;
    text-align: center;
}

body.wwa-design-7 .past-news-btn {
    background-color: #000;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border: 2px solid #fff;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: var(--shadow-comic);
    transition: all 0.2s;
    letter-spacing: 0.05em;
}

body.wwa-design-7 .past-news-btn:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
}

body.wwa-design-7 .past-news-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ======================================================
   LIVE INFO SECTION
   ====================================================== */
body.wwa-design-7 .wwa-live-info {
    padding: 4rem 0;
    background-color: var(--color-bg-dark);
    color: #fff;
    position: relative;
}

body.wwa-design-7 .wwa-live-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #333 1px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.1;
    pointer-events: none;
}

body.wwa-design-7 .wwa-live-info .wwa-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

body.wwa-design-7 .wwa-live-info .section-title {
    font-size: 2.5rem;
    color: var(--color-primary);
}

body.wwa-design-7 .wwa-live-info .section-title::after {
    display: none;
}

body.wwa-design-7 .live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

body.wwa-design-7 .live-card {
    background-color: #000;
    border: 4px solid #fff;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-comic-lg);
    position: relative;
}

body.wwa-design-7 .live-header .live-date {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

body.wwa-design-7 .live-time {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #d1d5db;
    margin-left: 0.5rem;
}

body.wwa-design-7 .live-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

body.wwa-design-7 .live-venue {
    color: #d1d5db;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

body.wwa-design-7 .live-venue .venue-link {
    color: var(--color-cyan);
    text-decoration: underline;
}

body.wwa-design-7 .live-details {
    font-size: 0.85rem;
    color: #9ca3af;
}

body.wwa-design-7 .live-details > div {
    margin-top: 0.25rem;
}

body.wwa-design-7 .live-details i {
    margin-right: 0.3rem;
    color: var(--color-primary);
}

body.wwa-design-7 .no-upcoming-lives {
    background-color: #000;
    border: 4px solid #fff;
    padding: 2rem 3rem;
    box-shadow: var(--shadow-comic-lg);
    display: inline-block;
    position: relative;
}

body.wwa-design-7 .no-upcoming-lives p {
    font-family: var(--font-marker);
    font-size: 1.3rem;
    color: #d1d5db;
}

body.wwa-design-7 .live-actions {
    margin-top: 3rem;
    text-align: center;
}

body.wwa-design-7 .past-live-btn {
    background-color: var(--color-primary);
    color: #000;
    font-family: var(--font-display);
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border: var(--border-comic-thick);
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 8px 8px 0px 0px rgba(255,255,255,1);
    transition: all 0.2s;
    letter-spacing: 0.05em;
}

body.wwa-design-7 .past-live-btn:hover {
    background-color: #fff;
    transform: scale(1.05);
}

body.wwa-design-7 .past-live-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

/* ======================================================
   GALLERY SECTION
   ====================================================== */
body.wwa-design-7 .wwa-gallery {
    padding: 4rem 0;
    background-color: rgba(232, 121, 249, 0.15);
    border-top: var(--border-comic-thick);
}

body.wwa-design-7 .wwa-gallery .section-title {
    color: #000;
}

body.wwa-design-7 .gallery-subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #000;
    letter-spacing: 0.05em;
}

/* Photos grid - polaroid style */
body.wwa-design-7 .photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

body.wwa-design-7 .photo-item {
    background-color: #fff;
    padding: 0.75rem;
    padding-bottom: 2rem;
    border: var(--border-comic-thick);
    box-shadow: 4px 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s;
}

body.wwa-design-7 .photo-item:nth-child(1) { transform: rotate(-3deg); }
body.wwa-design-7 .photo-item:nth-child(2) { transform: rotate(2deg); }
body.wwa-design-7 .photo-item:nth-child(3) { transform: rotate(-1deg); }
body.wwa-design-7 .photo-item:nth-child(4) { transform: rotate(3deg); }

body.wwa-design-7 .photo-item:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10;
}

body.wwa-design-7 .photo-item img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border: 2px solid #000;
}

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

body.wwa-design-7 .photo-item:hover .photo-overlay {
    opacity: 1;
}

body.wwa-design-7 .photo-overlay i {
    font-size: 2rem;
    color: #fff;
}

/* YouTube grid */
body.wwa-design-7 .youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

body.wwa-design-7 .youtube-card {
    background-color: #fff;
    padding: 0.25rem;
    border: 4px solid #6b7280;
    border-radius: 0.5rem;
}

body.wwa-design-7 .youtube-embed {
    aspect-ratio: 16 / 9;
    border: 2px solid #000;
    overflow: hidden;
}

body.wwa-design-7 .youtube-embed iframe {
    width: 100%;
    height: 100%;
}

/* Mobile: thumbnail */
body.wwa-design-7 .youtube-thumbnail {
    display: none;
}

body.wwa-design-7 .youtube-thumb-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

body.wwa-design-7 .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-7 .youtube-play-button {
    width: 4rem;
    height: 4rem;
    background-color: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

body.wwa-design-7 .youtube-play-button i {
    font-size: 2rem;
    color: #fff;
}

/* ======================================================
   SNS SECTION
   ====================================================== */
body.wwa-design-7 .wwa-sns {
    padding: 3rem 0;
    background-color: var(--color-primary);
    border-top: var(--border-comic-thick);
}

body.wwa-design-7 .wwa-sns .section-title {
    color: #000;
}

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

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

body.wwa-design-7 .sns-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s;
}

body.wwa-design-7 .sns-link::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 4rem;
    height: 4rem;
    background-color: #000;
    border-radius: 50%;
}

body.wwa-design-7 .sns-link i {
    position: relative;
    width: 4rem;
    height: 4rem;
    border: var(--border-comic-thick);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1;
    transition: transform 0.2s;
}

body.wwa-design-7 .sns-link:hover {
    transform: translateY(-4px);
}

body.wwa-design-7 .x-link i {
    background-color: #fff;
    color: #000;
}

body.wwa-design-7 .instagram-link i {
    background-color: var(--color-magenta);
    color: #fff;
}

body.wwa-design-7 .facebook-link i {
    background-color: var(--color-cyan);
    color: #000;
}

body.wwa-design-7 .youtube-link i {
    background-color: #fff;
    color: #dc2626;
}

body.wwa-design-7 .sns-label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: #000;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

/* ======================================================
   BACK TO TOP
   ====================================================== */
body.wwa-design-7 .back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    background-color: var(--color-primary);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    box-shadow: var(--shadow-comic);
    cursor: pointer;
    transition: all 0.2s;
}

body.wwa-design-7 .back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

body.wwa-design-7 .back-to-top i {
    color: #000;
    font-size: 1.2rem;
}

/* ======================================================
   MODALS
   ====================================================== */
body.wwa-design-7 .modal-content {
    border: var(--border-comic-thick);
    box-shadow: var(--shadow-comic-lg);
    border-radius: 0;
}

body.wwa-design-7 .modal-header {
    background-color: var(--color-secondary);
    border-bottom: var(--border-comic-thick);
    color: #fff;
    font-family: var(--font-display);
}

body.wwa-design-7 .modal-body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
}

/* ======================================================
   LIGHTBOX
   ====================================================== */
body.wwa-design-7 .lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

body.wwa-design-7 .lightbox-overlay.active,
body.wwa-design-7 .lightbox-overlay.visible {
    display: flex;
}

body.wwa-design-7 .lightbox-content img {
    max-width: 90vw;
    max-height: 90vh;
    border: var(--border-comic-thick);
    box-shadow: var(--shadow-comic-lg);
}

body.wwa-design-7 .lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    font-family: var(--font-display);
    text-shadow: 2px 2px 0 #000;
}

/* ======================================================
   SCROLLBAR (Webkit)
   ====================================================== */
body.wwa-design-7 ::-webkit-scrollbar {
    width: 10px;
}

body.wwa-design-7 ::-webkit-scrollbar-track {
    background: #fff;
    border-left: 2px solid #000;
}

body.wwa-design-7 ::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border: 2px solid #000;
}

/* ======================================================
   FOOTER OVERRIDE
   ====================================================== */
body.wwa-design-7 footer,
body.wwa-design-7 .footer,
body.wwa-design-7 #footer {
    font-family: var(--font-body);
    font-weight: 700;
}

/* ======================================================
   RESPONSIVE DESIGN
   ====================================================== */

/* Tablet */
@media (max-width: 1024px) {
    body.wwa-design-7 .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    body.wwa-design-7 .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    body.wwa-design-7 .hero-section {
        padding-top: 5rem;
        padding-bottom: 2rem;
    }

    body.wwa-design-7 .hero-photo-frame {
        max-width: 90%;
    }

    body.wwa-design-7 .hero-burst-badge {
        width: 10rem;
        min-height: 6rem;
        right: -0.5rem;
        bottom: -1.5rem;
    }

    body.wwa-design-7 .hero-band-name {
        font-size: 1.4rem;
    }

    body.wwa-design-7 .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 16rem;
    }

    body.wwa-design-7 .stat-number {
        font-size: 1.2rem;
    }

    body.wwa-design-7 .section-title {
        font-size: 2rem;
    }

    body.wwa-design-7 .members-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    body.wwa-design-7 .member-card .member-photo {
        height: 10rem;
    }

    body.wwa-design-7 .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    body.wwa-design-7 .photos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    body.wwa-design-7 .photo-item {
        transform: rotate(0deg) !important;
    }

    body.wwa-design-7 .youtube-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile: show thumbnail, hide iframe */
    body.wwa-design-7 .youtube-embed.desktop-only {
        display: none;
    }

    body.wwa-design-7 .youtube-thumbnail.mobile-only {
        display: block;
        position: relative;
    }

    body.wwa-design-7 .story-text {
        padding: 1rem;
        font-size: 0.95rem;
    }

    body.wwa-design-7 .live-card {
        padding: 1rem;
    }

    body.wwa-design-7 .hero-speech-bubble {
        padding: 1rem;
        margin: 1rem 0.5rem 0;
    }

    body.wwa-design-7 .hero-deco-circle {
        width: 8rem;
        height: 8rem;
        right: -30px;
    }

    body.wwa-design-7 .hero-deco-square {
        width: 6rem;
        height: 6rem;
        left: -20px;
    }
}

/* Desktop: enlarge hero photo */
@media (min-width: 1024px) {
    body.wwa-design-7 .hero-inner {
        max-width: 1100px;
    }

    body.wwa-design-7 .hero-photo-frame {
        max-width: 52rem;
    }

    body.wwa-design-7 .hero-stats {
        max-width: 52rem;
    }

    body.wwa-design-7 .stat-item {
        padding: 1rem;
    }

    body.wwa-design-7 .stat-number {
        font-size: 3rem;
    }

    body.wwa-design-7 .stat-number.stat-text {
        font-size: 2.2rem;
    }

    body.wwa-design-7 .stat-label {
        font-size: 1.3rem;
    }

    body.wwa-design-7 .hero-burst-badge {
        width: 14rem;
        min-height: 10rem;
    }

    body.wwa-design-7 .hero-band-name {
        font-size: 2.5rem;
    }
}

/* Desktop only: show iframe, hide thumbnail */
@media (min-width: 768px) {
    body.wwa-design-7 .youtube-embed.desktop-only {
        display: block;
    }

    body.wwa-design-7 .youtube-thumbnail.mobile-only {
        display: none;
    }
}
