* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, -20px) rotate(1deg); }
    75% { transform: translate(10px, 20px) rotate(-1deg); }
}

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

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

@keyframes connectionGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

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

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.4); }
    50% { box-shadow: 0 0 0 4px rgba(0, 255, 0, 0); }
}

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

:root {
    --primary-bg: #303948;
    --primary-text: #FFFFFF;
    --accent: #3cbef2;
    --accent-dark: #2a8db5;
    --module-bg: rgba(48, 57, 72, 0.85);
    --module-border: rgba(60, 190, 242, 0.3);
    --warning: #ff9900;
    --success: #00cc66;
    --danger: #ff3333;
}

body {
    background: var(--primary-bg);
    color: var(--primary-text);
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', monospace;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    animation: fadeIn 0.8s ease-out;
}

.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.dynamic-grid {
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: repeat(20, 1fr);
    width: 100%;
    height: 100%;
}

.grid-cell {
    border-right: 1px solid rgba(60, 190, 242, 0.05);
    border-bottom: 1px solid rgba(60, 190, 242, 0.05);
    transition: background-color 0.3s;
}

.grid-cell:nth-child(4n) {
    border-right: 1px solid rgba(60, 190, 242, 0.1);
}

.grid-cell:nth-child(7n) {
    border-bottom: 1px solid rgba(60, 190, 242, 0.1);
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--accent) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.15;
    animation: float 25s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -150px;
    animation-delay: -12.5s;
    background: radial-gradient(circle at 70% 70%, var(--accent) 0%, transparent 70%);
}

.orb-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 80%;
    animation-delay: -6s;
    opacity: 0.1;
}

.header {
    position: relative;
    padding: 40px 0 60px;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--module-border);
    z-index: 1;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.logo-container {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(60, 190, 242, 0.1), rgba(60, 190, 242, 0.05));
    border-radius: 16px;
    border: 1px solid var(--module-border);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(60, 190, 242, 0.2);
    border-color: var(--accent);
}

.logo {
    width: 165px;
    height: 60px;
    filter: drop-shadow(0 0 15px var(--accent));
    position: relative;
    z-index: 2;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 70px;
    background: var(--accent);
    filter: blur(25px);
    opacity: 0.25;
    z-index: 1;
}

.header-title {
    flex: 1;
}

.header-title h1 {
    font-size: 4.8rem;
    font-weight: 900;
    letter-spacing: 20px;
    text-transform: uppercase;
    color: transparent;
    background: linear-gradient(135deg, var(--primary-text) 30%, var(--accent) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 5px;
    text-shadow: 0 5px 15px rgba(60, 190, 242, 0.3);
    line-height: 1;
}

.header-title .subtitle {
    font-size: 1.4rem;
    letter-spacing: 8px;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 15px;
}

.subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent);
    opacity: 0.5;
}

.subtitle::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent);
    opacity: 0.5;
}

.scan-line {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent), 
        var(--accent), 
        transparent
    );
    animation: scan 4s infinite linear;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 35px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.panel {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.module {
    background: var(--module-bg);
    border: 1px solid var(--module-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out backwards;
}

.module:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent 70%);
    opacity: 0.7;
}

.module-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(60, 190, 242, 0.2);
}

.module-header i {
    color: var(--accent);
    font-size: 1.4rem;
}

.module-header h2, .module-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-text);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.status-pulse {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
    margin-left: auto;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 16px;
    background: linear-gradient(135deg, 
        rgba(60, 190, 242, 0.08), 
        rgba(60, 190, 242, 0.02)
    );
    border-radius: 12px;
    border-left: 3px solid var(--accent);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(60, 190, 242, 0.1), 
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.link-item:hover::before {
    transform: translateX(100%);
}

.link-item:hover {
    background: linear-gradient(135deg, 
        rgba(60, 190, 242, 0.15), 
        rgba(60, 190, 242, 0.05)
    );
    transform: translateX(5px);
}

.node-id {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 85px;
    background: rgba(60, 190, 242, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    text-align: center;
    letter-spacing: 1px;
}

.mirror-link {
    color: var(--primary-text);
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    word-break: break-all;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mirror-link:hover {
    color: var(--accent);
    background: rgba(60, 190, 242, 0.1);
    border-color: rgba(60, 190, 242, 0.3);
}

.link-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.link-status.active {
    background: rgba(0, 204, 102, 0.15);
    color: var(--success);
    border: 1px solid rgba(0, 204, 102, 0.3);
}

.link-status.pending {
    background: rgba(255, 153, 0, 0.15);
    color: var(--warning);
    border: 1px solid rgba(255, 153, 0, 0.3);
}

.stats-module .stat {
    padding: 18px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.04), 
        rgba(255, 255, 255, 0.01)
    );
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(60, 190, 242, 0.1);
}

.stats-module .stat:last-child {
    margin-bottom: 0;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    letter-spacing: 1px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
    text-shadow: 0 0 10px rgba(60, 190, 242, 0.3);
}

.stat-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    border-radius: 3px;
    position: relative;
    transition: width 1.5s ease-out;
}

.stat-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    animation: scan 2s infinite linear;
}

.rating-display {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, 
        rgba(60, 190, 242, 0.1), 
        rgba(60, 190, 242, 0.03)
    );
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid rgba(60, 190, 242, 0.2);
}

.rating-value {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 25px rgba(60, 190, 242, 0.5);
    line-height: 1;
    margin-bottom: 10px;
}

.rating-label {
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: var(--accent);
    font-size: 1.6rem;
}

.review-text {
    line-height: 1.7;
}

.review-text p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.review-text strong {
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(60, 190, 242, 0.2);
}

.tag {
    padding: 6px 16px;
    background: rgba(60, 190, 242, 0.12);
    border: 1px solid rgba(60, 190, 242, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(60, 190, 242, 0.2);
    transform: translateY(-2px);
}

.topology-map {
    position: relative;
    height: 280px;
    margin: 20px 0;
}

.center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at 30% 30%, 
        rgba(60, 190, 242, 0.15), 
        rgba(60, 190, 242, 0.05)
    );
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
    z-index: 2;
    box-shadow: 0 0 30px rgba(60, 190, 242, 0.3);
    animation: pulse 4s infinite ease-in-out;
}

.peripheral-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%) 
               rotate(var(--angle)) 
               translateX(180px) 
               rotate(calc(-1 * var(--angle)));
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08), 
        rgba(255, 255, 255, 0.02)
    );
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 1;
}

.peripheral-node:hover {
    background: linear-gradient(135deg, 
        rgba(60, 190, 242, 0.15), 
        rgba(60, 190, 242, 0.05)
    );
    border-color: var(--accent);
    transform: translate(-50%, -50%) 
               rotate(var(--angle)) 
               translateX(180px) 
               rotate(calc(-1 * var(--angle))) 
               scale(1.1);
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 1px;
    background: linear-gradient(90deg, 
        var(--accent), 
        transparent
    );
    transform-origin: left center;
    transform: rotate(var(--line-angle));
    opacity: 0.4;
    animation: connectionGlow 3s infinite ease-in-out;
    animation-delay: calc(var(--line-angle) * 10ms);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.status-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.status-item i {
    font-size: 1.4rem;
    color: var(--accent);
}

.status-item span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    right: 12px;
}

.status-item.online .status-indicator {
    background: var(--success);
    animation: statusPulse 2s infinite;
}

.status-item.warning .status-indicator {
    background: var(--warning);
    animation: pulse 1.5s infinite;
}

.warning-content {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.warning-content p {
    margin-bottom: 15px;
}

.flashing-alert {
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(135deg, 
        rgba(255, 153, 0, 0.15), 
        rgba(255, 153, 0, 0.05)
    );
    border: 1px solid rgba(255, 153, 0, 0.3);
    border-radius: 10px;
    text-align: center;
    animation: pulse 3s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--warning);
    font-weight: 600;
    font-size: 0.95rem;
}

.time-module {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, 
        rgba(60, 190, 242, 0.08), 
        rgba(60, 190, 242, 0.02)
    );
    border: 1px solid rgba(60, 190, 242, 0.2);
    border-radius: 18px;
}

.time-display {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(60, 190, 242, 0.4);
    letter-spacing: 6px;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
    font-family: 'Courier New', monospace;
}

.time-label {
    letter-spacing: 3px;
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.full-width-module {
    background: var(--module-bg);
    border: 1px solid var(--module-border);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 50px;
    backdrop-filter: blur(15px);
    animation: fadeIn 0.6s ease-out backwards;
    animation-delay: 0.2s;
}

.full-width-module h3 {
    margin-bottom: 30px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.spec-item {
    padding: 22px;
    background: linear-gradient(135deg, 
        rgba(60, 190, 242, 0.08), 
        rgba(60, 190, 242, 0.02)
    );
    border-radius: 14px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, 
        rgba(60, 190, 242, 0.12), 
        rgba(60, 190, 242, 0.04)
    );
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.spec-title {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spec-title::before {
    content: '▶';
    font-size: 0.8rem;
    opacity: 0.7;
}

.spec-desc {
    line-height: 1.6;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer {
    border-top: 1px solid var(--module-border);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.footer-text {
    opacity: 0.7;
    font-weight: 300;
}

.footer-crypto {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    background: rgba(60, 190, 242, 0.08);
    border-radius: 20px;
    color: var(--accent);
    font-weight: 500;
    border: 1px solid rgba(60, 190, 242, 0.2);
}

.text-module .text-content p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.text-module .text-content strong {
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

.text-module h3 {
    margin-bottom: 20px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 1600px) {
    .content-grid {
        grid-template-columns: 1fr 1.2fr 1fr;
    }
}

@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .header-title h1 {
        font-size: 3.8rem;
        letter-spacing: 15px;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .header-title h1 {
        font-size: 2.8rem;
        letter-spacing: 10px;
    }
    
    .header-title .subtitle {
        font-size: 1.1rem;
        letter-spacing: 5px;
        justify-content: center;
    }
    
    .content-grid {
        gap: 25px;
    }
    
    .module {
        padding: 25px;
    }
    
    .footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .link-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .node-id {
        min-width: auto;
        align-self: flex-start;
    }
    
    .time-display {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    .header-title h1 {
        font-size: 2rem;
        letter-spacing: 5px;
    }
    
    .header-title .subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
    
    .rating-value {
        font-size: 3.5rem;
    }
    
    .time-display {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }
    
    .module {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating-orb,
    .scan-line,
    .status-pulse,
    .connection-line,
    .stat-fill::after,
    .center-node,
    .flashing-alert,
    .link-status.active .status-indicator {
        animation: none !important;
    }
}

.navigation {
    background: linear-gradient(135deg, 
        rgba(60, 190, 242, 0.08), 
        rgba(60, 190, 242, 0.02)
    );
    border: 1px solid var(--module-border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(15px);
    animation: fadeIn 0.6s ease-out backwards;
    animation-delay: 0.1s;
}

.nav-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-link {
    color: var(--primary-text);
    text-decoration: none;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(60, 190, 242, 0.2);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link:hover {
    background: rgba(60, 190, 242, 0.12);
    color: var(--accent);
    transform: translateY(-2px);
    border-color: var(--accent);
}

.additional-info {
    margin-top: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    border-left: 3px solid var(--accent);
}

.additional-info p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.additional-info strong {
    color: var(--accent);
    font-weight: 600;
}

.topology-description {
    margin-top: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    border-left: 3px solid var(--accent);
}

.topology-description p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.topology-description strong {
    color: var(--accent);
    font-weight: 600;
}

.node-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.2;
    animation: pulse 2s infinite;
    z-index: -1;
}

.date-stamp {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary-text);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.warning-module {
    border-color: rgba(255, 153, 0, 0.4);
}

.warning-module::before {
    background: linear-gradient(90deg, var(--warning), transparent 70%);
}

.warning-header {
    color: var(--warning);
}

.warning-header i {
    color: var(--warning);
}

.time-subtext {
    font-size: 0.85rem;
    opacity: 0.7;
    letter-spacing: 1px;
    margin-top: 8px;
}

.development-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.development-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent, 
        var(--accent), 
        transparent
    );
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
    padding-left: 80px;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 80px;
    padding: 8px 16px;
    background: linear-gradient(135deg, 
        rgba(60, 190, 242, 0.12), 
        rgba(60, 190, 242, 0.04)
    );
    border: 1px solid rgba(60, 190, 242, 0.3);
    border-radius: 12px;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
    text-align: center;
}

.timeline-content {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border-left: 3px solid var(--accent);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.footer-text small {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.6;
    line-height: 1.5;
    max-width: 800px;
}

.text-content {
    line-height: 1.7;
}

.text-content p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.88);
}

.text-content strong {
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

.star {
    transition: transform 0.3s ease;
}

.star:hover {
    transform: scale(1.2);
}

@media (max-width: 1200px) {
    .nav-container {
        gap: 15px;
    }
    
    .nav-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .development-timeline::before {
        left: 25px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-date {
        min-width: 70px;
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .navigation {
        padding: 15px;
    }
    
    .nav-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .nav-link {
        flex-shrink: 0;
    }
    
    .development-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline-date {
        position: relative;
        left: auto;
        top: auto;
        align-self: flex-start;
    }
    
    .additional-info,
    .topology-description {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .nav-link {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .nav-link i {
        font-size: 0.9rem;
    }
    
    .timeline-item {
        padding-left: 0;
    }
    
    .development-timeline::before {
        display: none;
    }
}

@media (hover: none) {
    .link-item:hover,
    .module:hover,
    .status-item:hover,
    .spec-item:hover,
    .nav-link:hover,
    .tag:hover {
        transform: none;
    }
    
    .link-item:hover::before {
        transform: translateX(-100%);
    }
}

@supports not (backdrop-filter: blur(15px)) {
    .module,
    .full-width-module,
    .navigation,
    .logo-container {
        background: rgba(48, 57, 72, 0.95);
    }
}

.peripheral-node,
.center-node {
    will-change: transform;
}

.connection-line {
    will-change: opacity;
}

.scan-line {
    will-change: transform;
}

.floating-orb {
    will-change: transform;
}

.flashing-alert {
    will-change: opacity;
}