:root {
    --bg-primary: #0b132b;
    --bg-secondary: #122143;
    --accent-primary: #2e7d32;
    --accent-hover: #4caf50;
    --text-main: #f8f9fa;
    --text-muted: #adb5bd;
    
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

/* Glassmorphism Utilities */
.glass-nav {
    background: rgba(11, 19, 43, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.btn-secondary {
    background-color: #fff;
    color: #000;
}

.btn-secondary:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text-main);
    color: var(--text-main);
}

.btn-outline:hover {
    background-color: var(--text-main);
    color: #000;
    transform: translateY(-2px);
}

.w-100 { width: 100%; }

/* Typography */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #fff, #adb5bd);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: linear-gradient(135deg, rgba(10, 15, 20, 0.6) 0%, rgba(46, 125, 50, 0.4) 100%), url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-primary);
    border: none;
    color: #ffffff;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About Section */
.about-horizontal {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.about-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition);
}

.about-row:hover {
    border-color: var(--accent-primary);
    transform: translateX(5px);
}

.about-row .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.about-row h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.about-row p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.about-card {
    padding: 40px;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.about-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.about-card ul {
    list-style: none;
}

.about-card li {
    margin-bottom: 15px;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

.about-card li::before {
    content: '•';
    color: var(--accent-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.about-card strong {
    color: var(--text-main);
}

/* Installations Gallery (Dynamic JS) */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(20px);
    opacity: 0.9;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: var(--accent-primary);
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--text-main);
}

/* Noticias Section */
.timeline-scroll-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-scroll-container {
    max-height: 70vh;
    overflow-y: auto;
    padding: 0 15px 50px 15px;
}

/* Custom Scrollbar */
.timeline-scroll-container::-webkit-scrollbar {
    width: 6px;
}
.timeline-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}
.timeline-scroll-container::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 4px;
}

.scroll-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    pointer-events: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Floating Arrows */
.scroll-arrows {
    position: absolute;
    bottom: 15px;
    left: 50%;
    margin-left: -7.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: -5px;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

.scroll-arrows span {
    display: block;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid var(--accent-primary);
    border-right: 2px solid var(--accent-primary);
    transform: rotate(45deg);
    animation: arrow-scroll 2s infinite;
    margin-top: -5px;
}

.scroll-arrows span:nth-child(2) {
    animation-delay: -0.2s;
}

.scroll-arrows span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes arrow-scroll {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

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

.news-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--glass-bg);
    border-left: 4px solid var(--accent-primary);
    border-radius: 8px;
    transition: var(--transition);
}

.news-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.news-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

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

.news-action {
    margin-left: 20px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .news-action {
        margin-left: 0;
    }
    .about-row {
        flex-direction: column;
        gap: 10px;
    }
}

/* Junta Grid (Dynamic JS) */
.junta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.junta-member {
    text-align: center;
    padding: 40px 20px;
    transition: var(--transition);
}

.junta-member:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.junta-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 2px solid var(--accent-primary);
}

.junta-member h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.junta-role {
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.junta-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Contacto */
.contacto-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
}

.contacto-info {
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.02);
}

.contacto-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contacto-info p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contacto-form {
    padding: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    z-index: 1;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.wip-badge {
    background: rgba(46, 125, 50, 0.2);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin: 0 auto 20px;
    display: inline-block;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--text-main);
    transform: scale(1.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

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

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.forgot-pwd {
    color: var(--accent-primary);
}

/* Footer */
footer {
    background-color: #050a17;
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--accent-primary);
    top: 0;
    bottom: 0;
    left: 31px;
    margin-left: -1px;
}

.timeline-item {
    padding: 15px 20px 15px 70px;
    position: relative;
    background-color: inherit;
    width: 100%;
    left: 0 !important;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    left: 24px;
    background-color: var(--accent-primary);
    border: none;
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--glass-bg);
    position: relative;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.timeline-date {
    color: var(--accent-primary);
    font-weight: bold;
    margin-bottom: 10px;
}

/* Installation Detail */
.inst-detail-card {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
}

.inst-detail-img {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.inst-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inst-detail-info {
    flex: 1;
}

.inst-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.metric-box {
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    text-align: center;
}

.metric-box h4 { font-size: 2rem; color: var(--accent-primary); margin-bottom: 5px; }
.metric-box span { font-size: 0.9rem; color: var(--text-muted); }

/* Prensa Section */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.press-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.press-card .press-date {
    font-size: 0.85rem;
    color: var(--accent-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.press-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.press-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.press-card .btn {
    align-self: flex-start;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .contacto-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 19, 43, 0.95);
        backdrop-filter: blur(12px);
        padding: 20px;
        border-bottom: 1px solid var(--glass-border);
        gap: 20px;
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }
    .navbar .btn-primary { display: none; }
    .hamburger { display: flex; }
    .hamburger span {
        transition: var(--transition);
    }
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .hero h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; }
    .section-padding { padding: 60px 0; }
    
    /* Timeline is already single-column */
}

/* Installation Page */
.installation-header {
    text-align: center;
    margin-bottom: 50px;
}

.installation-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, var(--accent-primary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.installation-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Status variants */
.status-propuesta { color: #aaa; border-color: #aaa; }
.status-propuesta .status-dot { background-color: #aaa; }

.status-planificacion { color: #f39c12; border-color: #f39c12; }
.status-planificacion .status-dot { background-color: #f39c12; }

.status-construccion { color: #f1c40f; border-color: rgba(241, 196, 15, 0.4); background: rgba(241, 196, 15, 0.1); }
.status-construccion .status-dot { background-color: #f1c40f; }

.status-produccion { color: #2ecc71; border-color: rgba(46, 204, 113, 0.4); background: rgba(46, 204, 113, 0.1); }
.status-produccion .status-dot { background-color: #2ecc71; }

.blink .status-dot {
    animation: blink-animation 1.5s infinite;
}

@keyframes blink-animation {
    0% { opacity: 1; box-shadow: 0 0 0 0 rgba(241, 196, 15, 0.7); }
    50% { opacity: 0.4; box-shadow: 0 0 0 10px rgba(241, 196, 15, 0); }
    100% { opacity: 1; box-shadow: 0 0 0 0 rgba(241, 196, 15, 0); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.installation-details {
    padding: 40px;
}

.installation-details h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 10px;
}

.details-content p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Blueprint & Dashboard */
.blueprint-bg {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.tech-title {
    font-family: monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tech-subtitle {
    font-family: monospace;
    color: var(--accent-primary);
    letter-spacing: 1px;
}

.tech-font {
    font-family: 'Courier New', Courier, monospace;
}

.tech-font-sm {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    color: #888;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.dashboard-panel {
    background: rgba(11, 19, 43, 0.8);
    border: 1px solid rgba(46, 125, 50, 0.3);
    border-radius: 4px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.dashboard-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 3px; height: 100%;
    background: var(--accent-primary);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.panel-header h3 {
    font-size: 1.1rem;
    font-family: monospace;
    text-transform: uppercase;
    color: #ccc;
    margin: 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: monospace;
    font-size: 0.85rem;
    color: #2ecc71;
}

.green-dot {
    background-color: #2ecc71;
    box-shadow: 0 0 5px #2ecc71;
}

.main-metric {
    margin-bottom: 20px;
}

.metric-label {
    display: block;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.metric-value {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.metric-value small {
    font-size: 1.5rem;
    color: #888;
}

.graph-placeholder {
    width: 100%;
    height: 150px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
}

.tech-graph {
    width: 100%;
    height: 100%;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.05);
}

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

.spec-label {
    font-size: 0.9rem;
    color: #aaa;
}

.spec-value {
    font-size: 1.1rem;
    color: #fff;
    font-weight: bold;
}
