:root {
    --bg-dark: #0b0c10;
    --card-dark: #1f2833;
    --text-main: #c5a880;
    --text-light: #ffffff;
    --neon-green: #00ffaa;
    --neon-pink: #ff007f;
    --ambient-glow: linear-gradient(135deg, rgba(0, 255, 170, 0.15), rgba(255, 0, 127, 0.15));
}

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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.text-center {
    text-align: center;
}

/* Hero Section Style matching Page 1 & 2 vibe */
.hero {
    position: relative;
    background: #0f1115;
    background-image: var(--ambient-glow);
    min-height: 80vh;
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.brand-title {
    font-size: 3.5rem;
    letter-spacing: 5px;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(0, 255, 170, 0.4);
    margin-bottom: 5px;
}

.tagline {
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--neon-pink);
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.4);
}

.title-divider {
    width: 100px;
    margin: 20px auto;
    border: 1px solid var(--text-light);
    opacity: 0.3;
}

.about-box {
    margin-top: 40px;
    background: rgba(31, 40, 51, 0.6);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.about-box h2 {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--neon-green);
}

.about-box p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #cbd5e1;
}

.about-box .mystery-text {
    font-style: italic;
    color: #94a3b8;
    margin-bottom: 0;
}

/* Latest Release Style matching Page 3 Vibe */
.release-section {
    background-color: #0d0e12;
    padding: 60px 0;
}

.section-title {
    font-size: 1.8rem;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.release-card {
    max-width: 450px;
    margin: 0 auto 40px auto;
    background-color: var(--card-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #151a22; /* Fallback visual matching anime artwork vibe */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.play-btn {
    width: 65px;
    height: 65px;
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
    transition: transform 0.2s ease;
}

.play-btn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    margin-left: 4px;
}

.release-card:hover .play-btn {
    transform: scale(1.1);
}

.release-info {
    padding: 20px;
}

.release-info h3 {
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.artist-name {
    font-size: 0.95rem;
    color: #94a3b8;
    letter-spacing: 1px;
}

/* Streaming Links */
.streaming-links h4 {
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #94a3b8;
}

.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-spotify {
    background-color: #1DB954;
    color: #fff;
}

.btn-youtube {
    background-color: #ff0000;
    color: #fff;
}

.btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Footer Section */
.site-footer {
    background-color: #07080a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-box h3 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.email-link {
    color: var(--neon-green);
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.footer-divider {
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.credits {
    font-size: 0.9rem;
    color: #64748b;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-links a {
    color: #475569;
    text-decoration: none;
    font-size: 0.85rem;
    margin: 0 10px;
}

.footer-links a:hover {
    color: #94a3b8;
}

@media (max-width: 600px) {
    .brand-title { font-size: 2.5rem; }
    .buttons { flex-direction: column; width: 100%; max-width: 250px; margin: 0 auto; }
}