/* --- CSS VARIABLES & FONTS --- */
:root {
    --bg-dark: #05080d;
    --bg-card: rgba(21, 29, 47, 0.7); /* Transparenter für Glassmorphism */
    --primary: #00f2ff; /* Neon Cyan */
    --primary-dim: rgba(0, 242, 255, 0.2);
    --secondary: #ffd700; /* Gold */
    --accent: #7000ff; /* Lila Akzent für Tiefe */
    
    --text-main: #ffffff;
    --text-muted: #8b9bb4;
    
    --font-head: 'Orbitron', sans-serif; /* Sci-Fi Headers */
    --font-body: 'Outfit', sans-serif;   /* Clean Body */
}

/* --- GLOBAL STYLES --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- ANIMATED BACKGROUND GRID --- */
.bg-grid {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        linear-gradient(var(--primary-dim) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary-dim) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center top;
    z-index: -1;
    opacity: 0.15;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) scale(2);
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% { background-position: center 0; }
    100% { background-position: center 1000px; }
}

/* --- HEADER & NAV --- */
header {
    background: rgba(5, 8, 13, 0.8);
    backdrop-filter: blur(10px); /* Frosted Glass Effekt */
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.logo span { color: var(--primary); }

nav ul { display: flex; gap: 2rem; align-items: center; }

nav a {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
}

nav a:not(.btn-cta):hover {
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary);
}

/* --- BUTTONS --- */
.btn-cta, .btn-primary, .btn-secondary {
    padding: 0.6rem 1.8rem;
    border-radius: 4px;
    font-weight: bold;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-cta {
    border: 1px solid var(--primary);
    color: var(--primary);
}
.btn-cta:hover, .btn-primary:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 25px var(--primary-dim);
}

.btn-primary {
    background: var(--primary);
    color: #000;
    border: 1px solid var(--primary);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}
.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.glow-effect {
    animation: glowPulse 3s infinite;
}
@keyframes glowPulse {
    0% { box-shadow: 0 0 5px var(--primary-dim); }
    50% { box-shadow: 0 0 15px rgba(0, 242, 255, 0.5); }
    100% { box-shadow: 0 0 5px var(--primary-dim); }
}

/* --- DROPDOWN --- */
.dropdown-container { position: relative; }
.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%; left: 0;
    background: rgba(10, 14, 23, 0.95);
    border: 1px solid var(--primary-dim);
    min-width: 180px;
    padding: 10px 0;
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 5px;
}
.dropdown-container:hover .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li a {
    display: block; padding: 10px 20px;
    font-size: 0.9rem;
}
.dropdown-menu li a:hover {
    background: var(--primary-dim);
    color: var(--primary);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
    background: radial-gradient(circle at center, #101825 0%, transparent 80%);
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto; margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Glitch Effect Simple */
.glitch-text {
    position: relative;
}
.glitch-text::before, .glitch-text::after {
    content: attr(data-text);
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.8;
}
.glitch-text::before {
    color: var(--primary);
    z-index: -1;
    transform: translate(-2px, 2px);
}
.glitch-text::after {
    color: var(--accent);
    z-index: -2;
    transform: translate(2px, -2px);
}

/* --- TALENTS & CARDS --- */
.container { padding: 6rem 10%; position: relative; }
.section-title {
    text-align: center;
    font-family: var(--font-head);
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.section-title::after {
    content: ''; display: block; width: 60px; height: 3px;
    background: var(--primary); margin: 15px auto 0;
}

.talents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.talent-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0; transform: translateY(30px);
    height: 100%; /* For JS Animation */
}
.talent-card.visible { opacity: 1; transform: translateY(0); }

.talent-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px var(--primary-dim);
}

.talent-img {
    height: 300px;
    background: linear-gradient(180deg, #1b2845 0%, #0a0e17 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}
.talent-img::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 30%;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

.talent-info { padding: 1.5rem; text-align: center; }
.talent-name {
    font-family: var(--font-head);
    font-size: 1.4rem; color: #fff; margin-bottom: 0.5rem;
}

.social-icons a {
    color: var(--text-muted); margin: 0 10px; font-size: 1.2rem;
}
.social-icons a:hover { color: var(--primary); }

/* --- ABOUT SECTION GLASS PANEL --- */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    max-width: 900px; margin: 0 auto;
    opacity: 0; transform: translateY(30px);
    transition: 0.8s ease;
}
.glass-panel.visible { opacity: 1; transform: translateY(0); }

.about-content {
    font-size: 1.1rem; color: #ccc; margin-bottom: 3rem;
}
.about-content strong { color: var(--primary); }
.about-content em { color: var(--secondary); font-style: normal; }

.stats-row { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.stat-box h3 {
    font-family: var(--font-head); font-size: 2.5rem; color: var(--primary);
    margin-bottom: 0.5rem;
}
.stat-box p { color: var(--text-muted); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; }

/* --- AUDITIONS --- */
.auditions {
    text-align: center;
    position: relative;
    padding: 8rem 20px;
    overflow: hidden;
}

.pulse {
    animation: pulseBadge 2s infinite;
}
@keyframes pulseBadge {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.status-badge {
    background: #2ecc71; color: #000; padding: 0.5rem 1.2rem;
    border-radius: 50px; font-weight: bold; text-transform: uppercase;
    font-size: 0.8rem; letter-spacing: 1px; display: inline-block; margin-bottom: 1.5rem;
}

/* --- FOOTER --- */
footer {
    background: #020305;
    padding: 4rem 10%;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}
.footer-links { margin-top: 1.5rem; }
.footer-links a { color: var(--text-muted); margin: 0 15px; font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary); }

/* --- MOBILE --- */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    nav ul { display: none; } /* Mobile Menu müsste mit JS erweitert werden */
    .stats-row { gap: 2rem; }
}


/* Spezifisches CSS nur für diese Seite (kannst du später in styles.css verschieben) */
.roster-header {
    padding-top: 120px;
    text-align: center;
    margin-bottom: 2rem;
}

.group-card-wide {
    display: flex;
    flex-direction: row; /* Nebeneinander */
    background: rgba(21, 29, 47, 0.6);
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 3rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    min-height: 300px;
}

.group-card-wide:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.15);
    transform: translateY(-5px);
}

.group-visual {
    flex: 1;
    background: linear-gradient(45deg, #1b2845, #0a0e17);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.group-visual img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.group-card-wide:hover .group-visual img {
    transform: scale(1.05);
}

.group-details {
    flex: 1.5;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.group-title {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.group-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .group-card-wide {
        flex-direction: column;
    }
    .group-visual {
        min-height: 200px;
    }
    .group-details {
        padding: 1.5rem;
        text-align: center;
    }
}

.btn-profile {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-bottom: 0.5rem; /* Abstand zu den Social Icons */
}

.btn-profile:hover {
    background: var(--primary);
    color: #000; /* Schwarze Schrift auf Neon-Hintergrund */
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
    transform: translateY(-2px);
}

.profile-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    gap: 4rem;
    padding-top: 120px;
    padding-bottom: 4rem;
    position: relative;
}

/* Hintergrund Akzent für Maruga (Phoenix/Fire) */
.hero-bg-accent {
    position: absolute;
    top: 20%; right: 10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
}

/* Das Charakterbild */
.char-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.char-img {
    max-height: 80vh;
    width: auto;
    filter: drop-shadow(0 0 25px rgba(255, 69, 0, 0.3)); /* Roter Glow für Phoenix */
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    transition: transform 0.3s ease;
}
.char-img:hover { transform: scale(1.02); }

/* Info Bereich rechts */
.char-info { flex: 1.2; max-width: 700px; }

.char-role {
    color: var(--secondary); /* Gold */
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: inline-block;
    border-bottom: 1px solid var(--secondary);
    padding-bottom: 5px;
}

.char-name {
    font-size: 3.5rem;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fff, #ff4500); /* Weiß zu Rot Verlauf */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.char-jp-name {
    font-size: 1.5rem; color: var(--text-muted); margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.quote-box {
    font-style: italic; color: #fff; font-size: 1.2rem;
    margin-bottom: 2rem; border-left: 3px solid #ff4500; padding-left: 1rem;
}

/* Lore Box */
.lore-box {
    background: rgba(21, 29, 47, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    line-height: 1.7;
    color: #d1d5db;
    
    width: 95%; 
    max-width: 600px; 
}
/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item h4 { color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; margin-bottom: 5px;}
.stat-item p { font-size: 1.1rem; font-family: 'Orbitron', sans-serif; color: #fff; }

/* --- CONTENT SECTIONS (UNTEN) --- */
.content-section {
    background: rgba(10, 14, 23, 0.8);
    padding: 4rem 10%;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.section-header {
    font-family: 'Orbitron', sans-serif; font-size: 2rem; color: var(--primary);
    margin-bottom: 2rem; text-transform: uppercase;
}

/* Listen Styling */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.info-list h3 { color: var(--secondary); margin-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.5rem; }
.info-list ul { list-style: none; padding-left: 0; }
.info-list li { margin-bottom: 0.5rem; color: #ccc; font-size: 0.95rem; display: flex; align-items: flex-start; gap: 10px; }
.info-list li::before { content: '▸'; color: var(--primary); }

.tag {
    background: rgba(255, 69, 0, 0.2); color: #ff9f43; padding: 2px 8px; border-radius: 4px; font-size: 0.8rem; margin-right: 5px;
}

/* Discography */
.discography-grid { display: flex; flex-wrap: wrap; gap: 1rem; }
.song-card { background: rgba(255,255,255,0.05); padding: 10px 20px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); }
.song-card:hover { border-color: var(--primary); background: rgba(0, 242, 255, 0.1); }

/* Back Button */
.back-nav {
    position: fixed; top: 100px; left: 5%; font-size: 0.9rem; opacity: 0.7; z-index: 100;
    background: rgba(0,0,0,0.5); padding: 5px 15px; border-radius: 20px;
}
.back-nav:hover { opacity: 1; color: var(--primary); }

@media (max-width: 900px) {
    .profile-hero { flex-direction: column; text-align: center; padding-top: 100px;}
    .char-info { padding: 0 20px; }
    .back-nav { position: absolute; top: 80px; left: 20px; }
    .details-grid { grid-template-columns: 1fr; }
}

/* --- ACCORDION STYLES --- */
.accordion-container {
    /* 1. Begrenzung auf Desktop (z.B. 800px statt 900px) */
    max-width: 800px; 
    
    /* 2. Damit es auf Handys nicht am Rand klebt: */
    width: 90%; 
    
    /* 3. Zentriert die Box in der Mitte */
    margin: 0 auto; 
    
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: rgba(21, 29, 47, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Der Titelbalken, auf den man klickt */
.accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.accordion-header h3 {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accordion-icon {
    color: var(--text-muted);
    transition: transform 0.4s ease;
}

/* Hover Effekt */
.accordion-header:hover {
    background: rgba(255, 69, 0, 0.1); /* Phoenix Orange Glow */
}
.accordion-header:hover h3 { color: #ff4500; }

/* --- AKTIVER ZUSTAND (OFFEN) --- */
.accordion-item.active {
    border-color: #ff4500; /* Roter Rahmen wenn offen */
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.1);
}

.accordion-item.active .accordion-header {
    background: linear-gradient(90deg, rgba(255, 69, 0, 0.2), transparent);
}

.accordion-item.active h3 { color: #ff4500; }

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: #ff4500;
}

/* Der Inhalt (Animation) */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.accordion-body {
    padding: 2rem;
    color: #ccc;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 69, 0, 0.2);
}

/* --- TIMELINE STYLING (IM HISTORY TAB) --- */
.timeline {
    border-left: 2px solid #ff4500;
    padding-left: 20px;
    margin-left: 10px;
}
.timeline-event { margin-bottom: 20px; position: relative; }
.timeline-event::before {
    content: ''; position: absolute; left: -26px; top: 5px;
    width: 10px; height: 10px; background: #ff4500; border-radius: 50%;
    box-shadow: 0 0 10px #ff4500;
}
.timeline-date { color: #ff4500; font-weight: bold; font-family: 'Orbitron', sans-serif; font-size: 0.9rem;}

.song-card {
    /* ... deine existierenden Styles ... */
    cursor: pointer; /* Zeigt die Hand an */
    user-select: none; /* Verhindert, dass man den Text beim schnellen Klicken markiert */
}