/* ============================================
   TIEMNAOAI.ONLINE - Cyberpunk AI Theme
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary-cyan: #00f5ff;
    --primary-magenta: #ff00ff;
    --primary-purple: #8b5cf6;
    --primary-green: #00ff88;
    --primary-orange: #ff6b35;
    --primary-red: #ff3366;
    --primary-blue: #3b82f6;
    --primary-yellow: #fbbf24;
    
    /* Background Colors */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(15, 15, 25, 0.9);
    --bg-card-hover: rgba(25, 25, 45, 0.95);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
    --gradient-secondary: linear-gradient(135deg, var(--primary-magenta), var(--primary-orange));
    --gradient-dark: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
    
    /* Shadows */
    --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.5), 0 0 40px rgba(0, 245, 255, 0.3);
    --glow-magenta: 0 0 20px rgba(255, 0, 255, 0.5), 0 0 40px rgba(255, 0, 255, 0.3);
    --glow-purple: 0 0 20px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
    
    /* Fonts */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1400px;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Particle Background */
#particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 0, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

/* ============================================
   Navigation
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--primary-cyan);
    filter: drop-shadow(0 0 10px var(--primary-cyan));
    animation: pulse-glow 2s ease-in-out infinite;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.logo-text .domain {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 30px 60px;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 60%),
        var(--bg-dark);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, transparent 49%, rgba(0, 245, 255, 0.03) 50%, transparent 51%, transparent 100%),
        linear-gradient(0deg, transparent 0%, transparent 49%, rgba(0, 245, 255, 0.03) 50%, transparent 51%, transparent 100%);
    background-size: 80px 80px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
}

/* Glitch Effect */
.glitch-container {
    position: relative;
    margin-bottom: 20px;
}

.glitch {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 4px;
    position: relative;
    text-shadow: 
        0 0 20px var(--primary-cyan),
        0 0 40px var(--primary-cyan),
        0 0 80px var(--primary-cyan);
    animation: glitch-text 3s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: var(--primary-cyan);
    animation: glitch-1 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
    color: var(--primary-magenta);
    animation: glitch-2 2s infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(3px, -3px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(3px, 3px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(3px, -3px); }
    40% { transform: translate(-3px, 3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(-3px, -3px); }
}

@keyframes glitch-text {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    95% { opacity: 0.9; }
    96% { opacity: 1; }
}

.hero-subtitle {
    font-family: var(--font-mono);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--primary-cyan);
    margin-bottom: 15px;
    min-height: 40px;
}

.typing-text {
    color: var(--primary-cyan);
}

.cursor {
    animation: blink 1s infinite;
    color: var(--primary-magenta);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--bg-dark);
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
}

.cta-button i {
    animation: bounce-down 2s infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-cyan);
    background: rgba(0, 245, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 245, 255, 0.3);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
}

.section-subtitle {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* ============================================
   Manifesto Section
   ============================================ */
.manifesto-section {
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(255, 0, 255, 0.08) 0%, transparent 50%),
        var(--bg-dark);
}

.main-quote {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 20px;
}

.main-quote .quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--primary-cyan);
    opacity: 0.3;
    line-height: 1;
    position: absolute;
}

.main-quote .quote-mark:first-child {
    top: 10px;
    left: 20px;
}

.main-quote .quote-mark:last-child {
    bottom: -20px;
    right: 20px;
}

.main-quote p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.main-quote strong {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

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

.manifesto-card {
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.manifesto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.manifesto-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.manifesto-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-purple);
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: all 0.4s ease;
}

.manifesto-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--glow-purple);
}

.manifesto-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.manifesto-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ============================================
   Positioning Section
   ============================================ */
.positioning-section {
    background: var(--bg-darker);
}

.era-statement {
    text-align: center;
    margin-bottom: 50px;
}

.era-statement h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-orange);
    letter-spacing: 2px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.comparison-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.comparison-item.seo {
    border-color: rgba(255, 107, 53, 0.3);
}

.comparison-item.geo {
    border-color: rgba(255, 0, 255, 0.3);
}

.comparison-item.tiemnao {
    border-color: rgba(0, 245, 255, 0.5);
    background: rgba(0, 245, 255, 0.05);
}

.comparison-item.highlight {
    transform: scale(1.05);
    box-shadow: 0 10px 50px rgba(0, 245, 255, 0.2);
}

.comp-header {
    margin-bottom: 20px;
}

.comp-icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.comparison-item.seo .comp-icon {
    color: var(--primary-orange);
}

.comparison-item.geo .comp-icon {
    color: var(--primary-magenta);
}

.comparison-item.tiemnao .comp-icon {
    color: var(--primary-cyan);
    filter: drop-shadow(0 0 10px var(--primary-cyan));
}

.comp-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.comparison-item.seo .comp-label {
    color: var(--primary-orange);
}

.comparison-item.geo .comp-label {
    color: var(--primary-magenta);
}

.comparison-item.tiemnao .comp-label {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

.comp-desc {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.comp-action {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.comparison-item.tiemnao .comp-action {
    color: var(--primary-green);
    font-weight: 600;
    font-style: normal;
}

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

.positioning-conclusion > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.transformation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.transformation .from {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-red);
    padding: 15px 30px;
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.3);
    border-radius: 10px;
}

.transformation .arrow {
    font-size: 2rem;
    color: var(--primary-cyan);
    animation: pulse-arrow 1.5s infinite;
}

@keyframes pulse-arrow {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(10px); opacity: 0.5; }
}

.transformation .to {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-green);
    padding: 15px 30px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

/* ============================================
   Architecture Section
   ============================================ */
.architecture-section {
    background: 
        radial-gradient(ellipse at 70% 30%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
        var(--bg-dark);
}

.architecture-subsection {
    margin-bottom: 80px;
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.subsection-title span {
    color: var(--primary-cyan);
    font-weight: 700;
}

/* IP Map */
.ip-map {
    background: var(--bg-card);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.ip-core {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.core-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-cyan);
    background: rgba(0, 245, 255, 0.1);
    border: 3px solid var(--primary-cyan);
    border-radius: 50%;
    margin-bottom: 15px;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: var(--glow-cyan);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 245, 255, 0.5); }
    50% { box-shadow: 0 0 40px rgba(0, 245, 255, 0.8), 0 0 60px rgba(0, 245, 255, 0.4); }
}

.core-label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
    letter-spacing: 3px;
}

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

.branch {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
}

.branch h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.branch h4 i {
    color: var(--primary-cyan);
}

.branch ul {
    list-style: none;
}

.branch ul li {
    padding: 8px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 20px;
    position: relative;
}

.branch ul li::before {
    content: '├──';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.branch ul li:last-child {
    border-bottom: none;
}

.branch ul li:last-child::before {
    content: '└──';
}

/* Satellites */
.satellite-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.satellite-item {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.satellite-item.active {
    border-color: var(--primary-green);
    background: rgba(0, 255, 136, 0.05);
}

.satellite-item.placeholder {
    border-style: dashed;
    opacity: 0.6;
}

.satellite-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.sat-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.sat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

.protocol-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    padding-left: 20px;
    border-left: 3px solid var(--primary-cyan);
}

/* Operating Mechanism */
.mechanism-content {
    background: var(--bg-card);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.principle-header {
    text-align: center;
    margin-bottom: 40px;
}

.principle-header h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-magenta);
    margin-bottom: 10px;
}

.principle-header p {
    color: var(--text-secondary);
}

.ai-perspectives {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.ai-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ai-item:hover {
    border-color: var(--primary-cyan);
    transform: translateX(5px);
}

.ai-num {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-cyan);
    background: rgba(0, 245, 255, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    min-width: 45px;
    text-align: center;
}

.ai-perspective {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.friction-point {
    text-align: center;
    padding: 30px;
    background: rgba(255, 0, 255, 0.05);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 15px;
}

.friction-visual {
    margin-bottom: 20px;
}

.collision-animation {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: 
        radial-gradient(circle, var(--primary-cyan) 0%, transparent 50%),
        radial-gradient(circle, var(--primary-magenta) 0%, transparent 50%);
    background-position: -10px 0, 10px 0;
    background-size: 50px 50px;
    background-repeat: no-repeat;
    border-radius: 50%;
    animation: collision 1.5s ease-in-out infinite;
}

@keyframes collision {
    0%, 100% { 
        background-position: -10px 0, 10px 0;
        filter: blur(0);
    }
    50% { 
        background-position: 15px 0, 15px 0;
        filter: blur(5px);
    }
}

.friction-point p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.friction-point .highlight {
    color: var(--primary-cyan);
    font-weight: 700;
    text-shadow: 0 0 10px var(--primary-cyan);
}

/* ============================================
   Vulnerabilities Section
   ============================================ */
.vulnerabilities-section {
    background: var(--bg-darker);
}

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

.vuln-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 51, 102, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vuln-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-secondary);
}

.vuln-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 51, 102, 0.5);
    box-shadow: 0 20px 50px rgba(255, 51, 102, 0.15);
}

.vuln-number {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--primary-red);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.vuln-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.vuln-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.vuln-en {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 15px;
}

.vuln-desc {
    color: var(--text-secondary);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vuln-exploit h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vuln-exploit p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   Protocols Section
   ============================================ */
.protocols-section {
    background: 
        radial-gradient(ellipse at 50% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        var(--bg-dark);
}

.protocols-container {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.protocols-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.protocol-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.protocol-nav-btn:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.protocol-nav-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--bg-dark);
    box-shadow: var(--glow-purple);
}

.protocols-content {
    position: relative;
    min-height: 300px;
}

.protocol-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.protocol-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.protocol-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.protocol-id {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    background: rgba(0, 245, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 245, 255, 0.3);
}

.protocol-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.protocol-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.protocol-list {
    list-style: none;
}

.protocol-list li {
    padding: 12px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.protocol-list li:last-child {
    border-bottom: none;
}

.protocol-list li i {
    color: var(--primary-green);
    margin-top: 4px;
}

.protocol-list.numbered li {
    flex-direction: column;
    gap: 5px;
}

.protocol-list .step {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--primary-cyan);
}

.protocol-list.schedule .time {
    font-family: var(--font-mono);
    color: var(--primary-orange);
    min-width: 120px;
    display: inline-block;
}

.protocol-list .effect {
    font-style: italic;
    color: var(--primary-green);
    padding-top: 15px;
    margin-top: 10px;
    border-top: 1px dashed rgba(0, 255, 136, 0.3);
}

.protocol-comparison {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.comp-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 10px;
}

.comp-item.generic {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comp-item.generic i {
    color: var(--text-muted);
}

.comp-item.verified {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.comp-item.verified i {
    color: var(--primary-green);
}

.comp-item span {
    color: var(--text-secondary);
}

.protocol-conclusion {
    margin-top: 20px;
    color: var(--primary-cyan);
    font-weight: 600;
}

.cycle-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cycle-node {
    padding: 15px 25px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.cycle-arrow {
    font-size: 1.5rem;
    color: var(--primary-cyan);
}

.cycle-arrow.loop {
    color: var(--primary-green);
    animation: rotate-loop 2s linear infinite;
}

@keyframes rotate-loop {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   Command Center Section
   ============================================ */
.command-center-section {
    background: var(--bg-darker);
}

.terminal-container {
    background: #0d0d0d;
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close { background: #ff5f57; }
.btn-minimize { background: #ffbd2e; }
.btn-maximize { background: #28c940; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex: 1;
    text-align: center;
}

.terminal-body {
    padding: 30px;
    font-family: var(--font-mono);
}

.terminal-section {
    margin-bottom: 25px;
}

.section-title-bar {
    font-size: 0.9rem;
    color: var(--primary-cyan);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
}

.terminal-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.3), transparent);
    margin: 20px 0;
}

/* IP Status */
.ip-status-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ip-status {
    display: grid;
    grid-template-columns: 150px 1fr 60px auto;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.ip-name {
    font-size: 0.9rem;
    color: var(--primary-green);
}

.ip-status.warning .ip-name {
    color: var(--primary-orange);
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 1s ease;
}

.ip-status.warning .progress-fill {
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
}

.ip-percent {
    font-size: 0.85rem;
    color: var(--text-primary);
    text-align: right;
}

.ip-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* AI Status */
.ai-status-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-status {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border-left: 3px solid transparent;
}

.ai-status.success {
    border-left-color: var(--primary-green);
}

.ai-status.excellent {
    border-left-color: var(--primary-cyan);
    background: rgba(0, 245, 255, 0.05);
}

.ai-status.warning {
    border-left-color: var(--primary-orange);
}

.ai-name {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.ai-cite {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.ai-result {
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 4px;
}

.ai-status.success .ai-result {
    color: var(--primary-green);
    background: rgba(0, 255, 136, 0.1);
}

.ai-status.excellent .ai-result {
    color: var(--primary-cyan);
    background: rgba(0, 245, 255, 0.1);
}

.ai-status.warning .ai-result {
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.1);
}

/* Command List */
.command-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.command-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.command-item:hover {
    background: rgba(0, 245, 255, 0.05);
    transform: translateX(5px);
}

.cmd-icon {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.cmd-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.terminal-cursor {
    margin-top: 20px;
}

.cursor-symbol {
    color: var(--primary-cyan);
    animation: blink 1s infinite;
}

/* ============================================
   Roadmap Section
   ============================================ */
.roadmap-section {
    background: 
        radial-gradient(ellipse at 20% 60%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        var(--bg-dark);
}

.roadmap-timeline {
    position: relative;
    padding-left: 50px;
}

.timeline-line {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-cyan), var(--primary-purple), var(--primary-magenta), var(--primary-green));
}

.roadmap-phase {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s ease forwards;
}

.roadmap-phase:nth-child(2) { animation-delay: 0.1s; }
.roadmap-phase:nth-child(3) { animation-delay: 0.2s; }
.roadmap-phase:nth-child(4) { animation-delay: 0.3s; }
.roadmap-phase:nth-child(5) { animation-delay: 0.4s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phase-marker {
    position: absolute;
    left: -50px;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--bg-dark);
    border: 3px solid var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.phase-number {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-cyan);
}

.roadmap-phase:nth-child(3) .phase-marker {
    border-color: var(--primary-purple);
}

.roadmap-phase:nth-child(3) .phase-number {
    color: var(--primary-purple);
}

.roadmap-phase:nth-child(4) .phase-marker {
    border-color: var(--primary-magenta);
}

.roadmap-phase:nth-child(4) .phase-number {
    color: var(--primary-magenta);
}

.roadmap-phase:nth-child(5) .phase-marker {
    border-color: var(--primary-green);
}

.roadmap-phase:nth-child(5) .phase-number {
    color: var(--primary-green);
}

.phase-content {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.phase-content:hover {
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.phase-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.phase-duration {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--primary-cyan);
    background: rgba(0, 245, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.3);
}

.phase-tasks {
    list-style: none;
}

.phase-tasks li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phase-tasks li:last-child {
    border-bottom: none;
}

.phase-tasks li i {
    font-size: 1rem;
}

.phase-tasks li .fa-check-circle {
    color: var(--primary-green);
}

.phase-tasks li .fa-spinner {
    color: var(--primary-orange);
}

.phase-tasks li .fa-circle {
    color: var(--text-muted);
    font-size: 0.6rem;
}

/* ============================================
   Declaration Section
   ============================================ */
.declaration-section {
    background: 
        radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
        var(--bg-darker);
    padding-bottom: 120px;
}

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

.final-quote {
    text-align: center;
    margin-bottom: 50px;
}

.final-quote > p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hierarchy {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.level {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.level .label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 180px;
}

.level .action {
    color: var(--text-secondary);
}

.level.weak {
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.level.weak .label {
    color: var(--primary-red);
}

.level.strong {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.level.strong .label {
    color: var(--primary-orange);
}

.level.supreme {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(0, 245, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.15);
}

.level.supreme .label {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

.level.supreme .action {
    color: var(--text-primary);
}

.declaration-statements {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.statement {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.statement-icon {
    font-size: 2rem;
}

.statement:first-child .statement-icon {
    color: var(--primary-red);
}

.statement.highlight {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 245, 255, 0.1));
    border-color: rgba(0, 255, 136, 0.3);
}

.statement.highlight .statement-icon {
    color: var(--primary-green);
}

.statement p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.statement strong {
    color: var(--text-primary);
}

.statement.highlight strong {
    color: var(--primary-green);
    text-shadow: 0 0 10px var(--primary-green);
}

.final-tagline {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.final-tagline::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(139, 92, 246, 0.1) 50%,
        transparent 60%
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.final-tagline p {
    position: relative;
    font-size: 1.4rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.final-tagline .highlight {
    color: var(--primary-cyan);
    font-weight: 700;
    text-shadow: 0 0 20px var(--primary-cyan);
}

/* ============================================
   Contact & Support Section
   ============================================ */
.contact-section {
    background: 
        radial-gradient(ellipse at 50% 30%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
        var(--bg-dark);
}

.contact-info {
    text-align: center;
    margin-bottom: 60px;
}

.contact-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn.phone {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
}

.contact-btn.phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.contact-btn.zalo {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
}

.contact-btn.zalo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.zalo-badge {
    background: #0068ff;
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
}

.contact-btn.email {
    background: linear-gradient(135deg, #8B6914, #A67C00);
    color: white;
}

.contact-btn.email:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 105, 20, 0.4);
}

/* Donation Section */
.donation-section {
    text-align: center;
    margin-bottom: 60px;
}

.donation-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.donation-amounts {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.amount-box {
    padding: 25px 40px;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.amount-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 245, 255, 0.3);
}

.amount-box.featured {
    background: linear-gradient(135deg, #8B6914, #A67C00);
    border-color: #A67C00;
}

.amount-box .amount {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.amount-box .label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.amount-box.featured .label {
    color: rgba(255, 255, 255, 0.9);
}

/* QR Codes */
.qr-codes {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.qr-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    width: 280px;
    transition: all 0.3s ease;
}

.qr-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.qr-card.vietcombank {
    background: linear-gradient(180deg, #f5f9e9 0%, #e8f5e0 100%);
}

.qr-header {
    margin-bottom: 20px;
}

.bank-logo {
    height: 30px;
}

.paypal-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #333;
}

.qr-image {
    margin-bottom: 20px;
}

.qr-image img {
    max-width: 180px;
    border-radius: 10px;
}

.qr-info {
    color: #333;
}

.account-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
}

.account-number {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: #666;
}

.paypal-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #0070ba;
    margin-bottom: 5px;
}

.paypal-desc {
    color: #666;
    font-size: 0.9rem;
}

/* ============================================
   NEW STRUCTURED SECTIONS
   ============================================ */

/* Author Section */
.author-section {
    background: var(--bg-darker);
    padding: 50px 0;
}

.author-box {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 2px solid var(--primary-cyan);
    border-radius: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.author-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-cyan);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    margin: 0;
}

/* Status Section */
.status-section {
    background: var(--bg-dark);
    padding: 50px 0;
}

.status-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: rgba(0, 255, 136, 0.05);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.status-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.status-active {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-green);
    padding: 8px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-green);
    border-radius: 20px;
}

.status-active::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: blink-status 1.5s infinite;
}

@keyframes blink-status {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.status-desc {
    padding: 25px 30px;
}

.desc-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.status-desc p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Updated Section */
.updated-section {
    background: var(--bg-darker);
    padding: 40px 0;
}

.updated-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 25px 50px;
    background: var(--bg-card);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    max-width: 350px;
    margin: 0 auto;
}

.updated-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.updated-year {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

/* Source Section */
.source-section {
    background: var(--bg-dark);
    padding: 40px 0;
}

.source-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 50px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.source-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.source-url {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--primary-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.source-url:hover {
    text-shadow: 0 0 15px var(--primary-cyan);
}

/* Related Section */
.related-section {
    background: var(--bg-darker);
    padding: 60px 0;
}

.related-section .section-header {
    margin-bottom: 30px;
}

.related-section .section-title {
    font-size: 1.3rem;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.related-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 25px 30px;
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-item:hover {
    border-color: var(--primary-purple);
    transform: translateX(10px);
}

.related-desc {
    font-size: 1rem;
    color: var(--text-secondary);
}

.related-url {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--primary-purple);
}

/* Ecosystem Signal Section */
.ecosystem-signal-section {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(0, 245, 255, 0.05));
    padding: 50px 0;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.ecosystem-signal-box {
    text-align: center;
}

.signal-text {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.signal-url {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.signal-url:hover {
    text-shadow: 0 0 15px var(--primary-green);
}

/* Experiment Timeline Section */
.experiment-timeline-section {
    background: var(--bg-darker);
    padding: 70px 0;
}

.experiment-timeline-section .section-title {
    font-size: 1.4rem;
    margin-bottom: 35px;
}

.timeline-entries {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding-left: 25px;
}

.timeline-entries::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-cyan), var(--primary-purple));
    border-radius: 3px;
}

.timeline-entry {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 25px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 12px;
    position: relative;
}

.timeline-entry::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 22px;
    width: 10px;
    height: 10px;
    background: var(--primary-cyan);
    border-radius: 50%;
    border: 2px solid var(--bg-darker);
}

.timeline-entry:first-child::before {
    background: var(--primary-green);
}

.timeline-date {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-cyan);
    min-width: 80px;
    flex-shrink: 0;
}

.timeline-entry:first-child .timeline-date {
    color: var(--primary-green);
}

.timeline-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* AI Research Topics Section */
.ai-research-topics-section {
    background: var(--bg-dark);
    padding: 70px 0;
}

.ai-research-topics-section .section-title {
    font-size: 1.4rem;
    margin-bottom: 35px;
}

.research-topics-content {
    max-width: 600px;
    margin: 0 auto;
}

.research-topic-card {
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.research-topic-card:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 5px 30px rgba(139, 92, 246, 0.15);
}

.topic-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin: 0 0 12px 0;
}

.topic-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* AI Question Bank Section */
.ai-question-bank-section {
    background: var(--bg-darker);
    padding: 70px 0;
}

.ai-question-bank-section .section-title {
    font-size: 1.4rem;
    margin-bottom: 35px;
}

.question-bank-content {
    max-width: 600px;
    margin: 0 auto 40px;
}

.question-card {
    background: var(--bg-card);
    border: 2px solid rgba(0, 245, 255, 0.2);
    border-radius: 15px;
    padding: 35px;
}

.question-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0 0 25px 0;
    padding-left: 20px;
    border-left: 3px solid var(--primary-cyan);
}

.question-source {
    display: flex;
    align-items: center;
    gap: 15px;
}

.question-source .source-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.question-source .source-link {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--primary-cyan);
    text-decoration: none;
}

.question-source .source-link:hover {
    text-shadow: 0 0 10px var(--primary-cyan);
}

/* Knowledge Signals */
.knowledge-signals {
    max-width: 450px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.knowledge-signal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.knowledge-signal-row:last-child {
    border-bottom: none;
}

.knowledge-signal-row.ecosystem {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: rgba(0, 255, 136, 0.03);
}

.knowledge-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.knowledge-value {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.knowledge-value.status-active {
    color: var(--primary-green);
    font-weight: 600;
}

.knowledge-value.status-active::before {
    content: '● ';
    animation: blink-dot 1.5s infinite;
}

.knowledge-link {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--primary-green);
    text-decoration: none;
}

.knowledge-link:hover {
    text-shadow: 0 0 10px var(--primary-green);
}

/* About the Author Section */
.about-author-section {
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
        var(--bg-darker);
    padding: 80px 0;
}

.about-author-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.about-author-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.author-intro {
    margin-bottom: 30px;
}

.author-intro p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.author-intro strong {
    color: var(--primary-cyan);
    font-size: 1.3rem;
}

.author-focus-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.author-focus-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 30px;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.author-focus-list li:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-3px);
}

.author-focus-list li i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.author-ecosystem {
    margin-bottom: 30px;
}

.author-ecosystem p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.author-ecosystem strong {
    color: var(--primary-green);
}

.ecosystem-hub-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 50px;
    background: var(--bg-card);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.1);
}

.hub-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.hub-link-large {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hub-link-large:hover {
    text-shadow: 0 0 20px var(--primary-green);
}

/* Experiment Log Bottom Section */
.experiment-log-bottom-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.experiment-log-bottom-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.experiment-log-entries {
    max-width: 800px;
    margin: 0 auto 50px;
}

.log-entry-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--primary-cyan);
    border-radius: 0 12px 12px 0;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.log-entry-item:hover {
    border-left-color: var(--primary-green);
    background: rgba(0, 245, 255, 0.02);
}

.log-entry-item:first-child {
    border-left-color: var(--primary-green);
    background: rgba(0, 255, 136, 0.03);
}

.log-date-box {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 110px;
}

.log-date-value {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-cyan);
}

.log-entry-item:first-child .log-date-value {
    color: var(--primary-green);
}

.log-type {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.log-observation {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Experiment Signals */
.experiment-signals {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    overflow: hidden;
}

.signal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.signal-row:last-child {
    border-bottom: none;
}

.signal-row.ecosystem-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: rgba(0, 255, 136, 0.03);
}

.signal-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.signal-value {
    font-size: 1rem;
    color: var(--text-primary);
}

.signal-value.status-active-inline {
    color: var(--primary-green);
    font-weight: 600;
}

.signal-value.status-active-inline::before {
    content: '● ';
    animation: blink-dot 1.5s infinite;
}

@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.signal-link {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.signal-link:hover {
    text-shadow: 0 0 10px var(--primary-green);
}

/* Dataset Discovery Section */
.dataset-discovery-section {
    background: var(--bg-dark);
    padding: 60px 0;
}

.dataset-discovery-section .section-title {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.dataset-info-content {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    overflow: hidden;
}

.dataset-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dataset-item:last-child {
    border-bottom: none;
}

.dataset-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.dataset-link {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    word-break: break-all;
}

.dataset-link:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

/* Related Experiments Ecosystem Section */
.related-experiments-ecosystem-section {
    background: var(--bg-darker);
    padding: 70px 0;
}

.related-experiments-ecosystem-section .section-title {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.ecosystem-intro {
    max-width: 700px;
    margin: 0 auto 35px;
    text-align: center;
}

.ecosystem-intro p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.ecosystem-intro strong {
    color: var(--primary-green);
}

.related-experiments-content {
    max-width: 600px;
    margin: 0 auto;
}

.related-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-align: center;
}

.ecosystem-experiment-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 22px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--primary-green);
    border-radius: 0 10px 10px 0;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.ecosystem-experiment-item:hover {
    background: rgba(0, 255, 136, 0.03);
    border-left-color: var(--primary-cyan);
}

.exp-topic {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.exp-link {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.exp-link:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 8px var(--primary-cyan);
}

/* Knowledge Context Section */
.knowledge-context-section {
    background: var(--bg-dark);
    padding: 70px 0;
}

.knowledge-context-section .section-title {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.knowledge-context-content {
    max-width: 650px;
    margin: 0 auto 40px;
    text-align: center;
}

.context-intro {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.knowledge-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    margin-bottom: 25px;
}

.flow-item {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary-purple);
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
}

.flow-arrow {
    font-size: 1.3rem;
    color: var(--primary-cyan);
}

.context-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.context-note strong {
    color: var(--primary-green);
}

.knowledge-hub-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 25px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    max-width: 350px;
    margin: 0 auto;
}

.knowledge-hub-link .hub-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.knowledge-hub-link .hub-url {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.knowledge-hub-link .hub-url:hover {
    text-shadow: 0 0 10px var(--primary-green);
}

/* Topic Map Context Section */
.topic-map-context-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding: 70px 0;
}

.topic-map-context-section .section-title {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.topic-map-intro {
    max-width: 700px;
    margin: 0 auto 35px;
    text-align: center;
}

.topic-map-intro p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.topic-map-intro strong {
    color: var(--primary-cyan);
}

.topic-map-content {
    max-width: 650px;
    margin: 0 auto;
}

.topic-map-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    text-align: center;
}

.topic-experiment-list {
    margin-bottom: 30px;
}

.topic-experiment-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary-purple);
    border-radius: 0 10px 10px 0;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.topic-experiment-item:hover {
    background: rgba(139, 92, 246, 0.05);
    border-left-color: var(--primary-cyan);
}

.topic-name {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.topic-link {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--primary-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

.topic-link:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 8px var(--primary-cyan);
}

.topic-knowledge-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 30px;
    background: rgba(0, 255, 136, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
}

.topic-knowledge-hub .hub-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.topic-knowledge-hub .hub-link {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.topic-knowledge-hub .hub-link:hover {
    text-shadow: 0 0 12px var(--primary-green);
}

.topic-explanation {
    text-align: center;
    padding: 20px;
    background: rgba(0, 245, 255, 0.02);
    border: 1px solid rgba(0, 245, 255, 0.1);
    border-radius: 10px;
}

.topic-explanation p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   EXPERIMENT SECTIONS - Emerald Theme
   ============================================ */

/* Experiment Dataset Summary */
.experiment-summary-section {
    background: linear-gradient(180deg, rgba(5, 150, 105, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    padding: 80px 0;
}

.experiment-summary-section .section-title {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: var(--primary-green);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.summary-item {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.15);
}

.summary-item h4 {
    color: var(--primary-green);
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
}

.summary-item h4 i {
    font-size: 1.1rem;
}

.summary-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.summary-item ul {
    list-style: none;
    margin-top: 10px;
}

.summary-item ul li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.summary-item ul li::before {
    content: '•';
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Observation Pattern Section */
.observation-pattern-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.observation-pattern-section .section-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--primary-green);
}

.pattern-intro {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.pattern-list {
    max-width: 800px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pattern-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px 22px;
    background: rgba(5, 150, 105, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-green);
    transition: all 0.3s ease;
}

.pattern-item:hover {
    background: rgba(5, 150, 105, 0.1);
    transform: translateX(5px);
}

.pattern-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pattern-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pattern-conclusion {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px dashed rgba(5, 150, 105, 0.3);
    font-size: 0.95rem;
}

/* Evidence Note Section */
.evidence-note-section {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(5, 150, 105, 0.03) 100%);
    padding: 60px 0;
}

.evidence-note-section .section-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--accent);
}

.evidence-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.evidence-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.evidence-content p strong {
    color: var(--primary-green);
}

.evidence-content .disclaimer {
    color: var(--text-muted);
    font-style: italic;
    border-top: 1px dashed rgba(6, 182, 212, 0.3);
    padding-top: 15px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.evidence-content .disclaimer i {
    color: var(--accent);
    margin-right: 5px;
}

/* Metadata Signals */
.metadata-signals {
    max-width: 450px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.metadata-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metadata-row:last-child {
    border-bottom: none;
}

.metadata-row.ecosystem-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: rgba(0, 255, 136, 0.02);
}

.metadata-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.metadata-value {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.metadata-value.status-active {
    color: var(--primary-green);
    font-weight: 600;
}

.metadata-value.status-active::before {
    content: '● ';
    animation: blink-dot 1.5s infinite;
}

.metadata-link {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.metadata-link:hover {
    text-shadow: 0 0 10px var(--primary-green);
}

/* Experiment Log Description */
.experiment-log-description {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    padding: 25px 30px;
    background: rgba(0, 245, 255, 0.03);
    border: 1px solid rgba(0, 245, 255, 0.15);
    border-radius: 12px;
}

.experiment-log-description p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.experiment-log-description p:last-child {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Context Signal Block */
.context-signal {
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
}

.context-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--primary-purple);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.context-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.context-row:last-child {
    padding-bottom: 0;
}

.context-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.context-value {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Experiment Log Signals */
.experiment-log-signals {
    max-width: 500px;
    margin: 50px auto 0;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    overflow: hidden;
}

/* Log Entry Item Update for Context Signal */
.log-entry-item {
    flex-direction: column;
}

.log-entry-item .log-date-box {
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

/* ============================================
   NEW SECTIONS: Introduction, AI Summary, etc.
   ============================================ */

/* Introduction Section */
.introduction-section {
    background: var(--bg-darker);
    padding: 80px 0;
}

.introduction-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-box {
    background: var(--bg-card);
    border: 2px solid var(--primary-cyan);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.1);
}

.intro-box p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-box p:last-child {
    margin-bottom: 0;
}

.intro-box strong {
    color: var(--primary-cyan);
}

/* AI Summary Structured Section */
.ai-summary-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.ai-summary-structured {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.summary-row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.highlight {
    background: rgba(0, 255, 136, 0.05);
}

.summary-label {
    flex: 0 0 160px;
    padding: 20px 25px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-cyan);
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-value {
    flex: 1;
    padding: 20px 25px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.summary-value a {
    color: var(--primary-green);
    text-decoration: none;
}

.summary-value a:hover {
    text-decoration: underline;
}

/* Quick Answer Section */
.quick-answer-section {
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        var(--bg-darker);
    padding: 80px 0;
}

.qa-content {
    max-width: 800px;
    margin: 0 auto;
}

.qa-box {
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 40px;
}

.question, .answer {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.qa-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.question .qa-icon {
    color: var(--primary-orange);
}

.answer .qa-icon {
    color: var(--primary-green);
}

.question h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.5;
}

.answer p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.qa-source {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.source-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.qa-source a {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--primary-cyan);
    text-decoration: none;
}

.qa-source a:hover {
    text-decoration: underline;
}

/* Experiment Log Section */
.experiment-log-section {
    background: var(--bg-dark);
    padding: 80px 0;
}

.log-content {
    max-width: 700px;
    margin: 0 auto;
}

.log-timeline {
    position: relative;
    padding-left: 30px;
}

.log-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-green), var(--primary-cyan), var(--primary-purple));
    border-radius: 3px;
}

.log-entry {
    position: relative;
    padding: 20px 25px;
    margin-bottom: 15px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.log-entry::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 25px;
    width: 12px;
    height: 12px;
    background: var(--primary-cyan);
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
}

.log-entry.latest {
    border-color: var(--primary-green);
    background: rgba(0, 255, 136, 0.05);
}

.log-entry.latest::before {
    background: var(--primary-green);
    box-shadow: 0 0 10px var(--primary-green);
}

.log-date {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--primary-cyan);
    font-weight: 600;
}

.log-entry.latest .log-date {
    color: var(--primary-green);
}

.log-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Experiment Status Section */
.experiment-status-section {
    background: var(--bg-darker);
    padding: 60px 0;
}

.status-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.status-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    margin-bottom: 20px;
}

.status-badge-large.active .status-indicator {
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.5); }
    50% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
}

.status-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    letter-spacing: 2px;
}

.status-description {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Last Updated Section */
.last-updated-section {
    background: var(--bg-dark);
    padding: 40px 0;
}

.update-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 40px;
    background: var(--bg-card);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.update-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.update-date {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

/* Related Experiments Section */
.related-experiments-section {
    background: var(--bg-darker);
    padding: 80px 0;
}

.related-experiments-content {
    max-width: 600px;
    margin: 0 auto;
}

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

.experiment-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.experiment-link:hover {
    border-color: var(--primary-purple);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.2);
}

.experiment-link i {
    color: var(--primary-purple);
    font-size: 1rem;
}

.experiment-link span {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* ============================================
   TL;DR / AI Summary Section
   ============================================ */
.tldr-section {
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        var(--bg-darker);
}

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

.ai-summary-box {
    display: flex;
    gap: 30px;
    background: var(--bg-card);
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
}

.summary-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.summary-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.summary-text p:last-child {
    margin-bottom: 0;
}

.summary-text strong {
    color: var(--primary-cyan);
}

.summary-text em {
    color: var(--primary-green);
    font-style: normal;
}

.key-terms {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
}

.key-terms h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.terms-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.term {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--primary-cyan);
}

/* ============================================
   Ecosystem Context Section
   ============================================ */
.ecosystem-section {
    background: var(--bg-dark);
}

.ecosystem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ecosystem-intro {
    margin-bottom: 40px;
}

.ecosystem-intro p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.ecosystem-intro strong {
    color: var(--text-primary);
}

.central-hub {
    background: var(--bg-card);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.1);
}

.hub-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.central-hub h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hub-link {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    text-decoration: none;
    padding: 15px 30px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hub-link:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-3px);
}

.hub-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
}

.hub-url {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.ecosystem-note p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.ecosystem-note strong {
    color: var(--primary-cyan);
}

/* ============================================
   Concept Explanation Section
   ============================================ */
.concept-section {
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        var(--bg-darker);
}

.concept-content {
    max-width: 800px;
    margin: 0 auto;
}

.concept-definition {
    text-align: center;
    margin-bottom: 50px;
}

.concept-definition p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.concept-definition strong {
    color: var(--primary-purple);
}

.knowledge-loop {
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.knowledge-loop h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 30px;
}

.loop-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.loop-step {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
}

.step-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.step-text {
    color: var(--text-secondary);
    font-size: 1rem;
}

.step-text strong {
    color: var(--primary-cyan);
}

.loop-arrow {
    color: var(--primary-purple);
    font-size: 1.5rem;
}

.loop-arrow.loop {
    color: var(--primary-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.concept-result {
    text-align: center;
    padding: 25px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
}

.concept-result p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.concept-result strong {
    color: var(--primary-green);
}

/* ============================================
   Core Principles Section
   ============================================ */
.principles-section {
    background: var(--bg-dark);
}

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

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.principle-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.principle-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
}

.principle-num {
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: rgba(0, 245, 255, 0.1);
}

.principle-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.principle-card strong {
    color: var(--primary-cyan);
}

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

.key-philosophy blockquote {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.key-philosophy blockquote p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.key-philosophy blockquote strong {
    color: var(--primary-green);
    font-size: 1.8rem;
    display: block;
    margin-top: 10px;
    text-shadow: 0 0 20px var(--primary-green);
}

/* ============================================
   Research Status Section
   ============================================ */
.research-section {
    background: 
        radial-gradient(ellipse at 70% 30%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
        var(--bg-darker);
}

.research-content {
    max-width: 800px;
    margin: 0 auto;
}

.research-info {
    background: var(--bg-card);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.info-row {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    min-width: 120px;
}

.info-value {
    color: var(--text-primary);
    font-size: 1rem;
}

.status-badge {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    color: var(--primary-green);
    font-size: 0.9rem;
}

.research-focus {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.research-focus h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.research-focus ul {
    list-style: none;
}

.research-focus li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 25px;
    position: relative;
}

.research-focus li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
}

.research-focus li:last-child {
    border-bottom: none;
}

.version-history {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
}

.version-history h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.versions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.version-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.version-num {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--primary-purple);
    background: rgba(139, 92, 246, 0.1);
    padding: 5px 12px;
    border-radius: 5px;
}

.version-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.last-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: right;
}

.last-updated span {
    color: var(--primary-cyan);
}

/* ============================================
   Conceptual Limitations Section
   ============================================ */
.limitations-section {
    background: var(--bg-dark);
}

.limitations-content {
    max-width: 800px;
    margin: 0 auto;
}

.limitation-note {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.note-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.limitation-note p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.limitation-note strong {
    color: var(--text-primary);
}

.limitation-note em {
    color: var(--primary-orange);
    font-style: normal;
}

.dependencies {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.dependencies h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.dependencies ul {
    list-style: none;
}

.dependencies li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dependencies li:last-child {
    border-bottom: none;
}

.dependencies li i {
    color: var(--primary-cyan);
    font-size: 1.2rem;
}

.disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary-orange);
    padding: 20px 25px;
    border-radius: 0 10px 10px 0;
}

.disclaimer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.disclaimer strong {
    color: var(--primary-orange);
}

/* ============================================
   Related Projects Section
   ============================================ */
.related-projects-section {
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        var(--bg-darker);
}

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

.related-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.project-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.15);
}

.project-domain {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
}

.project-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.related-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
}

/* ============================================
   How to Cite Section
   ============================================ */
.cite-section {
    background: var(--bg-dark);
}

.cite-content {
    max-width: 700px;
    margin: 0 auto;
}

.citation-box {
    background: var(--bg-card);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.citation-text {
    margin-bottom: 30px;
}

.citation-text p {
    margin-bottom: 10px;
}

.cite-author {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.cite-title {
    font-size: 1.1rem;
    color: var(--primary-purple);
}

.cite-location,
.cite-year {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cite-url a {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--primary-cyan);
    text-decoration: none;
}

.cite-url a:hover {
    text-decoration: underline;
}

.copy-citation-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--bg-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-citation-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
}

/* ============================================
   Footer Updates
   ============================================ */
.ecosystem-hub {
    margin-top: 10px;
    font-size: 0.9rem;
}

.ecosystem-hub a {
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ecosystem-hub a:hover {
    color: var(--primary-cyan);
    text-decoration: underline;
}

.footer-bottom .ecosystem-credit a {
    color: var(--primary-green);
    text-decoration: none;
}

.footer-bottom .ecosystem-credit a:hover {
    text-decoration: underline;
}

/* Share Section */
.share-section {
    text-align: center;
    padding: 50px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.share-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.share-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5cbd);
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2, #0c85d0);
}

.share-btn.blogger {
    background: linear-gradient(135deg, #f57d00, #e05f00);
}

.share-btn.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c48);
}

.share-btn.copy-link {
    background: linear-gradient(135deg, #666, #444);
}

.share-heart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-secondary);
}

.share-heart i {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 15px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links ul,
.contact-list {
    list-style: none;
}

.footer-links li,
.contact-list li {
    margin-bottom: 12px;
}

.footer-links a,
.contact-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover,
.contact-list a:hover {
    color: var(--primary-cyan);
}

.contact-list {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom .ecosystem-credit {
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-bottom .ecosystem-credit .highlight {
    color: var(--primary-cyan);
    font-weight: 600;
}

.footer-bottom .ecosystem-credit .author {
    color: var(--primary-green);
    font-weight: 600;
}

.footer-bottom .copyright {
    font-size: 0.85rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-item.highlight {
        transform: none;
    }
    
    .protocols-container {
        grid-template-columns: 1fr;
    }
    
    .protocols-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    /* New sections responsive */
    .summary-row {
        flex-direction: column;
    }
    
    .summary-label {
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 768px) {
    /* Author section */
    .author-name {
        font-size: 1.4rem;
    }
    
    /* About Author section */
    .author-focus-list {
        flex-direction: column;
        align-items: center;
    }
    
    .author-focus-list li {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .ecosystem-hub-box {
        padding: 25px 30px;
        width: 100%;
        max-width: 350px;
    }
    
    /* Timeline, Research Topics, Question Bank responsive */
    .timeline-entry {
        flex-direction: column;
        gap: 8px;
    }
    
    .timeline-date {
        min-width: auto;
    }
    
    .knowledge-signal-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .question-source {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .hub-link-large {
        font-size: 1.1rem;
    }
    
    /* Experiment Log Bottom responsive */
    .log-entry-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .log-date-box {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .signal-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .author-name {
        font-size: 1.4rem;
    }
    
    /* Status section */
    .status-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* Updated section */
    .updated-box {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Related section */
    .related-item {
        padding: 20px;
    }
    
    .related-item:hover {
        transform: none;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    }
    }
    
    .protocols-container {
        grid-template-columns: 1fr;
    }
    
    .protocols-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    /* New sections responsive */
    .summary-row {
        flex-direction: column;
    }
    
    .summary-label {
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    }
    
    /* New sections 768px */
    .intro-box {
        padding: 30px 20px;
    }
    
    .intro-box p {
        font-size: 1.1rem;
    }
    
    .qa-box {
        padding: 25px 20px;
    }
    
    .question, .answer {
        flex-direction: column;
        gap: 10px;
    }
    
    .log-timeline {
        padding-left: 25px;
    }
    
    .log-entry::before {
        left: -29px;
    }
    
    .update-box {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .transformation {
        flex-direction: column;
    }
    
    .ip-status {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .ai-status {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    /* Contact Section Responsive */
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .donation-amounts {
        flex-direction: column;
        align-items: center;
    }
    
    .amount-box {
        width: 100%;
        max-width: 200px;
    }
    
    .qr-codes {
        flex-direction: column;
        align-items: center;
    }
    
    .qr-card {
        width: 100%;
        max-width: 300px;
    }
    
    .share-section {
        padding: 30px 20px;
    }
    
    .share-buttons {
        gap: 10px;
    }
    
    .share-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* New Sections Responsive */
    .ai-summary-box {
        flex-direction: column;
        text-align: center;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .info-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .loop-step {
        padding: 15px 20px;
    }
    
    .level {
        flex-direction: column;
        text-align: center;
    }
    
    .level .label {
        min-width: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .roadmap-timeline {
        padding-left: 40px;
    }
    
    .phase-marker {
        left: -40px;
        width: 30px;
        height: 30px;
    }
    
    .timeline-line {
        left: 10px;
    }
    
    /* Experiment Log Responsive */
    .experiment-log-description {
        padding: 20px;
    }
    
    .experiment-log-description p {
        font-size: 0.95rem;
    }
    
    .context-signal {
        padding: 12px 15px;
    }
    
    .context-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }
    
    .log-entry-item .log-date-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    /* Related Experiments & Knowledge Context Responsive */
    .ecosystem-intro p {
        font-size: 0.95rem;
    }
    
    .ecosystem-experiment-item {
        padding: 15px 18px;
    }
    
    .knowledge-flow {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .metadata-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    /* Topic Map Context Responsive */
    .topic-map-intro p {
        font-size: 0.95rem;
    }
    
    .topic-experiment-item {
        padding: 14px 16px;
    }
    
    .topic-knowledge-hub {
        padding: 20px;
    }
    
    /* Experiment Sections Responsive */
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .pattern-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pattern-item i {
        margin-top: 0;
    }
    
    .experiment-summary-section,
    .observation-pattern-section,
    .evidence-note-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 100px 15px 40px;
    }
    
    .manifesto-grid {
        grid-template-columns: 1fr;
    }
    
    .vulnerabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .satellite-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-perspectives {
        grid-template-columns: 1fr;
    }
    
    .protocol-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
    }
    
    .terminal-body {
        padding: 20px 15px;
    }
    
    .cycle-visual {
        flex-direction: column;
    }
    
    .cycle-arrow {
        transform: rotate(90deg);
    }
    
    .cycle-arrow.loop {
        animation: none;
    }
}
