/**
 * EnchantedOzarks.com - Patent Evidence Database
 * Copyright (c) 2025 Tammy L Casey. All rights reserved.
 *
 * Project ID: EO-PATENT-EVIDENCE-v1.0
 * Module: Quantum Theme Stylesheet
 * Created: November 14, 2025
 *
 * This research platform documents patented technologies
 * demonstrating lattice-enabled quantum phenomena across
 * multiple scientific domains, proving systematic
 * suppression of breakthrough technologies.
 *
 * "Known by our fruits, not our roots"
 */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #E8E8E8;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* === PARTICLE BACKGROUND === */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* === MAIN CONTENT CONTAINER === */
.main-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

/* === NAVIGATION BAR === */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid rgba(192, 192, 192, 0.5);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-logo {
    flex: 1;
    min-width: 300px;
}

.navbar-logo h1 {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
    margin-bottom: 0.3rem;
}

.navbar-tagline {
    color: #C0C0C0;
    font-size: 0.9rem;
    font-style: italic;
    letter-spacing: 1px;
}

.navbar-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.navbar-links a {
    color: #E8E8E8;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.navbar-links a:hover,
.navbar-links a.active {
    background: rgba(192, 192, 192, 0.2);
    border-color: rgba(192, 192, 192, 0.8);
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
    transform: translateY(-2px);
}

/* === CONTAINERS === */
.container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.glass-container {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(192, 192, 192, 0.5);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.2);
    animation: containerGlow 3s ease-in-out infinite;
}

@keyframes containerGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(192, 192, 192, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(192, 192, 192, 0.4);
    }
}

/* === HERO SECTION === */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3.5rem;
    color: #FFFFFF;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.8);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(192, 192, 192, 0.8);
    }
    50% {
        text-shadow: 0 0 30px rgba(192, 192, 192, 1);
    }
}

.hero h2 {
    font-size: 1.8rem;
    color: #C0C0C0;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #E8E8E8;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    border-bottom: 2px solid rgba(192, 192, 192, 0.3);
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #C0C0C0;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #E8E8E8;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(192, 192, 192, 0.1);
    border: 2px solid rgba(192, 192, 192, 0.5);
    border-radius: 10px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn:hover {
    background: rgba(192, 192, 192, 0.3);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
    transform: translateY(-3px);
}

.btn-primary {
    background: rgba(192, 192, 192, 0.2);
    border-color: rgba(192, 192, 192, 0.8);
}

.btn-export {
    background: rgba(100, 100, 100, 0.3);
    border-color: rgba(150, 150, 150, 0.6);
}

/* === FORMS & INPUTS === */
.search-container {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

input[type="text"],
input[type="search"],
input[type="number"],
select {
    flex: 1;
    min-width: 200px;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 10px;
    color: #E8E8E8;
    font-size: 1rem;
}

input[type="text"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
select:focus {
    outline: none;
    border-color: rgba(192, 192, 192, 0.8);
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.3);
}

label {
    display: block;
    color: #C0C0C0;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* === FILTER SECTION === */
.filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

/* === CARDS & DATA DISPLAY === */
.card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(192, 192, 192, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(192, 192, 192, 0.8);
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.3);
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.card-title {
    font-size: 1.3rem;
    color: #FFFFFF;
    flex: 1;
    margin-bottom: 0.5rem;
}

.card-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.card-meta span {
    color: #C0C0C0;
}

.card-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(192, 192, 192, 0.2);
    border: 1px solid rgba(192, 192, 192, 0.4);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #E8E8E8;
    margin: 0.2rem;
}

.suppression-score {
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    display: inline-block;
}

.score-high {
    background: rgba(255, 100, 100, 0.3);
    border: 2px solid rgba(255, 100, 100, 0.6);
    color: #FFB0B0;
}

.score-medium {
    background: rgba(255, 200, 100, 0.3);
    border: 2px solid rgba(255, 200, 100, 0.6);
    color: #FFD0A0;
}

.score-low {
    background: rgba(100, 255, 100, 0.3);
    border: 2px solid rgba(100, 255, 100, 0.6);
    color: #B0FFB0;
}

/* === TABLES === */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

th {
    background: rgba(192, 192, 192, 0.1);
    color: #FFFFFF;
    font-weight: 600;
}

tr:hover {
    background: rgba(192, 192, 192, 0.05);
}

/* === VISUALIZATION CONTAINERS === */
.viz-container {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    min-height: 400px;
}

.chart-container {
    position: relative;
    height: 400px;
    margin: 1rem 0;
}

.network-graph {
    width: 100%;
    height: 600px;
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 10px;
}

/* === GRID LAYOUTS === */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* === LISTS === */
ul, ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
    color: #E8E8E8;
}

.evidence-list {
    list-style: none;
    margin-left: 0;
}

.evidence-list li {
    padding: 0.5rem 0;
    border-left: 3px solid rgba(192, 192, 192, 0.5);
    padding-left: 1rem;
    margin-bottom: 1rem;
}

/* === STATS DISPLAY === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-box {
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid rgba(192, 192, 192, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: rgba(192, 192, 192, 0.8);
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.3);
}

.stat-value {
    font-size: 2.5rem;
    color: #FFFFFF;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: #C0C0C0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === TIMELINE === */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(192, 192, 192, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding: 1rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 1rem;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(192, 192, 192, 0.8);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.8);
}

/* === FOOTER === */
.footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 2px solid rgba(192, 192, 192, 0.5);
    padding: 2rem;
    margin-top: 4rem;
    text-align: center;
}

.footer p {
    color: #C0C0C0;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.copyright {
    font-size: 0.85rem;
    color: #808080;
    margin-top: 1rem;
    font-style: italic;
}

/* === LOADING SPINNER === */
.loading {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(192, 192, 192, 0.2);
    border-top-color: rgba(192, 192, 192, 0.8);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        text-align: center;
    }

    .navbar-logo {
        margin-bottom: 1rem;
    }

    .navbar-links {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.3rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item::before {
        left: 20px;
    }
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

.hidden {
    display: none;
}

.highlight {
    color: #FFFFFF;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.8);
}

.silver-glow {
    color: #C0C0C0;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.6);
}
