/* Evox Intelligence Lab - Single View Styles (Liquid Glass & Neon) */

.evox-single-main {
    background-color: var(--evox-bg);
    color: var(--evox-text-main);
    padding-bottom: 80px;
}

/* Hero Section */
.evox-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.evox-single-header {
    position: relative;
    padding: 100px 0 60px;
    margin-bottom: 60px;
}

.evox-header-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.evox-single-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(0, 243, 255, 0.1);
    color: var(--evox-neon-blue);
    border: 1px solid var(--evox-neon-blue);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.evox-single-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--evox-neon-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}

.evox-single-excerpt {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--evox-text-muted);
}

.evox-single-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.evox-single-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.evox-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,1) 100%);
    z-index: 2;
}

/* Meta Footer */
.evox-document-meta-footer {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--evox-glass-border);
}

.evox-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.evox-meta-item {
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid var(--evox-glass-border);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.evox-meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--evox-text-muted);
    margin: 0 0 8px 0;
}

.evox-meta-value {
    font-size: 1.1rem;
    color: var(--evox-text-main);
    font-weight: 600;
    margin: 0;
}

.evox-btn-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

/* Glass Card */
.evox-glass-card {
    background: var(--evox-glass-bg);
    border: 1px solid var(--evox-glass-border);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    text-align: center;
}

.evox-glass-card h3 {
    font-size: 1.5rem;
    color: var(--evox-neon-white);
    margin: 0 0 16px 0;
}

.evox-glass-card p {
    font-size: 0.95rem;
    color: var(--evox-text-muted);
    margin: 0 0 24px 0;
    line-height: 1.5;
}

/* Neon Button */
.evox-btn-neon {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    color: var(--evox-neon-blue);
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid var(--evox-neon-blue);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.evox-btn-neon:hover {
    background: var(--evox-neon-blue);
    color: #000;
    box-shadow: 0 0 20px var(--evox-neon-blue-glow);
}

/* Content Glass Area */
.evox-content-glass {
    background: var(--evox-glass-bg);
    border: 1px solid var(--evox-glass-border);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(8px);
    font-size: 1.125rem;
    line-height: 1.8;
}

.evox-content-glass h2,
.evox-content-glass h3 {
    color: var(--evox-neon-white);
    margin-top: 2em;
    margin-bottom: 1em;
}

.evox-content-glass h2 {
    font-size: 2rem;
    border-bottom: 1px solid var(--evox-glass-border);
    padding-bottom: 0.5em;
}

.evox-content-glass p {
    margin-bottom: 1.5em;
    color: rgba(255, 255, 255, 0.85);
}

.evox-content-glass img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2em 0;
    border: 1px solid var(--evox-glass-border);
}

/* Responsive */
@media (max-width: 991px) {
    .evox-single-title {
        font-size: 2.5rem;
    }

    .evox-meta-grid {
        grid-template-columns: 1fr;
    }

    .evox-meta-value {
        margin-bottom: 0;
    }

    .evox-content-glass {
        padding: 24px;
    }
}
