/* ================================================
   Eyes in the Static - Official Website Styles
   ================================================ */

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00ffff;
    --secondary-color: #ff00ff;
    --bg-dark: #000000;
    --bg-dark-secondary: #0a0a0a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --border-color: #333333;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* === Hero Section === */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
}

.scanline {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: scan 8s linear infinite;
    opacity: 0.3;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

.glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 255, 0.03),
        rgba(0, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 0 0 20px var(--primary-color);
}

.glitch {
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 90%, 100% {
        text-shadow: 0 0 20px var(--primary-color);
    }
    92% {
        text-shadow: 3px 0 var(--primary-color), -3px 0 var(--secondary-color);
    }
    94% {
        text-shadow: -3px 0 var(--primary-color), 3px 0 var(--secondary-color);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.hero-date {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
}

/* === Sections === */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 60px;
    color: var(--text-light);
    text-shadow: 0 0 15px var(--primary-color);
}

/* === About Section === */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 30px;
    color: var(--text-gray);
}

/* === Members Section === */
.members-section {
    background-color: var(--bg-dark-secondary);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.member-card {
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.member-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.member-image-container {
    margin-bottom: 20px;
}

.member-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.member-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.member-role {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* === Concept Section === */
.concept-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.concept-item {
    padding: 30px;
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.concept-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.concept-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* === SNS Section === */
.sns-section {
    background-color: var(--bg-dark-secondary);
}

.sns-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.sns-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sns-link:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--primary-color);
}

.sns-icon {
    font-size: 1.5rem;
}

/* === Page Header === */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 15px;
    color: var(--text-light);
    text-shadow: 0 0 20px var(--primary-color);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    letter-spacing: 2px;
}

/* === News Section === */
.news-list {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    padding: 30px;
    margin-bottom: 30px;
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
}

.news-date {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.news-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* === Release Section === */
.release-content {
    max-width: 900px;
    margin: 0 auto;
}

.release-header {
    text-align: center;
    margin-bottom: 50px;
}

.release-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.release-album-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.release-date {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.release-description {
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border-radius: 10px;
}

.release-description p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-gray);
}

.tracklist-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.tracklist-items {
    list-style: none;
    counter-reset: track;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.track-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.track-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 40px;
}

.track-theme {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
}

.bonus-track {
    border-left: 4px solid var(--secondary-color);
}

.bonus-track .track-number {
    color: var(--secondary-color);
}

.release-info {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border-radius: 10px;
    text-align: center;
}

.release-info-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.release-info p {
    font-size: 1rem;
    color: var(--text-gray);
}

/* === Live Section === */
.live-list {
    max-width: 900px;
    margin: 0 auto;
}

.live-item {
    position: relative;
    padding: 30px;
    margin-bottom: 30px;
    background: linear-gradient(145deg, #0a0a0a, #000000);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.live-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    background-color: var(--secondary-color);
    color: var(--bg-dark);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
}

.live-date {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

.live-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.live-details {
    margin-bottom: 15px;
}

.live-venue,
.live-time,
.live-ticket {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-gray);
}

.live-note {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-style: italic;
}

/* === Policy Pages === */
.policy-section {
    background-color: var(--bg-dark-secondary);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-intro {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(145deg, #000000, #0a0a0a);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    color: var(--text-gray);
}

.policy-article {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(145deg, #000000, #0a0a0a);
    border-radius: 5px;
}

.policy-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.policy-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-gray);
}

.policy-list {
    list-style: none;
    padding-left: 20px;
    margin-top: 15px;
}

.policy-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.policy-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.policy-date {
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 40px;
}

/* === Footer === */
.footer {
    padding: 50px 0;
    background-color: var(--bg-dark-secondary);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* === Animations === */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 768px) {
    .navbar .container {
        padding: 15px 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        padding: 30px;
        gap: 20px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .section {
        padding: 60px 0;
    }

    .members-grid {
        grid-template-columns: 1fr;
    }

    .concept-content {
        grid-template-columns: 1fr;
    }

    .sns-links {
        flex-direction: column;
        align-items: center;
    }

    .sns-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
