/* Who We Are v2 - Design 2: ポップ・カラフル (Pop Colorful) */
/* ==========================================================================
   Source: template-4/styles.blade.php + template-4/hero.blade.php
   All rules scoped under body.wwa-design-2 for v2 template system
   ========================================================================== */

/* ==========================================================================
   1. CSS Custom Properties (from :root → body.wwa-design-2)
   ========================================================================== */
body.wwa-design-2 {
    /* カラフルなカラーパレット（rgba形式でsRGB色空間対応） */
    --primary-color: rgba(255, 107, 107, 1);
    --secondary-color: rgba(78, 205, 196, 1);
    --accent-color: rgba(69, 183, 209, 1);
    --warning-color: rgba(254, 202, 87, 1);
    --success-color: rgba(72, 219, 251, 1);
    --purple-color: rgba(165, 94, 234, 1);
    --pink-color: rgba(253, 121, 168, 1);
    --orange-color: rgba(253, 150, 68, 1);
    --green-color: rgba(0, 210, 211, 1);

    /* グラデーション（rgba形式） */
    --gradient-primary: linear-gradient(135deg, rgba(231, 76, 60, 1) 0%, rgba(211, 84, 0, 1) 100%);
    --gradient-secondary: linear-gradient(135deg, rgba(78, 205, 196, 1) 0%, rgba(69, 183, 209, 1) 100%);
    --gradient-accent: linear-gradient(135deg, rgba(165, 94, 234, 1) 0%, rgba(253, 121, 168, 1) 100%);
    --gradient-rainbow: linear-gradient(135deg, rgba(255, 107, 107, 1) 0%, rgba(254, 202, 87, 1) 25%, rgba(72, 219, 251, 1) 50%, rgba(165, 94, 234, 1) 75%, rgba(253, 121, 168, 1) 100%);

    /* 背景とテキスト（rgba形式） */
    --bg-primary: rgba(255, 204, 204, 1);
    --bg-secondary: rgba(248, 249, 250, 1);
    --text-primary: rgba(44, 62, 80, 1);
    --text-secondary: rgba(127, 140, 141, 1);
    --text-light: rgba(255, 255, 255, 1);

    /* シャドウとエフェクト */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-colorful: 0 10px 30px rgba(255, 107, 107, 0.3);

    /* アニメーション */
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);

    /* ボーダー半径 */
    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 30px;
    --radius-xl: 40px;

    /* Modal-specific variables (compatibility) */
    --card-background: #ffffff;
    --border-color: #f0f0f0;
}

/* ==========================================================================
   2. Body / Global Styles
   ========================================================================== */
body.wwa-design-2 {
    font-family: 'Poppins', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
    background: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0 auto;
}

body.wwa-design-2 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================================================
   3. v2 Wrapper Styles (unified-container layout)
   ========================================================================== */
body.wwa-design-2 .wwa-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    background: #FFCCCC;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* wwa-mainの上部レインボーライン */
body.wwa-design-2 .wwa-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-rainbow);
    background-size: 400% 400%;
    animation: rainbow 3s ease infinite;
}

body.wwa-design-2 .wwa-section {
    padding: 2rem 0;
}

body.wwa-design-2 .wwa-container {
    max-width: 100%;
    padding: 0;
}

/* ==========================================================================
   4. Animation Keyframes
   ========================================================================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes animate-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-10px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-5px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
        opacity: 1;
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) translateX(-5px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) translateX(15px) rotate(270deg);
    }
}

/* ==========================================================================
   5. Main Container (original .container + unified-container mapping)
   ========================================================================== */
body.wwa-design-2 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 50px;
    position: relative;
}

body.wwa-design-2 .unified-container {
    background: #FFCCCC;
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

body.wwa-design-2 .unified-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-rainbow);
    background-size: 400% 400%;
    animation: rainbow 3s ease infinite;
}

/* v2: 個別セクションはカードスタイルを持たない（wwa-mainが統一カード） */
body.wwa-design-2 .wwa-main > .wwa-section {
    position: relative;
}

/* ==========================================================================
   6. Hero Section
   ========================================================================== */
body.wwa-design-2 .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 60px;
}

body.wwa-design-2 .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

body.wwa-design-2 .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
    z-index: 2;
}

/* プレースホルダー背景（画像がない場合） */
body.wwa-design-2 .hero:not(:has(.hero-background)) {
    background: var(--gradient-primary);
}

body.wwa-design-2 .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--text-light);
    max-width: 1200px;
    padding: 80px 20px 0;
}

/* ==========================================================================
   7. Band Logo
   ========================================================================== */
body.wwa-design-2 .band-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 30px;
    overflow: hidden;
    border: 8px solid var(--bg-primary);
    box-shadow: var(--shadow-colorful);
    position: relative;
    background: var(--gradient-rainbow);
    background-size: 400% 400%;
    animation: rainbow 3s ease infinite, pulse 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
}

body.wwa-design-2 .band-logo:hover {
    box-shadow: var(--shadow-strong);
}

body.wwa-design-2 .band-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

body.wwa-design-2 .band-logo .placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 800;
}

body.wwa-design-2 .band-logo .placeholder-content i {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: float 2s ease-in-out infinite;
}

body.wwa-design-2 .band-logo .placeholder-content span {
    font-size: 2rem;
}

/* Placeholder content (standalone, from hero partial) */
body.wwa-design-2 .placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
}

body.wwa-design-2 .placeholder-content i {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: float 2s ease-in-out infinite;
}

body.wwa-design-2 .placeholder-content span {
    font-size: 2rem;
    font-weight: 800;
}

/* ==========================================================================
   8. Hero Band Name, Tagline, Stats (inside hero)
   ========================================================================== */
body.wwa-design-2 .hero-content .band-name {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 25%, #48dbfb 50%, #a55eea 75%, #fd79a8 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: rainbow 3s ease infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

body.wwa-design-2 .hero-content .band-tagline {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

body.wwa-design-2 .hero-content .band-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

body.wwa-design-2 .hero-content .stat-item {
    text-align: center;
    color: var(--text-light);
}

body.wwa-design-2 .hero-content .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e74c3c 0%, #d35400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
}

body.wwa-design-2 .hero-content .stat-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   9. Hero Sparkles (decorative)
   ========================================================================== */
body.wwa-design-2 .hero-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

body.wwa-design-2 .sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkleFloat 3s ease-in-out infinite;
    opacity: 0.8;
}

body.wwa-design-2 .sparkle-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

body.wwa-design-2 .sparkle-2 {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

body.wwa-design-2 .sparkle-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 1s;
}

body.wwa-design-2 .sparkle-4 {
    bottom: 15%;
    right: 15%;
    animation-delay: 1.5s;
}

/* ==========================================================================
   10. Hero Floating Shapes (decorative background)
   ========================================================================== */
body.wwa-design-2 .hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

body.wwa-design-2 .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 6s ease-in-out infinite;
}

body.wwa-design-2 .shape-1 {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

body.wwa-design-2 .shape-2 {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

body.wwa-design-2 .shape-3 {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    bottom: 20%;
    left: 8%;
    animation-delay: 2s;
}

body.wwa-design-2 .shape-4 {
    width: 70px;
    height: 70px;
    background: var(--warning-color);
    top: 30%;
    right: 5%;
    animation-delay: 3s;
}

/* ==========================================================================
   11. Band Name & Title (outside hero / in unified-container)
   ========================================================================== */
body.wwa-design-2 .band-name {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e74c3c 0%, #d35400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-align: center;
    animation: bounceIn 1s ease-out;
}

body.wwa-design-2 .band-name-jp {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

body.wwa-design-2 .band-tagline {
    font-size: 1.1rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   12. Band Stats (outside hero / in unified-container)
   ========================================================================== */
body.wwa-design-2 .band-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

body.wwa-design-2 .stat-item {
    background: var(--gradient-secondary);
    padding: 25px;
    border-radius: var(--radius-medium);
    text-align: center;
    color: var(--text-light);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

body.wwa-design-2 .stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: var(--transition-medium);
    opacity: 0;
}

body.wwa-design-2 .stat-item:hover::before {
    animation: shimmer 1.5s ease-in-out;
    opacity: 1;
}

body.wwa-design-2 .stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-medium);
}

body.wwa-design-2 .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    display: block;
    margin-bottom: 8px;
}

body.wwa-design-2 .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
}

/* ==========================================================================
   13. Section Title
   ========================================================================== */
body.wwa-design-2 .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.wwa-design-2 .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ==========================================================================
   14. Content Section
   ========================================================================== */
body.wwa-design-2 .content-section {
    margin-bottom: 80px;
    animation: slideInUp 0.6s ease-out;
}

body.wwa-design-2 .members-section {
    margin-bottom: 100px;
}

body.wwa-design-2 .news-section {
    margin-bottom: 100px;
}

body.wwa-design-2 .live-section {
    margin-bottom: 100px;
}

/* ==========================================================================
   15. Card Base
   ========================================================================== */
body.wwa-design-2 .card-base {
    background: var(--bg-primary);
    border-radius: var(--radius-large);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.wwa-design-2 .card-base:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

/* ==========================================================================
   16. Band Info Grid
   ========================================================================== */
body.wwa-design-2 .band-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

body.wwa-design-2 .info-card {
    background: var(--bg-primary);
    border-radius: var(--radius-large);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 6px solid var(--primary-color);
    padding-left: 40px;
}

body.wwa-design-2 .info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

body.wwa-design-2 .info-item {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

body.wwa-design-2 .info-item:last-child {
    border-bottom: none;
}

body.wwa-design-2 .info-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==========================================================================
   17. Members Section
   ========================================================================== */
body.wwa-design-2 .members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

body.wwa-design-2 .member-card {
    background: var(--gradient-secondary);
    color: var(--text-light);
    border-radius: var(--radius-large);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    text-align: center;
}

body.wwa-design-2 .member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

body.wwa-design-2 .member-photo {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-medium);
    margin: 0 auto 20px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

body.wwa-design-2 .member-photo:hover {
    transform: scale(1.05);
}

body.wwa-design-2 .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-medium);
}

body.wwa-design-2 .member-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

body.wwa-design-2 .member-instrument {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 15px;
    font-weight: 500;
}

body.wwa-design-2 .member-profile {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ==========================================================================
   18. Member SNS Icons
   ========================================================================== */
body.wwa-design-2 .member-sns-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
}

body.wwa-design-2 .member-sns-icons .sns-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

body.wwa-design-2 .member-sns-icons .sns-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

body.wwa-design-2 .member-sns-icons .x-icon {
    background-color: #000000;
    color: white;
}

body.wwa-design-2 .member-sns-icons .x-icon:hover {
    background-color: #333333;
}

body.wwa-design-2 .member-sns-icons .instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

body.wwa-design-2 .member-sns-icons .instagram-icon:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #8b0a6b 100%);
}

body.wwa-design-2 .member-sns-icons .facebook-icon {
    background-color: #1877f2;
    color: white;
}

body.wwa-design-2 .member-sns-icons .facebook-icon:hover {
    background-color: #166fe5;
}

/* ==========================================================================
   19. News Section
   ========================================================================== */
body.wwa-design-2 .news-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-bottom: 30px !important;
}

body.wwa-design-2 .news-card {
    background: var(--gradient-accent);
    color: var(--text-light);
    border-radius: var(--radius-large);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.wwa-design-2 .news-card:hover {
    transform: translateY(-10px) scale(1.02);
}

body.wwa-design-2 .news-photo {
    width: 100%;
    height: 240px;
    border-radius: var(--radius-large);
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}

body.wwa-design-2 .news-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

body.wwa-design-2 .news-card:hover .news-photo img {
    transform: scale(1.1);
}

body.wwa-design-2 .news-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
}

body.wwa-design-2 .news-date {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
    font-weight: 500;
}

body.wwa-design-2 .news-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

body.wwa-design-2 .news-content {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ==========================================================================
   20. Live Info Section
   ========================================================================== */
body.wwa-design-2 .live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

body.wwa-design-2 .live-card {
    background: var(--gradient-accent);
    color: var(--text-light);
    border-radius: var(--radius-large);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.wwa-design-2 .live-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

body.wwa-design-2 .live-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-rainbow);
    background-size: 400% 400%;
    animation: rainbow 2s ease infinite;
}

body.wwa-design-2 .live-date {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.wwa-design-2 .live-time {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-left: 10px;
}

body.wwa-design-2 .live-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

body.wwa-design-2 .live-venue {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

body.wwa-design-2 .venue-link {
    color: var(--text-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
}

body.wwa-design-2 .venue-link:hover {
    border-bottom-color: var(--text-light);
}

body.wwa-design-2 .live-details {
    margin-top: 20px;
}

body.wwa-design-2 .live-price,
body.wwa-design-2 .live-order,
body.wwa-design-2 .live-performance {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

body.wwa-design-2 .no-upcoming-lives {
    text-align: center;
    padding: 60px 20px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-large);
    color: var(--text-light);
    font-size: 1.2rem;
    box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   21. Gallery Section
   ========================================================================== */
body.wwa-design-2 .gallery-subsection {
    margin-bottom: 50px;
}

body.wwa-design-2 .gallery-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.wwa-design-2 .photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

body.wwa-design-2 .photo-item {
    position: relative;
    border-radius: var(--radius-medium);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

body.wwa-design-2 .photo-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-medium);
}

body.wwa-design-2 .photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-medium);
    opacity: 1;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

body.wwa-design-2 .photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
    transition: var(--transition-fast);
}

body.wwa-design-2 .photo-item:hover .photo-overlay {
    opacity: 0.8;
}

/* ==========================================================================
   22. YouTube Section
   ========================================================================== */
body.wwa-design-2 .youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

body.wwa-design-2 .youtube-card {
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
    background: var(--bg-primary);
}

body.wwa-design-2 .youtube-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

body.wwa-design-2 .youtube-embed {
    width: 100%;
    height: 250px;
    border-radius: var(--radius-medium);
    overflow: hidden;
}

body.wwa-design-2 .youtube-thumbnail {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: var(--radius-medium);
    overflow: hidden;
}

body.wwa-design-2 .youtube-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.wwa-design-2 .youtube-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

body.wwa-design-2 .youtube-play-button {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
    transition: var(--transition-fast);
}

body.wwa-design-2 .youtube-card:hover .youtube-play-button {
    transform: scale(1.1);
    background: var(--secondary-color);
}

/* ==========================================================================
   23. SNS Section
   ========================================================================== */
body.wwa-design-2 .sns-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap; /* 1行に並べる */
}

body.wwa-design-2 .sns-link {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 2rem;
    box-shadow: var(--shadow-soft);
}

body.wwa-design-2 .sns-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

body.wwa-design-2 .sns-link i {
    position: relative;
    z-index: 1;
}

body.wwa-design-2 .sns-link span {
    display: none;
}

/* X (Twitter) */
body.wwa-design-2 .sns-link:has(.fa-x-twitter) {
    background-color: #000000;
    color: white;
}

body.wwa-design-2 .sns-link:has(.fa-x-twitter):hover {
    background-color: #333333;
}

/* Instagram */
body.wwa-design-2 .sns-link:has(.fa-instagram) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

body.wwa-design-2 .sns-link:has(.fa-instagram):hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #8b0a6b 100%);
}

/* Facebook */
body.wwa-design-2 .sns-link:has(.fa-facebook) {
    background-color: #1877f2;
    color: white;
}

body.wwa-design-2 .sns-link:has(.fa-facebook):hover {
    background-color: #166fe5;
}

/* YouTube */
body.wwa-design-2 .sns-link:has(.fa-youtube) {
    background-color: #ff0000;
    color: white;
}

body.wwa-design-2 .sns-link:has(.fa-youtube):hover {
    background-color: #cc0000;
}

/* ==========================================================================
   24. Action Buttons (News / Live)
   ========================================================================== */
body.wwa-design-2 .news-actions,
body.wwa-design-2 .live-actions {
    text-align: center;
    margin-top: 30px;
}

body.wwa-design-2 .past-news-btn,
body.wwa-design-2 .past-live-btn {
    background: var(--gradient-accent);
    color: var(--text-light);
    border: none;
    padding: 15px 30px;
    border-radius: var(--radius-large);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

body.wwa-design-2 .past-news-btn:hover,
body.wwa-design-2 .past-live-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-medium);
}

body.wwa-design-2 .past-news-btn.disabled,
body.wwa-design-2 .past-live-btn.disabled {
    background: var(--text-secondary);
    cursor: not-allowed;
    opacity: 0.6;
}

body.wwa-design-2 .past-news-btn.disabled:hover,
body.wwa-design-2 .past-live-btn.disabled:hover {
    transform: none;
    box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   25. Back to Top Button
   ========================================================================== */
body.wwa-design-2 .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-colorful);
    z-index: 1000;
    animation: float 2s ease-in-out infinite;
}

body.wwa-design-2 .back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    text-align: center;
    transform: translateY(-1px);
}

body.wwa-design-2 .back-to-top:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: var(--shadow-strong);
}

body.wwa-design-2 .back-to-top:hover i {
    transform: translateY(-1px);
}

/* ==========================================================================
   26. Lightbox
   ========================================================================== */
body.wwa-design-2 .lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-fast);
}

body.wwa-design-2 .lightbox-overlay.visible {
    visibility: visible;
    opacity: 1;
}

body.wwa-design-2 .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

body.wwa-design-2 .lightbox-content img {
    max-width: 70%;
    max-height: 70%;
    object-fit: scale-down;
    display: block;
    margin: 0 auto;
}

body.wwa-design-2 .news-detail-modal .lightbox-content img {
    max-width: 65%;
    max-height: 65%;
    object-fit: scale-down;
}

body.wwa-design-2 .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

body.wwa-design-2 .lightbox-close:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* ==========================================================================
   27. Modal
   ========================================================================== */
body.wwa-design-2 .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-fast);
}

body.wwa-design-2 .modal-overlay.visible {
    visibility: visible;
    opacity: 1;
}

body.wwa-design-2 .modal-content {
    background: var(--gradient-accent);
    border-radius: var(--radius-large);
    max-width: 90%;
    max-height: 90%;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-strong);
    animation: bounceIn 0.5s ease-out;
    border: none;
    outline: none;
    margin: 20px;
    color: var(--text-light);
}

body.wwa-design-2 .modal-body {
    overflow-y: auto;
    max-height: calc(90vh - 100px);
    padding: 30px;
    color: var(--text-light) !important;
    line-height: 1.8;
    font-size: 1rem;
    background: none !important;
}

body.wwa-design-2 .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 2001;
}

body.wwa-design-2 .modal-close:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* ==========================================================================
   28. News Detail Modal Styles
   ========================================================================== */
body.wwa-design-2 .news-detail-date {
    color: #8b5cf6 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    margin-bottom: 0.5rem !important;
    display: block;
    background: none !important;
}

body.wwa-design-2 .news-detail-title {
    color: #1a202c !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    background: none !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

body.wwa-design-2 .news-detail-content {
    color: #2d3748 !important;
    line-height: 1.7 !important;
    font-size: 1rem !important;
    margin-bottom: 20px;
    background: none !important;
}

body.wwa-design-2 .news-detail-photo {
    margin-bottom: 20px;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

body.wwa-design-2 .news-detail-photo img {
    width: 50% !important;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

body.wwa-design-2 .news-detail-photo img:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

body.wwa-design-2 .past-news-photo img {
    width: 50% !important;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: 8px;
}

/* Modal body overrides for news content */
body.wwa-design-2 .modal-body h3 {
    color: #1a202c !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    background: none !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

body.wwa-design-2 .modal-body .news-date {
    color: #8b5cf6 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    margin-bottom: 0.5rem !important;
    display: block;
    background: none !important;
}

body.wwa-design-2 .modal-body .news-content {
    color: #2d3748 !important;
    line-height: 1.7 !important;
    font-size: 1rem !important;
    margin-bottom: 20px;
    background: none !important;
}

body.wwa-design-2 .modal-body .news-photo {
    margin-bottom: 20px;
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

body.wwa-design-2 .modal-body .news-photo img {
    width: 50% !important;
    height: auto;
    display: block;
    margin: 1rem auto;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

body.wwa-design-2 .modal-body .news-photo img:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

/* Template 4 specific modal styles */
body.wwa-design-2 .news-detail-modal-content,
body.wwa-design-2 .news-modal-content,
body.wwa-design-2 .live-modal-content {
    background: var(--card-background);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

body.wwa-design-2 .news-detail-modal-header,
body.wwa-design-2 .news-modal-header,
body.wwa-design-2 .live-modal-header {
    background: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    color: var(--text-light);
}

body.wwa-design-2 .news-detail-modal-body,
body.wwa-design-2 .news-modal-body,
body.wwa-design-2 .live-modal-body {
    color: var(--text-primary);
}

/* Past news/live item styles */
body.wwa-design-2 .past-news-item,
body.wwa-design-2 .past-live-item {
    border-bottom: 1px solid var(--border-color);
}

body.wwa-design-2 .past-news-date,
body.wwa-design-2 .past-live-date {
    color: var(--text-secondary);
}

body.wwa-design-2 .past-news-title,
body.wwa-design-2 .past-live-title {
    color: var(--text-primary);
}

body.wwa-design-2 .past-news-content {
    color: var(--text-secondary);
}

body.wwa-design-2 .news-detail-date,
body.wwa-design-2 .news-detail-title,
body.wwa-design-2 .news-detail-content {
    color: var(--text-primary) !important;
}

/* ==========================================================================
   29. Desktop/Mobile Toggle
   ========================================================================== */
body.wwa-design-2 .desktop-only {
    display: block;
}

body.wwa-design-2 .mobile-only {
    display: none;
}

/* ==========================================================================
   30. Scrollbar
   ========================================================================== */
body.wwa-design-2 ::-webkit-scrollbar {
    width: 8px;
}

body.wwa-design-2 ::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

body.wwa-design-2 ::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

body.wwa-design-2 ::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* ==========================================================================
   31. Focus States
   ========================================================================== */
body.wwa-design-2 button:focus,
body.wwa-design-2 a:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* ==========================================================================
   32. Scroll Animation (IntersectionObserver)
   ========================================================================== */
body.wwa-design-2 .content-section,
body.wwa-design-2 .card-base,
body.wwa-design-2 .member-card,
body.wwa-design-2 .news-card,
body.wwa-design-2 .live-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

body.wwa-design-2 .wwa-section:not(.animate-in) .content-section,
body.wwa-design-2 .wwa-section:not(.animate-in) .card-base,
body.wwa-design-2 .wwa-section:not(.animate-in) .member-card,
body.wwa-design-2 .wwa-section:not(.animate-in) .news-card,
body.wwa-design-2 .wwa-section:not(.animate-in) .live-card,
body.wwa-design-2 .content-section:not(.animate-in),
body.wwa-design-2 .card-base:not(.animate-in) {
    opacity: 0;
    transform: translateY(30px);
}

body.wwa-design-2 .animate-in {
    animation: animate-in 0.6s ease-out forwards !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ==========================================================================
   33. Responsive - Tablet (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    body.wwa-design-2 .container {
        padding: 0 15px 30px;
    }

    body.wwa-design-2 .unified-container {
        padding: 30px 20px;
        border-radius: var(--radius-medium);
    }

    body.wwa-design-2 .wwa-main {
        padding: 30px 20px;
        border-radius: var(--radius-medium);
    }

    body.wwa-design-2 .hero {
        height: 100vh;
        min-height: 600px;
    }

    body.wwa-design-2 .hero-content {
        padding: 40px 15px 20px;
        max-width: 95%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    body.wwa-design-2 .band-logo {
        width: 150px;
        height: 150px;
        border: 6px solid var(--bg-primary);
        margin-bottom: 20px;
    }

    body.wwa-design-2 .band-logo .placeholder-content i {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    body.wwa-design-2 .band-logo .placeholder-content span {
        font-size: 1.5rem;
    }

    body.wwa-design-2 .hero-content .band-name {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    body.wwa-design-2 .hero-content .band-tagline {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 100%;
    }

    body.wwa-design-2 .hero-content .band-stats {
        gap: 20px;
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }

    body.wwa-design-2 .hero-content .stat-item {
        min-width: 120px;
        padding: 10px;
    }

    body.wwa-design-2 .hero-content .stat-number {
        font-size: 1.8rem;
        margin-bottom: 3px;
    }

    body.wwa-design-2 .hero-content .stat-label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    body.wwa-design-2 .band-name {
        font-size: 2.5rem;
    }

    body.wwa-design-2 .section-title {
        font-size: 2rem;
    }

    body.wwa-design-2 .band-stats {
        grid-template-columns: 1fr;
    }

    body.wwa-design-2 .band-info-grid,
    body.wwa-design-2 .members-grid,
    body.wwa-design-2 .news-grid,
    body.wwa-design-2 .live-grid {
        grid-template-columns: 1fr !important;
    }

    body.wwa-design-2 .news-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    body.wwa-design-2 .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body.wwa-design-2 .youtube-grid {
        grid-template-columns: 1fr;
    }

    body.wwa-design-2 .sns-links {
        gap: 20px;
        flex-wrap: wrap; /* モバイルでは折り返しを許可 */
    }

    body.wwa-design-2 .sns-link {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    body.wwa-design-2 .bandconnect-logo {
        top: 15px;
        left: 15px;
        padding: 8px;
    }

    body.wwa-design-2 .bandconnect-logo img {
        height: 30px;
    }

    body.wwa-design-2 .band-photo {
        width: 250px;
        height: 250px;
    }

    /* Lightbox responsive */
    body.wwa-design-2 .lightbox-content img {
        max-width: 80%;
        max-height: 80%;
    }

    body.wwa-design-2 .news-detail-modal .lightbox-content img {
        max-width: 75%;
        max-height: 75%;
    }

    body.wwa-design-2 .news-detail-photo img {
        max-width: 75%;
        max-height: 75%;
    }

    body.wwa-design-2 .modal-body .news-photo img {
        max-width: 75%;
        max-height: 75%;
    }

    /* Desktop/Mobile toggle */
    body.wwa-design-2 .desktop-only {
        display: none;
    }

    body.wwa-design-2 .mobile-only {
        display: block;
    }
}

/* ==========================================================================
   34. Responsive - Small Mobile (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {
    body.wwa-design-2 .hero {
        height: 100vh;
        min-height: 550px;
    }

    body.wwa-design-2 .hero-content {
        padding: 30px 10px 15px;
    }

    body.wwa-design-2 .hero-content .band-name {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    body.wwa-design-2 .hero-content .band-tagline {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    body.wwa-design-2 .band-logo {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }

    body.wwa-design-2 .hero-content .band-stats {
        gap: 15px;
        margin-top: 15px;
    }

    body.wwa-design-2 .hero-content .stat-item {
        min-width: 100px;
        padding: 8px;
    }

    body.wwa-design-2 .hero-content .stat-number {
        font-size: 1.5rem;
    }

    body.wwa-design-2 .hero-content .stat-label {
        font-size: 0.7rem;
    }

    body.wwa-design-2 .photos-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    body.wwa-design-2 .news-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* Lightbox small screen */
    body.wwa-design-2 .lightbox-content img {
        max-width: 90%;
        max-height: 90%;
    }

    body.wwa-design-2 .news-detail-modal .lightbox-content img {
        max-width: 85%;
        max-height: 85%;
    }

    body.wwa-design-2 .news-detail-photo img {
        max-width: 85%;
        max-height: 85%;
    }

    body.wwa-design-2 .modal-body .news-photo img {
        max-width: 85%;
        max-height: 85%;
    }
}

/* ==========================================================================
   35. Print Styles
   ========================================================================== */
@media print {
    body.wwa-design-2 .bandconnect-logo,
    body.wwa-design-2 .back-to-top,
    body.wwa-design-2 .lightbox-overlay,
    body.wwa-design-2 .modal-overlay {
        display: none !important;
    }

    body.wwa-design-2 {
        background: white !important;
        color: black !important;
    }

    body.wwa-design-2 .unified-container {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* ==========================================================================
   36. Safari Color-Space Workaround
   ========================================================================== */
@supports (-webkit-appearance: none) and (not (overflow: -webkit-marquee)) and (not (-ms-ime-align: auto)) {
    body.wwa-design-2 {
        background: #667eea !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: #2c3e50 !important;
    }

    body.wwa-design-2 .unified-container,
    body.wwa-design-2 .wwa-main {
        background: #FFCCCC !important;
    }

    body.wwa-design-2 .hero-content .band-name {
        background: linear-gradient(135deg, #ff6b6b 0%, #feca57 25%, #48dbfb 50%, #a55eea 75%, #fd79a8 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }

    body.wwa-design-2 .hero-content .stat-number {
        background: linear-gradient(135deg, #e74c3c 0%, #d35400 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }

    body.wwa-design-2 .band-name {
        background: linear-gradient(135deg, #e74c3c 0%, #d35400 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }

    body.wwa-design-2 .gallery-subtitle {
        background: linear-gradient(135deg, #4ecdc4 0%, #45b7d1 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
    }

    /* Safari: override CSS variables */
    body.wwa-design-2 {
        --primary-color: #ff6b6b !important;
        --secondary-color: #4ecdc4 !important;
        --accent-color: #45b7d1 !important;
        --bg-primary: #FFCCCC !important;
        --text-primary: #2c3e50 !important;
        --text-light: #ffffff !important;
    }
}

/* iOS Safari specific */
@supports (-webkit-touch-callout: none) {
    body.wwa-design-2 {
        -webkit-text-size-adjust: 100% !important;
        -webkit-font-smoothing: antialiased !important;
    }
}
