/*
 * Who We Are v2 - Design 8: サイバー (Cyber)
 * Cyberpunk-inspired dark design with neon cyan/pink/yellow accents,
 * glass-card effects, grid patterns, scanline animations,
 * and terminal-frame aesthetics.
 */

/* ===== Google Fonts Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=JetBrains+Mono:wght@300;400;700&family=Rajdhani:wght@400;600;700&display=swap');

/* ===== CSS Variables ===== */
body.wwa-design-8 {
    /* Colors */
    --color-primary: #00f2ff;       /* Cyan Neon */
    --color-secondary: #ff00e0;     /* Pink Neon */
    --color-accent: #ffea00;        /* Yellow Neon */
    --color-bg-dark: #0a0a0c;
    --color-surface: #141418;
    --color-text-primary: #e2e8f0;
    --color-text-muted: #9ca3af;
    --color-text-dim: #6b7280;
    --color-border: rgba(255, 255, 255, 0.1);

    /* Fonts */
    --font-display: 'Orbitron', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-body: 'Rajdhani', sans-serif;

    /* Effects */
    --neon-cyan: 0 0 10px rgba(0, 242, 255, 0.5), inset 0 0 5px rgba(0, 242, 255, 0.2);
    --neon-pink: 0 0 10px rgba(255, 0, 224, 0.5), inset 0 0 5px rgba(255, 0, 224, 0.2);
    --neon-yellow: 0 0 10px rgba(255, 234, 0, 0.5), inset 0 0 5px rgba(255, 234, 0, 0.2);
    --glass-bg: rgba(20, 20, 24, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* ===== Base Styles ===== */
body.wwa-design-8 {
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background-image:
        linear-gradient(rgba(0, 242, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

body.wwa-design-8 ::selection {
    background-color: var(--color-primary);
    color: #000;
}

body.wwa-design-8 .wwa-page,
body.wwa-design-8 .wwa-main {
    background-color: transparent;
}

/* ===== Layout Container ===== */
body.wwa-design-8 .wwa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    body.wwa-design-8 .wwa-container {
        padding: 0 1rem;
    }
}

/* ===== Utility Classes ===== */
body.wwa-design-8 .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
}

body.wwa-design-8 .neon-border {
    box-shadow: var(--neon-cyan);
    border: 1px solid rgba(0, 242, 255, 0.4);
}

body.wwa-design-8 .neon-border-pink {
    box-shadow: var(--neon-pink);
    border: 1px solid rgba(255, 0, 224, 0.4);
}

body.wwa-design-8 .neon-border-yellow {
    box-shadow: var(--neon-yellow);
    border: 1px solid rgba(255, 234, 0, 0.4);
}

body.wwa-design-8 .hud-line {
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    height: 1px;
    width: 100%;
}

/* ===== Scanline Animation ===== */
@keyframes cyber-scanline {
    0% { bottom: 100%; }
    100% { bottom: -100px; }
}

/* ===== Glitch Text Effect ===== */
body.wwa-design-8 .glitch-text {
    position: relative;
    text-shadow: 2px 0 var(--color-secondary), -2px 0 var(--color-primary);
}

/* ======================================================
   HERO SECTION
   ====================================================== */
body.wwa-design-8 .hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

body.wwa-design-8 .hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

body.wwa-design-8 .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(100%) contrast(1.25);
}

body.wwa-design-8 .hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-surface) 100%);
}

body.wwa-design-8 .placeholder-icon {
    font-size: 5rem;
    opacity: 0.3;
}

body.wwa-design-8 .hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-bg-dark) 0%, transparent 50%, transparent 100%);
}

body.wwa-design-8 .hero-scanline {
    width: 100%;
    height: 100px;
    z-index: 10;
    background: linear-gradient(0deg, rgba(0, 242, 255, 0) 0%, rgba(0, 242, 255, 0.05) 50%, rgba(0, 242, 255, 0) 100%);
    position: absolute;
    bottom: 100%;
    animation: cyber-scanline 8s linear infinite;
    pointer-events: none;
}

body.wwa-design-8 .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
}

body.wwa-design-8 .hero-status-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.25rem 1rem;
    border: 1px solid rgba(0, 242, 255, 0.4);
    background-color: rgba(0, 242, 255, 0.05);
    color: var(--color-primary);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

body.wwa-design-8 .hero-band-name {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 4rem;
    letter-spacing: -0.05em;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #fff;
}

body.wwa-design-8 .hero-band-kana {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

body.wwa-design-8 .hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    font-family: var(--font-mono);
}

body.wwa-design-8 .hero-stats .stat-item {
    text-align: center;
}

body.wwa-design-8 .hero-stats .stat-label {
    display: block;
    font-size: 0.6rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.25rem;
}

body.wwa-design-8 .hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

body.wwa-design-8 .hero-stats .stat-cyan {
    color: var(--color-primary);
}

body.wwa-design-8 .hero-stats .stat-pink {
    color: var(--color-secondary);
}

body.wwa-design-8 .hero-stats .stat-yellow {
    color: var(--color-accent);
}

body.wwa-design-8 .hero-stats .stat-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    align-self: stretch;
}

body.wwa-design-8 .scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: cyber-bounce 2s infinite;
}

body.wwa-design-8 .scroll-indicator i {
    color: var(--color-primary);
    font-size: 1.5rem;
    opacity: 0.5;
}

@keyframes cyber-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Info Badges Section ===== */
body.wwa-design-8 .info-badges-section {
    background-color: rgba(20, 20, 24, 0.6);
    padding: 1rem;
    border-top: 1px solid rgba(0, 242, 255, 0.15);
    border-bottom: 1px solid rgba(0, 242, 255, 0.15);
}

body.wwa-design-8 .badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

body.wwa-design-8 .info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all 0.3s;
}

body.wwa-design-8 .badge-location i {
    color: var(--color-primary);
}

body.wwa-design-8 .badge-website i {
    color: var(--color-accent);
}

body.wwa-design-8 .info-badge:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 8px rgba(0, 242, 255, 0.3);
}

body.wwa-design-8 .badge-external {
    font-size: 0.65rem;
    opacity: 0.5;
}

/* ======================================================
   SECTION TITLES (Cyber style)
   ====================================================== */
body.wwa-design-8 .section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.02em;
    text-align: left;
    margin-bottom: 2rem;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

body.wwa-design-8 .section-title::before {
    content: '//';
    color: var(--color-primary);
    font-size: 1.5rem;
}

body.wwa-design-8 .section-title::after {
    content: '';
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.5), rgba(255, 0, 224, 0.3), transparent);
}

/* Alternate section title colors */
body.wwa-design-8 .wwa-members .section-title::before {
    color: var(--color-secondary);
}

body.wwa-design-8 .wwa-members .section-title::after {
    background: linear-gradient(90deg, rgba(255, 0, 224, 0.5), rgba(0, 242, 255, 0.3), transparent);
}

body.wwa-design-8 .wwa-news .section-title::before {
    color: var(--color-accent);
}

body.wwa-design-8 .wwa-news .section-title::after {
    background: linear-gradient(90deg, rgba(255, 234, 0, 0.5), rgba(0, 242, 255, 0.3), transparent);
}

body.wwa-design-8 .wwa-gallery .section-title::before {
    color: var(--color-secondary);
}

body.wwa-design-8 .wwa-gallery .section-title::after {
    background: linear-gradient(90deg, rgba(255, 0, 224, 0.5), rgba(255, 234, 0, 0.3), transparent);
}

/* ======================================================
   BAND INFO SECTION
   ====================================================== */
body.wwa-design-8 .wwa-band-info {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.wwa-design-8 .band-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

body.wwa-design-8 .info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--neon-cyan);
}

body.wwa-design-8 .info-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-secondary);
    border-left: 2px solid var(--color-secondary);
}

body.wwa-design-8 .info-card::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--color-secondary);
    border-right: 2px solid var(--color-secondary);
}

body.wwa-design-8 .info-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

body.wwa-design-8 .info-card h3 i {
    margin-right: 0.5rem;
}

body.wwa-design-8 .info-card p a {
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
}

body.wwa-design-8 .info-card p a:hover {
    color: #fff;
}

body.wwa-design-8 .info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.wwa-design-8 .info-item:last-child {
    border-bottom: none;
}

body.wwa-design-8 .info-item strong {
    color: var(--color-text-dim);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    min-width: 6rem;
    font-weight: 400;
}

body.wwa-design-8 .info-item a {
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

body.wwa-design-8 .info-item a:hover {
    color: #fff;
}

/* Band concept (if shown in info) */
body.wwa-design-8 .band-concept {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

body.wwa-design-8 .band-concept::first-letter {
    font-size: 2.5rem;
    font-family: var(--font-display);
    color: var(--color-primary);
    float: left;
    margin-right: 0.5rem;
    line-height: 1;
}

@media (max-width: 768px) {
    body.wwa-design-8 .band-info-grid {
        grid-template-columns: 1fr;
    }
}

body.wwa-design-8 .band-introduction {
    display: block;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* ======================================================
   MEMBERS SECTION
   ====================================================== */
body.wwa-design-8 .wwa-members {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.wwa-design-8 .members-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

body.wwa-design-8 .member-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.5s ease;
}

body.wwa-design-8 .member-card:hover {
    transform: translateY(-0.5rem);
}

/* Alternating neon border colors for member cards */
body.wwa-design-8 .member-card:nth-child(3n+1) {
    box-shadow: var(--neon-pink);
    border-color: rgba(255, 0, 224, 0.4);
}
body.wwa-design-8 .member-card:nth-child(3n+2) {
    box-shadow: var(--neon-cyan);
    border-color: rgba(0, 242, 255, 0.4);
}
body.wwa-design-8 .member-card:nth-child(3n+3) {
    box-shadow: var(--neon-yellow);
    border-color: rgba(255, 234, 0, 0.4);
}

body.wwa-design-8 .member-card .member-photo {
    height: 16rem;
    overflow: hidden;
    position: relative;
}

body.wwa-design-8 .member-card .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.7s ease;
}

body.wwa-design-8 .member-card:hover .member-photo img {
    filter: grayscale(0%);
}

body.wwa-design-8 .member-card .member-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-bg-dark) 0%, transparent 60%);
    pointer-events: none;
}

body.wwa-design-8 .member-info {
    padding: 1.25rem;
}

body.wwa-design-8 .member-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

body.wwa-design-8 .member-instrument {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    padding: 0.15rem 0.5rem;
    margin-bottom: 0.75rem;
}

/* Alternating instrument tag colors */
body.wwa-design-8 .member-card:nth-child(3n+1) .member-instrument {
    background-color: var(--color-secondary);
    color: #fff;
}
body.wwa-design-8 .member-card:nth-child(3n+2) .member-instrument {
    background-color: var(--color-primary);
    color: #000;
}
body.wwa-design-8 .member-card:nth-child(3n+3) .member-instrument {
    background-color: var(--color-accent);
    color: #000;
}

body.wwa-design-8 .member-profile {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

body.wwa-design-8 .member-sns-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

body.wwa-design-8 .member-sns-icons .sns-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}

body.wwa-design-8 .member-sns-icons .sns-icon:hover {
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 0 8px rgba(0, 242, 255, 0.4);
}

@media (max-width: 1024px) {
    body.wwa-design-8 .members-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    body.wwa-design-8 .members-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================================
   HISTORY SECTION (Terminal Frame)
   ====================================================== */
body.wwa-design-8 .wwa-history {
    padding: 4rem 0;
}

body.wwa-design-8 .story-card {
    background: rgba(10, 10, 12, 0.9);
    border: 1px solid var(--color-primary);
    position: relative;
    padding: 3rem 2.5rem;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(0, 242, 255, 0.05) 1px, transparent 0);
    background-size: 8px 8px;
    box-shadow: inset 0 0 20px rgba(0, 242, 255, 0.1);
}

body.wwa-design-8 .story-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-secondary);
    border-left: 2px solid var(--color-secondary);
}

body.wwa-design-8 .story-card::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--color-secondary);
    border-right: 2px solid var(--color-secondary);
}

body.wwa-design-8 .story-text {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    body.wwa-design-8 .story-card {
        padding: 2rem 1.5rem;
    }
}

/* ======================================================
   NEWS SECTION (Data Feed)
   ====================================================== */
body.wwa-design-8 .wwa-news {
    padding: 4rem 0;
    background-color: rgba(20, 20, 24, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.wwa-design-8 .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

body.wwa-design-8 .news-card {
    cursor: pointer;
    transition: all 0.3s;
}

body.wwa-design-8 .news-card:hover {
    transform: translateY(-4px);
}

body.wwa-design-8 .news-photo {
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

body.wwa-design-8 .news-photo img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.5s;
}

body.wwa-design-8 .news-card:hover .news-photo img {
    transform: scale(1.1);
}

body.wwa-design-8 .news-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-surface);
    color: var(--color-text-dim);
    font-size: 2rem;
}

body.wwa-design-8 .news-date {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

body.wwa-design-8 .news-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

body.wwa-design-8 .news-card:hover .news-title {
    color: var(--color-primary);
}

body.wwa-design-8 .news-content {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.wwa-design-8 .news-actions {
    text-align: center;
    margin-top: 2rem;
}

body.wwa-design-8 .past-news-btn {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-text-dim);
    background: transparent;
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.wwa-design-8 .past-news-btn:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

body.wwa-design-8 .past-news-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

body.wwa-design-8 .past-news-btn i {
    margin-right: 0.5rem;
}

@media (max-width: 1024px) {
    body.wwa-design-8 .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    body.wwa-design-8 .news-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================================
   LIVE INFO SECTION
   ====================================================== */
body.wwa-design-8 .wwa-live-info {
    padding: 4rem 0;
}

body.wwa-design-8 .live-grid {
    display: grid;
    gap: 1.5rem;
}

body.wwa-design-8 .live-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 242, 255, 0.4);
    box-shadow: var(--neon-cyan);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

body.wwa-design-8 .live-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: var(--color-primary);
    opacity: 0.2;
}

body.wwa-design-8 .live-header {
    margin-bottom: 1rem;
}

body.wwa-design-8 .live-date {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-primary);
}

body.wwa-design-8 .live-date i {
    margin-right: 0.5rem;
}

body.wwa-design-8 .live-time {
    margin-left: 0.5rem;
    color: var(--color-text-muted);
}

body.wwa-design-8 .live-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

body.wwa-design-8 .live-venue {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

body.wwa-design-8 .live-venue i {
    color: var(--color-primary);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

body.wwa-design-8 .live-venue .venue-link {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

body.wwa-design-8 .live-venue .venue-link:hover {
    color: var(--color-primary);
}

body.wwa-design-8 .live-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

body.wwa-design-8 .live-details i {
    color: var(--color-primary);
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

body.wwa-design-8 .live-price,
body.wwa-design-8 .live-order,
body.wwa-design-8 .live-performance {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

body.wwa-design-8 .no-upcoming-lives {
    text-align: center;
    padding: 2rem;
    color: var(--color-text-dim);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

body.wwa-design-8 .live-actions {
    text-align: center;
    margin-top: 2rem;
}

body.wwa-design-8 .past-live-btn {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-text-dim);
    background: transparent;
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

body.wwa-design-8 .past-live-btn:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

body.wwa-design-8 .past-live-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

body.wwa-design-8 .past-live-btn i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    body.wwa-design-8 .live-details {
        grid-template-columns: 1fr;
    }
}

/* ======================================================
   GALLERY SECTION
   ====================================================== */
body.wwa-design-8 .wwa-gallery {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.wwa-design-8 .gallery-subsection {
    margin-bottom: 2.5rem;
}

body.wwa-design-8 .gallery-subtitle {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

body.wwa-design-8 .photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

body.wwa-design-8 .photo-item {
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    cursor: pointer;
}

body.wwa-design-8 .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.5s;
}

body.wwa-design-8 .photo-item:hover img {
    filter: grayscale(0%) opacity(1);
}

body.wwa-design-8 .photo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

body.wwa-design-8 .photo-item:hover .photo-overlay {
    opacity: 1;
}

/* Alternating colored borders on hover */
body.wwa-design-8 .photo-item:nth-child(1):hover {
    border-color: rgba(0, 242, 255, 0.6);
    box-shadow: inset 0 0 15px rgba(0, 242, 255, 0.2);
}
body.wwa-design-8 .photo-item:nth-child(2):hover {
    border-color: rgba(255, 0, 224, 0.6);
    box-shadow: inset 0 0 15px rgba(255, 0, 224, 0.2);
}
body.wwa-design-8 .photo-item:nth-child(3):hover {
    border-color: rgba(255, 234, 0, 0.6);
    box-shadow: inset 0 0 15px rgba(255, 234, 0, 0.2);
}
body.wwa-design-8 .photo-item:nth-child(4):hover {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.1);
}

body.wwa-design-8 .photo-overlay i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

body.wwa-design-8 .youtube-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

body.wwa-design-8 .youtube-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

body.wwa-design-8 .youtube-embed {
    aspect-ratio: 16 / 9;
}

body.wwa-design-8 .youtube-embed iframe {
    border-radius: 12px;
}

body.wwa-design-8 .youtube-thumbnail {
    position: relative;
}

body.wwa-design-8 .youtube-thumb-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: brightness(0.5);
}

body.wwa-design-8 .youtube-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.wwa-design-8 .youtube-play-button {
    width: 4rem;
    height: 4rem;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

body.wwa-design-8 .youtube-card:hover .youtube-play-button {
    transform: scale(1.1);
}

body.wwa-design-8 .youtube-play-button i {
    color: #000;
    font-size: 2rem;
}

body.wwa-design-8 .youtube-link {
    display: block;
    text-decoration: none;
}

/* Desktop/Mobile toggles */
body.wwa-design-8 .desktop-only {
    display: block;
}
body.wwa-design-8 .mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    body.wwa-design-8 .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body.wwa-design-8 .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    body.wwa-design-8 .youtube-grid {
        grid-template-columns: 1fr;
    }
    body.wwa-design-8 .desktop-only {
        display: none;
    }
    body.wwa-design-8 .mobile-only {
        display: block;
    }
}

/* ======================================================
   SNS SECTION
   ====================================================== */
body.wwa-design-8 .wwa-sns {
    padding: 4rem 0;
}

body.wwa-design-8 .sns-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

body.wwa-design-8 .sns-link {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--color-text-muted);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s;
}

body.wwa-design-8 .sns-link .sns-label {
    display: none;
}

body.wwa-design-8 .sns-link:hover {
    color: #fff;
    transform: translateY(-4px);
}

body.wwa-design-8 .x-link:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 12px rgba(0, 242, 255, 0.4);
}

body.wwa-design-8 .instagram-link:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 0 12px rgba(255, 0, 224, 0.4);
}

body.wwa-design-8 .facebook-link:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 12px rgba(0, 242, 255, 0.4);
}

body.wwa-design-8 .youtube-link:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 12px rgba(255, 234, 0, 0.4);
}

/* ======================================================
   MODALS (Cyber theme)
   ====================================================== */
body.wwa-design-8 .modal-content {
    background-color: var(--color-surface);
    border: 1px solid rgba(0, 242, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
    color: var(--color-text-primary);
}

body.wwa-design-8 .modal-header {
    border-bottom: 1px solid rgba(0, 242, 255, 0.2);
}

body.wwa-design-8 .modal-title {
    font-family: var(--font-display);
    color: var(--color-primary);
}

body.wwa-design-8 .modal-header .btn-close {
    filter: invert(1);
}

body.wwa-design-8 .modal-body {
    background-color: var(--color-bg-dark);
}

/* ======================================================
   BACK-TO-TOP
   ====================================================== */
body.wwa-design-8 .back-to-top {
    background-color: var(--color-primary);
    color: #000;
    border: none;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
}

body.wwa-design-8 .back-to-top:hover {
    background-color: #fff;
}

/* ======================================================
   LIGHTBOX
   ====================================================== */
body.wwa-design-8 .lightbox-overlay {
    background-color: rgba(10, 10, 12, 0.95);
}

body.wwa-design-8 .lightbox-close {
    color: var(--color-primary);
}

/* ======================================================
   FOOTER OVERRIDE
   ====================================================== */
body.wwa-design-8 footer,
body.wwa-design-8 .site-footer {
    background-color: #000 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-dim);
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (min-width: 769px) {
    body.wwa-design-8 .hero-band-name {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    body.wwa-design-8 .hero-section {
        min-height: 70vh;
    }

    body.wwa-design-8 .hero-band-name {
        font-size: 2.5rem;
    }

    body.wwa-design-8 .hero-stats {
        gap: 1rem;
    }

    body.wwa-design-8 .hero-stats .stat-number {
        font-size: 1.5rem;
    }

    body.wwa-design-8 .section-title {
        font-size: 1.5rem;
    }

    body.wwa-design-8 .wwa-band-info,
    body.wwa-design-8 .wwa-members,
    body.wwa-design-8 .wwa-history,
    body.wwa-design-8 .wwa-news,
    body.wwa-design-8 .wwa-live-info,
    body.wwa-design-8 .wwa-gallery,
    body.wwa-design-8 .wwa-sns {
        padding: 2.5rem 0;
    }

    body.wwa-design-8 .live-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    body.wwa-design-8 .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    body.wwa-design-8 .hero-stats .stat-divider {
        width: 40%;
        height: 1px;
        align-self: center;
    }

    body.wwa-design-8 .sns-links {
        gap: 1rem;
    }
}
