/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    /* Colors */
    --primary-bg: #0a0a0b;
    --secondary-bg: #111117;
    --tertiary-bg: #1a1a23;
    --card-bg: #161622;
    --border-color: #2a2a35;

    /* Neon Colors */
    --neon-blue: #00d4ff;
    --neon-green: #00ff88;
    --neon-purple: #b347ff;
    --neon-cyan: #47ffff;
    --neon-red: #ff4757;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8b8cc;
    --text-muted: #6b6b80;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-cyan) 100%);
    --gradient-danger: linear-gradient(135deg, #ff4757 0%, #ff6b47 100%);

    /* Shadows */
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.6);

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Network Background */
#network-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 20%, var(--neon-blue) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, var(--neon-green) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, var(--neon-purple) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: networkFloat 20s linear infinite;
}

@keyframes networkFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -50px); }
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 11, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    padding: 15px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.logo-text {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
    position: relative;
}

.nav-link:hover {
    color: var(--neon-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.875rem;
    white-space: nowrap;
    min-width: 140px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--neon-green);
}

.status-indicator i {
    animation: pulse 2s infinite;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.subtitle {
    display: block;
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 8px;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--neon-blue);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--neon-blue);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--card-bg);
    border-color: var(--neon-blue);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Network Diagram */
.network-diagram-container {
    border: none !important;
    outline: none !important;
    perspective: 1000px;
}

.network-diagram {
    width: 100%;
    height: 400px;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0));
}

.hub-core {
    fill: var(--neon-blue);
    stroke: var(--neon-cyan);
    stroke-width: 2;
    filter: drop-shadow(0 0 10px var(--neon-blue));
    animation: hubPulse 3s ease-in-out infinite;
}

.hub-inner {
    fill: rgba(0, 212, 255, 0.2);
    stroke: none;
}

.hub-text {
    fill: white;
    text-anchor: middle;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
}

.client-node {
    fill: var(--neon-green);
    stroke: var(--neon-cyan);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 5px var(--neon-green));
    animation: nodeFloat 4s ease-in-out infinite;
}

.client-node:nth-child(even) {
    animation-delay: -2s;
}

.connection-line {
    stroke: var(--neon-blue);
    stroke-width: 2;
    opacity: 0.6;
    stroke-dasharray: 5, 5;
    animation: connectionFlow 2s linear infinite;
}

.data-packet {
    fill: var(--neon-purple);
    filter: drop-shadow(0 0 3px var(--neon-purple));
}

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

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes connectionFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 10; }
}

/* Architecture Section */
.architecture-section {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.architecture-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.architecture-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-normal);
}

.architecture-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--neon-blue);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.vpn-card .card-title {
    color: var(--neon-red);
}

.willynet-card .card-title {
    color: var(--neon-green);
}

.architecture-visual {
    margin-bottom: 24px;
}

.arch-diagram {
    width: 100%;
    height: 200px;
}

.vpn-server {
    fill: var(--neon-red);
    stroke: #ff6b47;
    stroke-width: 2;
}

.vpn-client {
    fill: var(--text-muted);
    stroke: var(--neon-red);
    stroke-width: 2;
}

.vpn-connection {
    stroke: var(--neon-red);
    stroke-width: 3;
    stroke-dasharray: 10, 5;
    animation: vpnFlow 3s linear infinite;
}

.willy-client {
    fill: var(--neon-green);
    stroke: var(--neon-cyan);
    stroke-width: 2;
    filter: drop-shadow(0 0 5px var(--neon-green));
}

.willy-connection {
    stroke: var(--neon-blue);
    stroke-width: 4;
    filter: drop-shadow(0 0 5px var(--neon-blue));
    animation: willyFlow 2s ease-in-out infinite;
}

.willy-coordinator {
    fill: var(--neon-purple);
    stroke: var(--neon-cyan);
    stroke-width: 1;
    opacity: 0.8;
}

.coord-line {
    stroke: var(--neon-purple);
    stroke-width: 1;
    stroke-dasharray: 3, 3;
    opacity: 0.6;
}

.arch-text, .coord-text {
    fill: white;
    text-anchor: middle;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
}

.arch-label {
    fill: var(--text-secondary);
    text-anchor: middle;
    font-size: 12px;
}

.latency-text {
    fill: var(--neon-red);
    text-anchor: middle;
    font-size: 10px;
    font-weight: 600;
}

.performance-text {
    fill: var(--neon-green);
    text-anchor: middle;
    font-size: 10px;
    font-weight: 600;
}

@keyframes vpnFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 15; }
}

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

.architecture-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-value {
    font-weight: 600;
    font-family: var(--font-mono);
}

.stat-value.good {
    color: var(--neon-green);
}

.stat-value.bad {
    color: var(--neon-red);
}

/* Features Section */
.features-section {
    padding: var(--section-padding);
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: var(--transition-slow);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--neon-blue);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-metrics {
    display: flex;
    justify-content: center;
}

.metric {
    padding: 6px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--neon-green);
    font-family: var(--font-mono);
    font-weight: 600;
}

/* Status Section */
.status-section {
    padding: var(--section-padding);
    background: var(--secondary-bg);
}

.status-dashboard {
    max-width: 1000px;
    margin: 0 auto;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.status-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition-normal);
}

.status-card:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--shadow-card);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.status-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

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

.status-indicator.online {
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.status-metric {
    text-align: center;
    margin-bottom: 20px;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--neon-blue);
    margin-bottom: 4px;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.lobby-counter {
    margin-top: 8px;
}

.counter-display {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    flex: 1;
    transition: var(--transition-normal);
}

.counter-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--neon-blue);
}

.counter-number {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-green);
    line-height: 1;
    margin-bottom: 4px;
}

.counter-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.throughput-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar-label {
    min-width: 60px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.bar-container {
    flex: 1;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 3px;
    animation: barGrow 2s ease-out;
}

@keyframes barGrow {
    0% { width: 0; }
}

.security-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-green);
    font-size: 0.875rem;
}

.security-item i {
    font-size: 1rem;
}

/* Download Section */
.download-section {
    padding: var(--section-padding);
    background: var(--tertiary-bg);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.system-requirements {
    margin-bottom: 32px;
}

.system-requirements h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.system-requirements ul {
    color: var(--text-secondary);
    padding-left: 20px;
}

.system-requirements li {
    margin-bottom: 6px;
}

.version-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.version-label {
    color: var(--text-secondary);
}

.version-number {
    padding: 4px 12px;
    background: rgba(179, 71, 255, 0.1);
    border: 1px solid var(--neon-purple);
    border-radius: 12px;
    color: var(--neon-purple);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
}

.download-actions {
    text-align: center;
}

.download-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--neon-purple);
    font-weight: 500;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.development-progress {
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: progressGrow 3s ease-out;
}

@keyframes progressGrow {
    0% { width: 0; }
}

.progress-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-family: var(--font-mono);
}

/* Footer */
.main-footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.footer-logo-text {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.link-group h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 8px;
}

.link-group a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
}

.link-group a:hover {
    color: var(--neon-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.tech-badges {
    display: flex;
    gap: 8px;
}

.tech-badge {
    padding: 4px 8px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--neon-blue);
    font-family: var(--font-mono);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .architecture-comparison {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .download-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
}

/* Animations */
@keyframes signalPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

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

@keyframes streamFlow {
    0% { opacity: 0.3; transform: scaleX(0.5); }
    50% { opacity: 1; transform: scaleX(1); }
    100% { opacity: 0.3; transform: scaleX(0.5); }
}

@keyframes centralPulse {
    0%, 100% { r: 20; }
    50% { r: 25; }
}

@keyframes clientPulse {
    0%, 100% { r: 12; opacity: 0.8; }
    50% { r: 15; opacity: 1; }
}

@keyframes connectionFlow {
    0% { stroke-dasharray: 0, 100; }
    50% { stroke-dasharray: 50, 50; }
    100% { stroke-dasharray: 100, 0; }
}

@keyframes barFill {
    0% { width: 0; }
    100% { width: var(--target-width, 100%); }
}

@keyframes terminalType {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

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

/* Security Features */
.security-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

.security-item i {
    color: var(--neon-blue);
    width: 16px;
}

/* Enhanced Hover Effects */
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: var(--neon-blue);
}

.status-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 15px 30px rgba(0, 255, 136, 0.2);
}

.status-indicator.secure {
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

