@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Outfit:wght@300;500;700&display=swap');

:root {
    --bg-color: #050505;
    --surface-color: #0f111a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-primary: #00f0ff;
    --accent-secondary: #7000ff;
    --gradient-main: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    --glass-bg: rgba(20, 22, 30, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* --- Layout Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

section {
    padding: 8rem 0;
    position: relative;
}

/* --- Ambient Background --- */
.ambient-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* --- Animations --- */
.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-100 {
    animation-delay: 0.1s;
}

/* .delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
} */

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Navigation --- */
/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.8rem 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* --- Hero Section --- */
#hero {
    min-height: 100vh;
    height: auto;
    padding-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 1)), url('images/characters.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 120px;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(112, 0, 255, 0.1);
    border: 1px solid var(--accent-secondary);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    display: block;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-btn.primary {
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.hero-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent-primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.hero-btn.primary:hover {
    color: #000;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
}

.hero-btn.primary:hover::before {
    width: 100%;
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.partnership-badge {
    margin-top: 3rem;
    font-size: 0.8rem;
    opacity: 0.7;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.partnership-badge span {
    font-weight: 700;
    color: var(--text-primary);
}

/* --- Hero Visual (Screenshot) --- */
.hero-visual {
    margin-top: 4rem;
    position: relative;
    max-width: 900px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    perspective: 1000px;
}

.glass-window-frame {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    /* Inner border stroke */
    backdrop-filter: blur(5px);
    transform: rotateX(5deg) scale(0.95);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.glass-window-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1), transparent 70%);
    pointer-events: none;
    border-radius: 12px;
}

.glass-window-frame:hover {
    transform: rotateX(0deg) scale(1);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.3);
}

.glass-window-frame img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Add a subtle reflection/shine */
.hero-visual::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: var(--accent-secondary);
    filter: blur(100px);
    opacity: 0.2;
    z-index: -1;
    border-radius: 50%;
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- About Section --- */
#about {
    background: linear-gradient(180deg, transparent, rgba(15, 17, 26, 0.5));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-visual {
    height: 400px;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-visual:hover img {
    transform: scale(1.05);
}

/* Abstract visual for About */
.waveform-bar {
    width: 10px;
    background: var(--accent-primary);
    margin: 0 5px;
    border-radius: 5px;
    animation: wave 1s ease-in-out infinite;
}

.waveform-bar:nth-child(2) {
    animation-delay: 0.1s;
    height: 60px;
}

.waveform-bar:nth-child(3) {
    animation-delay: 0.2s;
    height: 80px;
}

.waveform-bar:nth-child(4) {
    animation-delay: 0.3s;
    height: 40px;
}

.waveform-bar:nth-child(1) {
    height: 50px;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(1.5);
        opacity: 1;
    }
}


/* --- Footer --- */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-secondary);
}

.socials {
    margin-bottom: 1.5rem;
}

.socials a {
    font-size: 1.5rem;
    margin: 0 1rem;
    color: var(--text-primary);
}

.socials a:hover {
    color: var(--accent-primary);
}

/* --- GUI Announcement Section --- */
.gui-announcement-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 240, 255, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid var(--glass-border);
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(112, 0, 255, 0.2));
    border: 1px solid var(--accent-primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
    }
}

.announcement-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.announcement-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.gui-demo-video {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.15), 0 0 0 1px var(--glass-border);
}

.gui-demo-video video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .announcement-title {
        font-size: 1.8rem;
    }

    .gui-announcement-section {
        padding: 100px 0 2rem;
    }
}

/* Mobile Nav Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    border-color: var(--accent-primary);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        z-index: 99;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .nav-toggle {
        display: flex;
    }
}




/* Optimized Hero & Utility Classes */
/* .hero-bg-overlay removed - merged into #hero */

.text-gradient-logo {
    -webkit-text-fill-color: initial !important;
    /* Override needed depending on context */
    /* Or better, handle via specific class if possible */
}

/* Feature Grid Fix */
.grid-col-full {
    grid-column: 1 / -1;
}

/* About Section Centering */
.about-centered {
    display: block;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Links */
.footer-link-subtle {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link-subtle:hover {
    color: var(--primary-color);
}

/* =========================================
   Comparison Page
   ========================================= */
.comparison-section {
    padding-top: 140px;
    padding-bottom: 80px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-primary);
    font-weight: 700;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.check-yes {
    color: #4ade80;
}

.check-no {
    color: #f87171;
}

.feature-highlight {
    background: rgba(112, 0, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent-secondary);
    margin: 2rem 0;
}

/* Specific highlight variants */
.feature-highlight.variant-vocaloid {
    border-left-color: #f472b6;
}

.feature-highlight.variant-utau {
    border-left-color: #60a5fa;
}

.feature-highlight.variant-suno {
    border-left-color: #FB2C2C;
    /* Suno-like reddish color or distinct accent */
}

/* Typography & Spacing Helpers for Comparison */
.text-accent-primary {
    color: var(--accent-primary);
}

.text-accent-pink {
    color: #f472b6;
}

.text-accent-blue {
    color: #60a5fa;
}

.text-accent-suno {
    color: #FB2C2C;
}

.text-light {
    color: #ccc;
}

.line-height-relaxed {
    line-height: 1.8;
}

.line-height-double {
    line-height: 2;
}

.section-margin-large {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.section-margin-xlarge {
    margin-top: 5rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.text-center {
    text-align: center;
}

.btn-wide {
    display: inline-block;
    padding: 1rem 3rem;
}

.icon-spacer {
    margin-left: 0.5rem;
}

.section-title {
    font-size: 2rem;
}

/* =========================================
   Synthesis Page (Demo)
   ========================================= */

/* Badge style for section labels (DEMO, INFO, TOPIC etc) */
.vision-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.9);
    /* High contrast white text */
    background: rgba(112, 0, 255, 0.3);
    border: 1px solid rgba(112, 0, 255, 0.6);
    border-radius: 50px;
    margin-bottom: 1rem;
}

.demo-section {
    padding-top: 140px;
    padding-bottom: 80px;
}

.demo-section h2 {
    letter-spacing: 0;
    /* Reset any unusual letter spacing */
}

.demo-section .section-subtitle {
    letter-spacing: 0.02em;
    /* Subtle, consistent */
}

.demo-console {
    background: rgba(18, 18, 24, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.05);
    backdrop-filter: blur(20px);
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.demo-console::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

.console-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.console-status {
    font-family: 'Courier New', monospace;
    color: var(--accent-primary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-primary);
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.char-selector {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.char-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.char-btn:hover,
.char-btn.active {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.char-btn i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ddd;
}

.char-btn.active i {
    color: var(--accent-primary);
}

.char-btn span {
    font-size: 0.9rem;
    font-weight: 600;
}

.style-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: flex-start;
}

.style-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s;
}

.style-btn:hover,
.style-btn.active {
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
    background: rgba(112, 0, 255, 0.1);
}

.play-area {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.waveform-viz {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 2rem;
}

.wave-bar {
    width: 4px;
    height: 20%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: height 0.1s;
}

.play-btn-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.play-btn-large:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.5);
}

.tech-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

@media (max-width: 900px) {
    .tech-section {
        grid-template-columns: 1fr;
    }
}

.tech-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
}

/* =========================================
   Character Detail Pages
   ========================================= */
.char-detail-section {
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: stretch;
    gap: 4rem;
}

.char-portrait {
    flex: 1;
    background: radial-gradient(circle at center, #1a1a2e 0%, #050505 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    position: relative;
    min-height: 600px;
}

.char-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.char-content {
    flex: 1;
}

.char-name-large {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.char-jp-name-large {
    font-size: 1.5rem;
    color: var(--accent-primary);
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
    display: block;
}

.char-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid var(--accent-primary);
}

.audio-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.audio-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.audio-section.sample-variant {
    border-color: rgba(255, 255, 255, 0.05);
}

.char-specs {
    margin-bottom: 2rem;
}

.profile-heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-primary);
    padding-left: 1rem;
}

audio {
    width: 100%;
    height: 40px;
    outline: none;
}

audio::-webkit-media-controls-panel {
    background-color: #f0f0f0;
}

/* --- Responsive Video --- */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 900px) {
    .char-detail-section {
        flex-direction: column;
    }

    .char-portrait {
        width: 100%;
        min-height: 400px;
    }
}

/* =========================================
   Utility Extensions
   ========================================= */
.mb-0-5 {
    margin-bottom: 0.5rem;
}

.mb-1-5 {
    margin-bottom: 1.5rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-5 {
    margin-top: 5rem;
}

.text-sm {
    font-size: 0.8rem;
}

.text-lg {
    font-size: 1.1rem;
}

.text-xl {
    font-size: 1.5rem;
}

.text-2xl {
    font-size: 2rem;
}

.font-mono {
    font-family: 'Courier New', monospace;
}

.text-gray {
    color: #666;
}

.text-gray-light {
    color: #aaa;
}

.text-gray-lighter {
    color: #ddd;
}

.text-warning {
    color: #ffcc00;
}

.letter-spacing-wide {
    letter-spacing: 2px;
}

.block {
    display: block;
}

.input-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.input-field {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    width: 100%;
    outline: none;
    font-family: 'Meiryo', sans-serif;
}

.tech-diagram {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #888;
}

.tech-diagram-box {
    border: 1px solid var(--accent-primary);
    padding: 1rem;
    border-radius: 8px;
    margin: 0.5rem 0;
    color: white;
}

.text-secondary {
    color: var(--text-secondary);
}

.text-accent-secondary {
    color: var(--accent-secondary);
}

.mr-1 {
    margin-right: 1rem;
}

.pt-0-5 {
    padding-top: 0.5rem;
}

.ml-1-5 {
    margin-left: 1.5rem;
}

.line-height-relaxed {
    line-height: 1.8;
}

.line-height-double {
    line-height: 2;
}

.text-white {
    color: white;
}

.text-fill-initial {
    -webkit-text-fill-color: initial;
}

/* =========================================
   Characters List Page
   ========================================= */
.characters-section {
    padding-top: 140px;
    padding-bottom: 80px;
}

.char-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.char-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.char-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.char-image-area {
    height: 300px;
    background: radial-gradient(circle at center, #1a1a2e 0%, #050505 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.char-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Placeholder for character illustrations if not available */
.char-placeholder {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.1);
}

.char-info {
    padding: 2rem;
}

.char-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Outfit', sans-serif;
}

.char-jp-name {
    font-size: 1rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: 0.1em;
}

.char-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* =========================================
   Vision 2026 Special Section
   ========================================= */
#vision-2026 {
    background: linear-gradient(180deg, rgba(5, 5, 5, 1) 0%, rgba(20, 10, 40, 1) 50%, rgba(5, 5, 5, 1) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vision-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.vision-year {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, #7000ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
    position: static;
    transform: none;
    margin-bottom: 2rem;
    filter: none;
}

.vision-badge {
    background: rgba(112, 0, 255, 0.2);
    border: 1px solid #7000ff;
    color: #b388ff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.3);
}

.vision-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff, #b388ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-desc {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 800px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.database-highlight {
    color: var(--accent-primary);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}



/* =========================================
   Support Page Styles
   ========================================= */
.support-section {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.support-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 300px;
    text-decoration: none !important;
    /* Force override for links */
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
}

.support-card-left {
    align-items: flex-start;
    text-align: left;
    height: auto;
}

.platform-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.platform-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.platform-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.support-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 80%;
}

.btn-patreon {
    background: #FF424D;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 66, 77, 0.3);
}

.btn-patreon:hover {
    background: #ff5c66;
    box-shadow: 0 6px 20px rgba(255, 66, 77, 0.5);
}

.btn-fanbox {
    background: #fff6c3;
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 246, 195, 0.3);
}

.btn-fanbox:hover {
    background: #fffbe0;
    box-shadow: 0 6px 20px rgba(255, 246, 195, 0.5);
}

.btn-kofi {
    background: #29abe0;
    color: #fff;
    box-shadow: 0 4px 15px rgba(41, 171, 224, 0.3);
}

.btn-kofi:hover {
    background: #4cbbf2;
    box-shadow: 0 6px 20px rgba(41, 171, 224, 0.5);
}

.btn-ofuse {
    background: linear-gradient(135deg, #6A11CB 0%, #2575FC 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 117, 252, 0.3);
}

.btn-ofuse:hover {
    box-shadow: 0 6px 20px rgba(37, 117, 252, 0.5);
    filter: brightness(1.1);
}

.region-badge {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #aaa;
}

/* =========================================
   Vision Page Styles
   ========================================= */
.vision-hero {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
}

.vision-hero h1 {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.vision-hero .subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.timeline-section {
    padding: 4rem 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 350px;
    margin-right: 30px;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    margin-left: 30px;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.timeline-content h3 {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.now-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.roadmap-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, transparent, rgba(0, 243, 255, 0.03), transparent);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.phase-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.1);
}

.phase-card.current {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
}

.phase-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.phase-year {
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.phase-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.phase-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.phase-features {
    list-style: none;
    padding: 0;
}

.phase-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.phase-features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-size: 0.7rem;
}

.phase-status {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-current {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #000;
}

.status-planned {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.cta-section {
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.3);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 50px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
    }

    .timeline-year {
        left: 40px;
        transform: none;
        top: -10px;
    }
}

/* =========================================
   Utility Classes for Refactoring
   ========================================= */
.text-initial-fill {
    -webkit-text-fill-color: initial !important;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.section-head-border-secondary {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    border-left: 4px solid var(--accent-secondary);
    padding-left: 1rem;
}

.section-head-border-primary {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    border-left: 4px solid var(--accent-primary);
    padding-left: 1rem;
}

.story-box {
    max-width: 800px;
    margin: 4rem auto 0;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
}

.story-title {
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}


/* =========================================
   QA Page Styles
   ========================================= */
.qa-section {
    padding-top: 120px;
    padding-bottom: 80px;
}

.qa-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.qa-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.qa-question i {
    margin-top: 0.2rem;
}

.qa-answer {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 2.25rem;
}

.qa-info-box {
    background: rgba(0, 240, 255, 0.05);
    border-left: 4px solid var(--accent-primary);
    padding: 1.5rem;
    margin-bottom: 4rem;
    border-radius: 0 8px 8px 0;
    color: var(--text-secondary);
}

/* =========================================
   Products Page Styles
   ========================================= */
.products-section {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 80vh;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
}

.product-icon-area {
    height: 160px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent-primary);
}

.product-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-desc {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.product-link:hover {
    gap: 0.8rem;
}

/* Pricing Table Styles */
.products-section .section-title {
    /* Scoped to products section to avoid conflicts */
    font-size: 1.8rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-primary);
    padding-left: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.price-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-card.pro {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(112, 0, 255, 0.05) 100%);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-primary);
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    margin: 0.5rem 0;
    color: var(--text-primary);
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
}

.price-features li i {
    color: var(--accent-primary);
}

.price-features li.disabled {
    opacity: 0.5;
    text-decoration: line-through;
}

/* Voice Library Styles */
.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2rem;
}

.voice-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s;
}

.voice-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-secondary);
}

.voice-thumb {
    height: 200px;
    background-size: cover;
    background-position: center top;
    background-color: #111;
}

.voice-info {
    padding: 1.5rem;
    text-align: center;
}

.voice-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-secondary);
    font-family: 'Outfit', sans-serif;
    margin: 0.5rem 0 1rem 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline {
    border: 1px solid var(--accent-secondary);
    color: var(--accent-secondary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent-secondary);
    color: #fff;
}

/* =========================================
   News Page Styles
   ========================================= */
.news-section {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 80vh;
}

.news-list {
    max-width: 800px;
    margin: 0 auto;
}

.news-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.news-item:hover {
    transform: translateX(5px);
    border-color: var(--accent-primary);
}

.news-date {
    font-family: 'Outfit', sans-serif;
    color: var(--text-secondary);
    font-size: 0.9rem;
    min-width: 100px;
}

.news-category {
    font-size: 0.8rem;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 1rem;
}

.cat-release {
    background: rgba(0, 240, 255, 0.2);
    color: var(--accent-primary);
}

.cat-info {
    background: rgba(112, 0, 255, 0.2);
    color: var(--accent-secondary);
}

.news-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* =========================================
   More Utility Classes
   ========================================= */
.list-none {
    list-style-type: none;
}

.text-left {
    text-align: left;
}

.text-sm {
    font-size: 0.9em;
}

.text-gray {
    color: #888;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-60 {
    opacity: 0.6;
}

.cursor-default {
    cursor: default;
}

.pl-2 {
    padding-left: 1rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Assuming fairly large margin based on context */
.mt-8 {
    margin-top: 5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 3rem;
}

.mb-8 {
    margin-bottom: 4rem;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-dark-gray {
    background: #222;
}

.text-dark-gray {
    color: #555;
}


/* =========================================
   GUI Page Styles
   ========================================= */
.gui-hero {
    padding-top: 140px;
    text-align: center;
    padding-bottom: 4rem;
}

.gui-screenshot-container {
    margin-top: 3rem;
    position: relative;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.15);
    border: 1px solid var(--glass-border);
    display: inline-block;
    max-width: 100%;
}

.gui-screenshot-container img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
    cursor: pointer;
}

.gui-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    text-align: left;
}

.gui-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.gui-feature-item i {
    color: var(--accent-primary);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.gui-feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cta-button-launch {
    background: var(--accent-primary);
    color: #000;
    border: none;
    padding: 1rem 3rem;
}

.feature-icon-lg {
    font-size: 2rem;
    color: var(--accent-primary);
}

.pro-features-section {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--accent-primary);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.glow-effect {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--accent-primary);
    filter: blur(80px);
    opacity: 0.3;
}

.related-tool-card {
    background: var(--glass-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.tag-app-type {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.download-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   Blog Page Styles
   ========================================= */
.blog-section {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 80vh;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-primary);
}

.blog-thumb {
    height: 180px;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-thumb img {
    opacity: 1;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-snippet {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: auto;
}

.read-more {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.blog-thumb-magic {
    background: linear-gradient(135deg, #2d1f3d, #1a1a2e);
}

.blog-thumb-globe {
    background: linear-gradient(135deg, #1e1e2e, #313244);
}

.blog-thumb-dark {
    background: linear-gradient(45deg, #222, #333);
}

.thumb-icon-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f5af0;
    font-size: 3rem;
}

.thumb-icon-container.globe {
    color: #585b70;
}

/* =========================================
   Synthesis (Demo) Page Styles
   ========================================= */
.demo-section {
    padding-top: 140px;
    padding-bottom: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.demo-console {
    background: #1a1a1a;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.console-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.console-status {
    display: flex;
    align-items: center;
    font-family: 'Courier New', monospace;
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    margin-right: 0.5rem;
    box-shadow: 0 0 5px var(--accent-primary);
}

.char-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.char-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.char-btn:hover,
.char-btn.active {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--accent-primary);
}

.char-btn i {
    font-size: 1.5rem;
    color: #ccc;
}

.char-btn.active i {
    color: var(--accent-primary);
}

.input-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.input-field {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    width: 100%;
    font-family: inherit;
}

.input-field:focus {
    outline: none;
}

.style-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.style-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #bbb;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.style-btn:hover,
.style-btn.active {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
    color: #fff;
}

.play-area {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

.tech-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .tech-section {
        grid-template-columns: 1fr;
    }
}

.tech-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
}

.tech-diagram {
    font-family: monospace;
    text-align: center;
    line-height: 1.5;
    color: #bbb;
}

.tech-diagram-box {
    border: 1px solid var(--accent-secondary);
    padding: 0.5rem 1rem;
    display: inline-block;
    border-radius: 6px;
    background: rgba(112, 0, 255, 0.1);
}

/* Synthesis Utilities */
.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

/* Adjusted to not be huge */
.text-gray-light {
    color: #aaa;
}

.text-gray-lighter {
    color: #ccc;
}

.text-warning {
    color: #ffcc00;
}

.line-height-relaxed {
    line-height: 1.6;
}

.line-height-double {
    line-height: 2;
}

.letter-spacing-wide {
    letter-spacing: 0.1em;
}

.mb-0-5 {
    margin-bottom: 0.5rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-1-5 {
    margin-bottom: 1.5rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.ml-1-5 {
    margin-left: 1.5rem;
}

.mr-1 {
    margin-right: 1rem;
}

.pt-0-5 {
    padding-top: 0.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.btn-wide {
    padding-left: 3rem;
    padding-right: 3rem;
}

.icon-spacer {
    margin-left: 0.5rem;
}


.mb-0 {
    margin-bottom: 0 !important;
}

.text-center {
    text-align: center;
}

.pb-4 {
    padding-bottom: 2rem;
}

.pb-6 {
    padding-bottom: 4rem;
}

.text-accent-secondary {
    color: var(--accent-secondary);
}

.accent-link {
    color: var(--accent-primary);
}

/* =========================================
   Blog Article Styles (Reusable)
   ========================================= */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 140px;
    padding-bottom: 80px;
}

.article-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 2rem;
}

.article-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.article-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.article-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-left: 4px solid var(--accent-primary);
    padding-left: 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.back-link:hover {
    color: var(--accent-primary);
}


/* =========================================
   Guidelines Page Styles
   ========================================= */
.guideline-section {
    padding-top: 140px;
    padding-bottom: 80px;
}

.guideline-block {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.guideline-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.spec-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.spec-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.spec-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
}

.checklist {
    list-style: none;
}

.checklist li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.checklist li::before {
    content: "\f00c";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-secondary);
}

.warning-box {
    background: rgba(255, 50, 50, 0.1);
    border: 1px solid rgba(255, 50, 50, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.warning-title {
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* =========================================
   Terms Page Styles
   ========================================= */
.terms-section {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 80vh;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-primary);
}

.terms-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.terms-content p,
.terms-content li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-content ul {
    padding-left: 1.5rem;
}

.guarantee-box {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(112, 0, 255, 0.1));
    border: 1px solid var(--accent-primary);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.guarantee-box h3 {
    color: var(--accent-primary);
    margin-top: 0;
}

.guarantee-box p {
    color: var(--text-primary);
    margin-bottom: 0;
}

.last-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* =========================================
   Contact Page Styles
   ========================================= */
.contact-section {
    padding-top: 140px;
    padding-bottom: 80px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 500;
}

.required-tag {
    background: var(--accent-primary);
    color: #000;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 0.5rem;
    vertical-align: middle;
    font-weight: 700;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.form-select option {
    background: #1a1a1a;
    color: #fff;
}

.form-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
    cursor: pointer;
}

.note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 2rem;
    line-height: 1.6;
}

/* =========================================
   News Ticker Styles (Slideshow Fade)
   ========================================= */
.news-ticker-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    overflow: hidden;
    min-height: 42px;
    height: auto;
    box-sizing: border-box;
    max-width: 100%;
    width: fit-content;
}

.news-label {
    font-weight: 700;
    margin-right: 1rem;
    padding-right: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    z-index: 2;
}

.news-label i {
    font-size: 0.8rem;
}

.news-static-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
}

.news-static-text .date {
    color: #fff;
    margin-right: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9em;
    opacity: 0.9;
}

.ticker-content {
    height: 24px;
    position: relative;
    width: 300px;
    text-align: left;
}

.ticker-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    width: 100%;
    height: 100%;
}

.ticker-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 24px;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-secondary);
    opacity: 0;
    animation: fade-slideshow 12s infinite;
}

/* Staggered animation for 3 items (Total 12s) */
.ticker-item:nth-child(1) {
    animation-delay: 0s;
}

.ticker-item:nth-child(2) {
    animation-delay: 4s;
}

.ticker-item:nth-child(3) {
    animation-delay: 8s;
}

.ticker-item .date {
    color: #fff;
    margin-right: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8em;
    opacity: 0.8;
}

@keyframes fade-slideshow {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    5% {
        opacity: 1;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        transform: translateY(0);
    }

    35% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 0;
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .news-ticker-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        max-width: 90vw;
    }

    .ticker-content {
        width: 200px;
    }
}

/* Static Mode for News Ticker (No animation, auto width) */
.ticker-content.static-mode {
    width: auto !important;
    min-width: 200px;
}

.ticker-content.static-mode .ticker-list {
    position: relative;
    height: auto;
}

.ticker-content.static-mode .ticker-item {
    position: relative;
    opacity: 1;
    animation: none;
    width: auto;
    height: auto;
}

/* Audio Player Styles */
.demo-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.player-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.player-container.single-track-mode {
    display: flex;
    justify-content: center;
    max-width: 600px;
}

#main-audio-player {
    display: none;
}

@media (max-width: 768px) {
    .player-container {
        flex-direction: column;
    }
}

.player-controls {
    flex: 1;
    text-align: center;
}

.track-info {
    margin-bottom: 1.5rem;
}

.track-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.track-artist {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.control-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.control-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 243, 255, 0.5);
}

.progress-area {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--accent-primary);
    width: 0%;
    border-radius: 2px;
}

.playlist {
    flex: 1;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .playlist {
        border-left: none;
        padding-left: 0;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
    }
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.playlist-item.active {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.playlist-item i {
    color: var(--text-secondary);
}

.playlist-item.active i {
    color: var(--accent-primary);
}

.playlist-info h4 {
    margin: 0;
    font-size: 0.95rem;
    color: #fff;
}

.playlist-info p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* =========================================
   Blog - Share Section
   ========================================= */
.share-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.share-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    font-weight: 500;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-button i {
    font-size: 1.2rem;
}

.share-button.twitter:hover {
    background: #000;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
    color: #fff;
}

/* --- Added Twitter Share Button --- */
.btn-share-twitter {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(29, 161, 242, 0.1);
    border: 1px solid rgba(29, 161, 242, 0.3);
    color: #1DA1F2;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 3rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.btn-share-twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: #1DA1F2;
    box-shadow: 0 0 15px rgba(29, 161, 242, 0.4);
    transform: translateY(-2px);
}

.btn-share-twitter i {
    font-size: 1.2rem;
}

/* =========================================
   Partnership Logo Section
   ========================================= */
.strategic-partner {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.strategic-partner:hover {
    border-color: var(--accent-primary);
}

.partner-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 0.2em;
    font-weight: 500;
    margin-bottom: 4px;
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-card {
    background: white;
    padding: 12px;
    /* Adjusted padding slightly for balance within hero */
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Specific adjustment for Waveform logo balance */
.logo-card:first-child .partner-logo {
    height: 35px;
    /* Slightly smaller in box but padding makes box same size effectively? No, let's control box/logo */
    /* Or actually, let's keep logos similar height but maybe Waveform needs to be slightly larger if it looked small? */
    /* User said "Left logo (Waveform) looks slightly small". So let's bump it up relative to container. */
    height: 42px;
}

.logo-card:last-child .partner-logo {
    height: 40px;
}

.partner-logo {
    width: auto;
    display: block;
}

.partner-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .strategic-partner {
        bottom: 1rem;
        right: 50%;
        transform: translateX(50%);
        width: 90%;
        max-width: 340px;
        padding: 16px;
    }
}

/* =========================================
   NEWS Banner (Bold Design)
   ========================================= */
.news-banner {
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.15) 0%, rgba(0, 240, 255, 0.1) 100%);
    border-top: 1px solid rgba(112, 0, 255, 0.3);
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    padding: 0;
    position: relative;
    z-index: 9;
}

.news-banner-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-banner-link:hover {
    background: rgba(112, 0, 255, 0.1);
}

.news-badge-large {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #7000ff, #00f0ff);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.4);
}

.news-badge-large i {
    font-size: 1rem;
    animation: bellRing 2s ease-in-out infinite;
}

@keyframes bellRing {

    0%,
    100% {
        transform: rotate(0);
    }

    10%,
    30% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    40% {
        transform: rotate(0);
    }
}

.news-content-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.news-date-large {
    font-size: 0.8rem;
    color: var(--accent-primary);
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
}

.news-title-large {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    transition: color 0.3s ease;
}

.news-banner-link:hover .news-title-large {
    color: var(--accent-primary);
}

.news-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.news-cta i {
    transition: transform 0.3s ease;
}

.news-banner-link:hover .news-cta {
    color: var(--accent-primary);
}

.news-banner-link:hover .news-cta i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .news-banner-link {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem 0;
    }

    .news-badge-large {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .news-title-large {
        font-size: 0.95rem;
    }

    .news-cta {
        width: 100%;
        justify-content: flex-end;
    }
}

/* =========================================
   News Category Badges (news.html)
   ========================================= */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-list .news-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.news-list .news-item:hover {
    border-color: var(--accent-primary);
}

.news-category {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-right: 0.5rem;
    white-space: nowrap;
}

/* Info/Topic category - use cyan instead of hard-to-read purple */
.cat-info {
    color: #fff;
    background: rgba(0, 200, 200, 0.3);
    border: 1px solid rgba(0, 200, 200, 0.6);
}

/* Release category - green for visibility */
.cat-release {
    color: #fff;
    background: rgba(0, 200, 100, 0.3);
    border: 1px solid rgba(0, 200, 100, 0.6);
}

/* Topic category - purple/magenta */
.cat-topic {
    color: #fff;
    background: rgba(200, 100, 200, 0.3);
    border: 1px solid rgba(200, 100, 200, 0.6);
}

/* Clickable news item link styles */
.news-item-link {
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.news-item-link:hover {
    background: rgba(0, 240, 255, 0.05);
    transform: translateX(4px);
}

.news-link-arrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin-left: auto;
    transition: all 0.3s ease;
}

.news-item-link:hover .news-link-arrow {
    color: var(--accent-primary);
    transform: translateX(4px);
}

.news-item-link:hover .news-title {
    color: var(--accent-primary);
}