/* HOPE XVI NOC - Terminal/Hacker Aesthetic Stylesheet */

:root {
    --primary-green: #33FF00;
    --secondary-green: #00FF41;
    --dark-green: #00AA00;
    --bg-black: #0a0a0a;
    --bg-dark: #111111;
    --text-white: #f0f0f0;
    --text-gray: #c8c8c8;
    --error-red: #FF3333;
    --warning-yellow: #FFAA00;
    --terminal-font: 'Courier New', 'Consolas', monospace;
    --accent-cyan: #00FFFF;
    --accent-yellow: #FFAA00;
    --bg-section: var(--bg-dark);
    --border-color: rgba(51, 255, 0, 0.2);
    --text-color: var(--text-white);
    --text-muted: var(--text-gray);
}

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

body {
    font-family: var(--terminal-font);
    background: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
    background-image: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 255, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 255, 0, 0.03) 3px
        );
    animation: scan 8s linear infinite;
}

/* Network Closing Banner */
.closing-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #FF0000, #FF3333, #FF0000);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.5);
    border-bottom: 2px solid #FF0000;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 24px;
    animation: pulse 1s infinite;
}

.banner-text {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.banner-link {
    background: #FFFFFF;
    color: #FF0000;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.banner-link:hover {
    background: #FFFF00;
    color: #000000;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
}

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

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

@keyframes scan {
    0% { background-position: 0 0; }
    100% { background-position: 0 10px; }
}

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

/* Header Styles */
.header {
    text-align: center;
    padding: 40px 0;
    border-bottom: 2px solid var(--primary-green);
    margin-bottom: 40px;
}

.ascii-art {
    color: var(--primary-green);
    font-size: 0.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--primary-green);
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.glitch {
    font-size: 2.5rem;
    color: var(--primary-green);
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 0 10px var(--primary-green);
    margin: 20px 0;
}

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

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--secondary-green);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--dark-green);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip: rect(0, 900px, 0, 0); }
    25% { clip: rect(random(100) + px, 9999px, random(100) + px, 0); }
    50% { clip: rect(random(100) + px, 9999px, random(100) + px, 0); }
    75% { clip: rect(random(100) + px, 9999px, random(100) + px, 0); }
}

@keyframes glitch-2 {
    0%, 100% { clip: rect(0, 900px, 0, 0); }
    25% { clip: rect(random(100) + px, 9999px, random(100) + px, 0); transform: translate(-2px, 2px); }
    50% { clip: rect(random(100) + px, 9999px, random(100) + px, 0); transform: translate(2px, -2px); }
    75% { clip: rect(random(100) + px, 9999px, random(100) + px, 0); transform: translate(-2px, -2px); }
}

.subtitle {
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-top: 10px;
}

/* Section Styles */
section {
    background: var(--bg-dark);
    border: 1px solid var(--primary-green);
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 0 20px rgba(51, 255, 0, 0.1);
}

section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, var(--primary-green), transparent, var(--secondary-green));
    z-index: -1;
    opacity: 0.1;
    border-radius: 5px;
}

h2 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px var(--primary-green);
}

/* Hit Counter in Footer */
.hit-counter-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(51, 255, 0, 0.2);
}

.hit-counter-footer .counter-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
    opacity: 0.8;
}

.hit-counter-footer .disclaimer {
    color: var(--text-gray);
    opacity: 0.7;
}

.hit-counter-footer .visitor-count {
    color: var(--warning-yellow);
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 8px;
    text-shadow: 0 0 8px rgba(255, 170, 0, 0.4);
    display: inline-block;
}

.hit-counter-footer .counter-subtitle {
    margin-top: 8px;
    font-size: 1.25rem;
    color: var(--text-gray);
    opacity: 0.6;
}

/* WiFi Section */
.wifi-section.critical {
    border: 2px solid var(--primary-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(51, 255, 0, 0.3); }
    50% { box-shadow: 0 0 40px rgba(51, 255, 0, 0.6); }
}

.wifi-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--dark-green);
    padding: 20px;
    margin: 20px 0;
    border-radius: 3px;
}

.wifi-credential {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dotted var(--dark-green);
}

.wifi-credential:last-child {
    border-bottom: none;
}

.wifi-credential .label {
    color: #c8c8c8;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.wifi-credential .value {
    color: var(--primary-green);
    font-size: 1.25rem;
    font-weight: bold;
    text-shadow: 0 0 5px var(--primary-green);
}

.note {
    color: var(--secondary-green);
    font-size: 0.9rem;
    margin-top: 15px;
    text-align: center;
}

/* Status Header with Last Update */
.status-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.status-header h2 {
    margin: 0;
}

.last-update {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-style: italic;
}

.last-update span {
    color: var(--accent-yellow);
    font-weight: normal;
}

/* Status Grid */
.status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.status-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 15px;
    border: 1px solid var(--dark-green);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 80px;
    justify-content: center;
}

.status-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.status-value {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.125rem;
}

.status-value.online {
    color: var(--primary-green);
    animation: blink 1s infinite;
}

.status-value.offline {
    color: var(--error-red);
    font-weight: bold;
    animation: blink-red 1s infinite;
}

@keyframes blink-red {
    0%, 50%, 100% { 
        color: var(--error-red);
        text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    }
    25%, 75% { 
        color: #FF6666;
        text-shadow: 0 0 20px rgba(255, 0, 0, 1);
    }
}

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

/* Chart Section */
.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.chart-header h2 {
    margin: 0;
}

.chart-update {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-style: italic;
}

.chart-update span {
    color: var(--accent-yellow);
    font-weight: normal;
}

.chart-container {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--dark-green);
    padding: 20px;
    border-radius: 3px;
    height: 300px;
    position: relative;
}

#trafficChart {
    width: 100% !important;
    height: 100% !important;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.legend-item {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.legend-item.download { color: #00FFFF; }
.legend-item.upload { color: #FF00FF; }
.legend-item.total { color: var(--primary-green); }

/* Announcements */
.announcement-list {
    max-height: 300px;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--dark-green);
    padding: 15px;
    border-radius: 3px;
}

.announcement {
    padding: 10px 0;
    border-bottom: 1px dotted var(--dark-green);
    display: flex;
    gap: 15px;
}

.announcement:last-child {
    border-bottom: none;
}

.timestamp {
    color: var(--warning-yellow);
    font-size: 0.875rem;
    white-space: nowrap;
}

.message {
    color: var(--text-white);
    flex: 1;
}

/* FAQ Section */
.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--dark-green);
    border-radius: 3px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-green);
    box-shadow: 0 0 10px rgba(51, 255, 0, 0.2);
}

.faq-item summary {
    padding: 15px;
    cursor: pointer;
    color: var(--primary-green);
    font-weight: bold;
    list-style: none;
    position: relative;
    padding-left: 30px;
}

.faq-item summary::before {
    content: '▶';
    position: absolute;
    left: 10px;
    transition: transform 0.3s;
}

.faq-item[open] summary::before {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 15px 15px 30px;
    color: var(--text-white);
}

.faq-answer ol, .faq-answer ul {
    margin-left: 20px;
    margin-top: 10px;
}

.faq-answer code {
    background: rgba(51, 255, 0, 0.1);
    color: var(--primary-green);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: var(--terminal-font);
}

/* Tips Section */
.tips-list {
    list-style: none;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--dark-green);
    padding: 20px;
    border-radius: 3px;
}

.tips-list li {
    padding: 10px 0;
    border-bottom: 1px dotted var(--dark-green);
    color: var(--text-white);
}

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

/* Protocol and ASN Indicators */
.protocol-indicator,
.asn-indicator,
.destination-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Indicator Color Classes */
.indicator-primary { background: var(--primary-green); }
.indicator-info { background: var(--accent-cyan); }
.indicator-warning { background: var(--warning-yellow); }
.indicator-danger { background: var(--error-red); }
.indicator-secondary { background: var(--text-gray); }

/* Bandwidth Stats */
.bandwidth-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-green);
    border-radius: 4px;
}

.bandwidth-summary {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bandwidth-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.bandwidth-value {
    font-size: 1.25rem;
    font-weight: bold;
}

.bandwidth-value.inbound {
    color: var(--primary-green);
}

.bandwidth-value.outbound {
    color: var(--warning-yellow);
}

/* Footer */
.footer {
    margin-top: 50px;
    padding: 30px 0;
    border-top: 2px solid var(--primary-green);
    text-align: center;
}

.closing-message {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin: 10px 0;
    text-shadow: 0 0 5px rgba(51, 255, 0, 0.5);
}

.footer-content {
    color: var(--text-gray);
}

.team-credit {
    color: var(--primary-green);
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.conference-info {
    margin-bottom: 15px;
}

.links a {
    color: var(--secondary-green);
    text-decoration: none;
    transition: all 0.3s;
}

.links a:hover {
    color: var(--primary-green);
    text-shadow: 0 0 5px var(--primary-green);
}

/* Network Statistics Section */
.network-stats {
    background: var(--bg-section);
    padding: 30px;
    margin: 20px 0;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 25px;
}

.stats-header h2 {
    color: var(--primary-green);
    margin: 0;
}

.stats-update {
    color: var(--text-gray);
    font-size: 0.875rem;
    font-style: italic;
}

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

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

.panel {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(51, 255, 0, 0.2);
}

.stat-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(51, 255, 0, 0.2);
}

.stat-box h3 {
    color: var(--accent-cyan);
    margin-bottom: 15px;
    font-size: 1.125rem;
}

/* Protocol Stats */
.protocol-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.protocol-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(51, 255, 0, 0.05);
    border-radius: 4px;
}

.protocol-bar {
    width: 3px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.tcp-bar { background-color: var(--accent-cyan); }
.udp-bar { background-color: #FF00FF; }
.icmp-bar { background-color: #FFFF00; }

.protocol-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin: 8px 0;
}

.section-divider {
    height: 15px;
}

.asn-row {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    margin: 8px 0;
}

.asn-number,
.asn-data {
    color: var(--primary-green);
    text-align: right;
    font-weight: bold;
}

.geo-stat {
    margin: 10px 0;
}

.geo-label {
    color: var(--primary-green);
}

.geo-label-title {
    color: var(--primary-green);
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 15px;
}

.geo-value {
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 1rem;
}

.destination-row {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    margin: 8px 0;
}

.destination-rank {
    color: #FFAA00;
}

.destination-name {
    color: var(--primary-green);
    padding-left: 10px;
}

.destination-data, .destination-percent {
    color: var(--primary-green);
    text-align: right;
}

/* Security & Privacy Stats */
.security-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    font-size: 1rem;
}

.stat-label {
    color: var(--text-white);
    font-weight: bold;
}

.stat-value {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.25rem;
}

.security-note {
    color: var(--text-gray);
    font-style: italic;
    font-size: 0.875rem;
    text-align: center;
    margin: 10px 0 20px 0;
}

/* PUA Detection Styles */
.pua-details {
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 68, 68, 0.05);
    border: 1px solid rgba(255, 68, 68, 0.2);
    border-radius: 5px;
}

.pua-subtitle {
    color: var(--accent-yellow);
    font-weight: bold;
    font-size: 0.875rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.pua-item {
    display: grid;
    grid-template-columns: 2fr 0.5fr 1.5fr;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 68, 68, 0.1);
    font-size: 0.875rem;
}

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

.pua-name {
    color: #ff6666;
    font-weight: bold;
}

.pua-count {
    color: var(--accent-yellow);
    text-align: center;
    font-weight: bold;
}

.pua-ip {
    color: var(--text-white);
    font-family: monospace;
    text-align: right;
}

.security-subtitle,
.social-subtitle {
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 0.95rem;
    margin: 20px 0 15px 0;
    text-transform: uppercase;
}

.bypass-item,
.social-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(51, 255, 0, 0.1);
}

.bypass-item:last-of-type,
.social-item:last-of-type {
    border-bottom: none;
}

.bypass-name,
.site-name {
    flex: 1;
    color: var(--text-white);
    font-size: 0.9rem;
}

.bypass-percent,
.site-percent {
    color: var(--accent-yellow);
    font-weight: bold;
    font-size: 0.9rem;
    margin-left: 10px;
}

/* Suspicious Traffic Panel */
.suspicious-traffic-panel {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.08), rgba(255, 0, 0, 0.03));
    border: 1px solid rgba(255, 68, 68, 0.4);
}

.threat-summary {
    background: rgba(255, 68, 68, 0.15);
    border: 1px solid rgba(255, 68, 68, 0.4);
    border-radius: 5px;
    padding: 12px;
    margin: 15px 0;
    color: #ffaa00;
    font-size: 0.875rem;
    line-height: 1.4;
    animation: threat-pulse 3s ease-in-out infinite;
}

@keyframes threat-pulse {
    0%, 100% { border-color: rgba(255, 68, 68, 0.4); }
    50% { border-color: rgba(255, 68, 68, 0.8); }
}

.threat-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 20px 0;
}

.threat-metric {
    background: rgba(42, 63, 95, 0.3);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgba(255, 68, 68, 0.2);
    text-align: center;
}

.metric-label {
    display: block;
    color: var(--text-gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.metric-value {
    color: #ff6666;
    font-weight: bold;
    font-size: 1.125rem;
}

.threat-list {
    margin: 20px 0;
}

.threat-section-title {
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 0.95rem;
    margin: 20px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.threat-item {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 1fr;
    align-items: center;
    padding: 12px;
    margin: 8px 0;
    border-radius: 5px;
    border-left: 4px solid;
    background: rgba(42, 63, 95, 0.2);
    gap: 10px;
}

.threat-item.critical {
    border-left-color: #ff0000;
    background: rgba(255, 0, 0, 0.05);
}

.threat-item.high {
    border-left-color: #ff6600;
    background: rgba(255, 102, 0, 0.05);
}

.threat-item.medium {
    border-left-color: #ffaa00;
    background: rgba(255, 170, 0, 0.05);
}

.threat-name {
    color: var(--text-white);
    font-weight: bold;
    font-size: 0.875rem;
}

.threat-type {
    color: #ff6666;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

.threat-traffic {
    color: var(--accent-yellow);
    font-weight: bold;
    text-align: right;
    font-family: monospace;
}

.threat-footer {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 68, 68, 0.2);
    color: var(--text-gray);
    font-size: 0.875rem;
    font-style: italic;
}

/* Export Control Countries Panel */
.export-control-panel {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.05), rgba(255, 170, 0, 0.05));
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.export-warning {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 5px;
    padding: 10px;
    margin: 15px 0;
    color: #ffaa00;
    font-weight: bold;
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    animation: warning-pulse 2s ease-in-out infinite;
}

.export-country {
    display: grid;
    grid-template-columns: 40px 2fr 1fr;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 68, 68, 0.1);
}

.export-country:last-of-type {
    border-bottom: none;
}

.country-flag {
    font-size: 1.5rem;
    text-align: center;
}

.country-name {
    color: var(--text-white);
    font-weight: bold;
    padding-left: 10px;
}

.country-traffic {
    color: #ff6666;
    text-align: right;
    font-weight: bold;
}

.export-note {
    margin-top: 20px;
    padding: 10px;
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid rgba(255, 170, 0, 0.3);
    border-radius: 5px;
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.4;
    text-align: center;
}

/* Trending Indicators */
.trend-up {
    color: var(--primary-green);
    font-weight: bold;
    margin-left: 5px;
    font-size: 0.875rem;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.trend-down {
    color: var(--error-red);
    font-weight: bold;
    margin-left: 5px;
    font-size: 0.875rem;
    text-shadow: 0 0 5px rgba(255, 68, 68, 0.5);
}

.trend-stable {
    color: #ffaa00;
    font-weight: bold;
    margin-left: 5px;
    font-size: 0.875rem;
    text-shadow: 0 0 5px rgba(255, 170, 0, 0.3);
}

.rank, .social-rank {
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 10px;
    min-width: 20px;
}

.traffic-summary {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--dark-green);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    font-size: 0.875rem;
}

.summary-label {
    color: var(--text-gray);
}

.summary-value {
    color: var(--primary-green);
    font-weight: bold;
}

/* Compact Bandwidth Panel */
.bandwidth-compact {
    margin-top: 10px;
}

.bandwidth-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(51, 255, 0, 0.1);
}

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

.bandwidth-ip {
    color: var(--text-white);
    font-family: monospace;
    font-size: 0.9rem;
}

.bandwidth-size {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Old conversation styles - keeping for backwards compatibility */
.conversation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(51, 255, 0, 0.1);
}

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

.conversation-endpoints {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    overflow: hidden;
}

.endpoint-sender,
.endpoint-receiver {
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 45%;
}

.arrow {
    color: var(--accent-yellow);
    font-weight: bold;
    flex-shrink: 0;
}

.conversation-size {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
    margin-left: 10px;
}

.protocol-name {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.protocol-percent {
    color: var(--primary-green);
    font-weight: bold;
}

/* ASN Leaderboard */
.asn-leaderboard {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.asn-item {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.asn-item:hover {
    background: rgba(51, 255, 0, 0.1);
    transform: translateX(5px);
}

.asn-rank {
    color: var(--accent-cyan);
    font-weight: bold;
}

.asn-item:nth-child(1) .asn-rank { color: #FFD700; } /* Gold */
.asn-item:nth-child(2) .asn-rank { color: #C0C0C0; } /* Silver */
.asn-item:nth-child(3) .asn-rank { color: #CD7F32; } /* Bronze */

.asn-name {
    color: var(--text-color);
    font-family: monospace;
    font-size: 0.9rem;
}

.asn-count, .asn-percent {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Geographic Stats */
.geo-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.geo-highlight {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Section subtitle styling */
.section-subtitle {
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--primary-green);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.geo-highlight .highlight {
    color: var(--primary-green);
    font-weight: bold;
    text-shadow: 0 0 3px rgba(51, 255, 0, 0.3);
}

/* Application Stats */
.app-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    border-left: 2px solid var(--accent-cyan);
    transition: all 0.2s ease;
}

.app-item:hover {
    background: rgba(0, 255, 255, 0.05);
    transform: translateX(3px);
}

.app-name {
    color: var(--text-color);
    font-family: monospace;
    font-size: 0.9rem;
}

.app-percent {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Location Stats */
.location-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-item {
    display: grid;
    grid-template-columns: 25px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.location-item:hover {
    background: rgba(51, 255, 0, 0.05);
    border-left: 2px solid var(--primary-green);
}

.location-rank {
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 0.9rem;
}

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

.location-percent {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Network Overview Section */
.network-overview {
    background: var(--bg-section);
    padding: 30px;
    margin: 20px 0;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.network-overview h2 {
    color: var(--primary-green);
    margin-bottom: 25px;
}

.overview-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: start;
}

.overview-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid var(--dark-green);
    cursor: pointer;
}

.noc-equipment-img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
    cursor: zoom-in;
}

.overview-image:hover .noc-equipment-img {
    filter: brightness(1) contrast(1.2);
    transform: scale(1.02);
}

.image-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary-green);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.overview-image:hover .image-hint {
    opacity: 1;
}

.overview-details h3 {
    color: var(--accent-cyan);
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.infrastructure-list {
    list-style: none;
    padding: 0;
}

.infrastructure-list > li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
    line-height: 1.6;
}

.infrastructure-list > li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.infrastructure-list strong {
    color: var(--primary-green);
    margin-right: 5px;
}

.sub-list {
    list-style: none;
    margin-top: 8px;
    padding-left: 20px;
}

.sub-list li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
    color: var(--text-muted);
}

.sub-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .overview-container {
        grid-template-columns: 1fr;
    }
    
    .overview-image {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* NOC Staff Section */
.noc-staff-section {
    background: var(--bg-section);
    padding: 30px;
    margin: 20px 0;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.noc-staff-section h2 {
    color: var(--primary-green);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin: 30px 0;
    justify-items: center;
}

.staff-member {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    border: 1px solid rgba(51, 255, 0, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.staff-member:hover {
    border-color: var(--primary-green);
    background: rgba(51, 255, 0, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(51, 255, 0, 0.3);
}

.staff-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-cyan);
    margin-bottom: 8px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.staff-role {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.staff-location {
    text-align: center;
    color: var(--primary-green);
    font-size: 1.125rem;
    margin-top: 20px;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(51, 255, 0, 0.3);
}

/* Sponsors Section */
.sponsors-section {
    background: var(--bg-section);
    padding: 30px;
    margin: 20px 0;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.sponsors-section h2 {
    color: var(--primary-green);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8rem;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
    align-items: center;
    justify-items: center;
}

.sponsor-item {
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(51, 255, 0, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-item:hover {
    border-color: var(--primary-green);
    background: rgba(51, 255, 0, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(51, 255, 0, 0.2);
}

.sponsor-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    filter: brightness(0.9) contrast(1.2);
    transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
    filter: brightness(1.2) contrast(1.3) drop-shadow(0 0 15px rgba(51, 255, 0, 0.6));
    transform: scale(1.05);
}

.fortinet-logo {
    filter: brightness(0.9) sepia(1) saturate(2) hue-rotate(90deg);
}

.sponsor-item:hover .fortinet-logo {
    filter: brightness(1.2) sepia(1) saturate(3) hue-rotate(90deg) drop-shadow(0 0 15px rgba(51, 255, 0, 0.8));
}

.axcelx-logo {
    filter: brightness(1.1) sepia(1) saturate(2) hue-rotate(180deg);
}

.sponsor-item:hover .axcelx-logo {
    filter: brightness(1.4) sepia(1) saturate(3) hue-rotate(180deg) drop-shadow(0 0 15px rgba(0, 255, 255, 0.8));
}

.sponsor-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 20px;
    font-style: italic;
}

/* Image Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    cursor: zoom-out;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    margin-top: 5vh;
    border: 2px solid var(--primary-green);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(51, 255, 0, 0.3);
    animation: zoomIn 0.3s ease;
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--primary-green);
    padding: 10px 0;
    font-size: 1.125rem;
    text-shadow: 0 0 5px rgba(51, 255, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--primary-green);
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(51, 255, 0, 0.5);
}

.modal-close:hover,
.modal-close:focus {
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    transform: scale(1.2);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}

/* FortiGate Stats Section */
.fortigate-stats {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(51, 255, 0, 0.05));
    border: 1px solid var(--dark-green);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.fortigate-stats h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

/* Warning state for high CPU/Memory usage */
.status-value.warning {
    color: var(--warning-yellow);
    text-shadow: 0 0 5px rgba(255, 170, 0, 0.8);
    animation: warning-pulse 2s ease-in-out infinite;
}

@keyframes warning-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Last update timestamp styling */
.last-update {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 10px;
    text-align: center;
    opacity: 0.8;
}

/* API info styling */
.api-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 255, 65, 0.3);
}

.api-note {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-align: center;
}

.api-note a {
    color: var(--secondary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.api-note a:hover {
    color: var(--primary-green);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .glitch {
        font-size: 1.8rem;
    }
    
    .ascii-art {
        font-size: 0.6rem;
    }
    
    section {
        padding: 20px;
    }
    
    .status-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wifi-credential {
        flex-direction: column;
        gap: 5px;
    }
    
    .announcement {
        flex-direction: column;
        gap: 5px;
    }
}

/* Anomaly Detection Panel Styles */
.anomaly-panel {
    background: linear-gradient(135deg, rgba(30, 0, 0, 0.9), rgba(60, 10, 10, 0.8));
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.anomaly-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.anomaly-metric {
    background: rgba(0, 0, 0, 0.4);
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.anomaly-metric .metric-label {
    display: block;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.anomaly-metric .metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-green);
}

.anomaly-metric .metric-value.critical {
    color: var(--error-red);
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.8);
}

.attack-types {
    margin: 20px 0;
}

.attack-row {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 68, 68, 0.1);
}

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

.attack-type {
    color: var(--text-white);
    font-weight: bold;
}

.attack-count {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.attack-severity {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.attack-severity.critical {
    background: rgba(255, 68, 68, 0.3);
    color: var(--error-red);
    border: 1px solid var(--error-red);
}

.attack-severity.high {
    background: rgba(255, 170, 0, 0.3);
    color: #ffaa00;
    border: 1px solid #ffaa00;
}

.attack-severity.medium {
    background: rgba(255, 255, 0, 0.2);
    color: #ffff00;
    border: 1px solid #ffff00;
}

.top-offenders {
    margin: 20px 0;
}

.offender-row {
    display: grid;
    grid-template-columns: 30px 140px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 68, 68, 0.1);
}

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

.offender-rank {
    color: var(--accent-cyan);
    font-weight: bold;
}

.offender-ip {
    color: var(--text-white);
    font-family: monospace;
    font-size: 0.9rem;
}

.offender-attacks {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.offender-count {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.offender-count.critical {
    background: rgba(255, 68, 68, 0.2);
    color: var(--error-red);
}

.offender-count.high {
    background: rgba(255, 170, 0, 0.2);
    color: #ffaa00;
}

.offender-count.medium {
    background: rgba(255, 255, 0, 0.15);
    color: #ffff00;
}

.anomaly-patterns {
    margin: 20px 0;
}

.pattern-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 68, 68, 0.1);
}

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

.pattern-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pattern-desc {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.anomaly-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 68, 68, 0.2);
    color: var(--text-gray);
    font-size: 0.85rem;
}

.anomaly-footer strong {
    color: var(--text-white);
}

/* Beaconing Analysis Styles */
.beaconing-analysis {
    margin-top: 20px;
    padding-top: 20px;
}

.beacon-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 68, 68, 0.1);
}

.beacon-stat:last-child {
    border-bottom: none;
}

.beacon-label {
    color: var(--text-gray);
    font-weight: bold;
    font-size: 0.9rem;
}

.beacon-value {
    color: var(--accent-yellow);
    font-size: 0.9rem;
    text-align: right;
}

.beacon-patterns {
    margin-top: 20px;
}

.beacon-note {
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid rgba(255, 170, 0, 0.3);
    border-radius: 6px;
    padding: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.beacon-note strong {
    color: var(--accent-yellow);
    margin-right: 5px;
}

/* External Complaints Panel */
.complaints-panel {
    background: linear-gradient(135deg, rgba(40, 0, 10, 0.9), rgba(80, 0, 20, 0.8));
    border: 1px solid rgba(255, 0, 100, 0.3);
}

.complaint-alert {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 68, 68, 0.5);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.alert-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.alert-content {
    flex: 1;
    color: var(--text-white);
    line-height: 1.5;
}

.alert-content strong {
    color: var(--accent-yellow);
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(255, 170, 0, 0.5);
}

.complaint-status-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}

.complaint-status-box .status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 0, 100, 0.1);
}

.complaint-status-box .status-row:last-child {
    border-bottom: none;
}

.complaint-status-box .status-label {
    color: var(--text-gray);
    font-weight: bold;
}

.complaint-status-box .status-value {
    color: var(--text-white);
}

.complaint-status-box .status-value.unverified {
    color: var(--accent-yellow);
    font-weight: bold;
    text-transform: uppercase;
}

.complaints-list {
    margin: 20px 0;
}

.complaint-item {
    display: grid;
    grid-template-columns: 140px 1.5fr 1.5fr auto;
    gap: 15px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 0, 100, 0.1);
}

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

.complaint-time {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-family: monospace;
}

.complaint-source {
    color: var(--text-white);
    font-weight: bold;
}

.complaint-type {
    color: var(--accent-yellow);
    font-size: 0.9rem;
}

.complaint-status {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.complaint-status.critical {
    background: rgba(255, 68, 68, 0.3);
    color: var(--error-red);
    border: 1px solid var(--error-red);
    animation: blink 1s infinite;
}

.complaint-status.high {
    background: rgba(255, 170, 0, 0.3);
    color: #ffaa00;
    border: 1px solid #ffaa00;
}

.complaint-status.medium {
    background: rgba(0, 255, 0, 0.2);
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

.complaint-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    padding: 15px;
    margin: 20px 0;
}

.detail-item {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 0, 100, 0.1);
}

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

.detail-item strong {
    color: var(--text-white);
    margin-right: 10px;
}

.complaint-footer {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 68, 68, 0.05);
    border-left: 3px solid var(--error-red);
    border-radius: 4px;
}

.complaint-footer em {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.4;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}