:root {
    /* Premium Color Palette */
    --bg-dark: #030508;
    --bg-light: #0d1218;
    --card-bg: rgba(13, 18, 24, 0.4);
    
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(0, 240, 255, 0.4);
    
    --text-main: #f1f5f9;
    --text-muted: #8b9eb0;
    
    --accent-cyan: #00f0ff;
    --accent-cyan-rgb: 0, 240, 255;
    --accent-purple: #7a22ff;
    --accent-purple-rgb: 122, 34, 255;
    
    /* Terminal Colors */
    --term-bg: rgba(5, 8, 12, 0.8);
    --term-header: rgba(15, 20, 26, 0.9);
    --term-control-close: #ff5f56;
    --term-control-min: #ffbd2e;
    --term-control-max: #27c93f;
    
    /* Status Colors */
    --status-active: #10b981;
    --status-deploy: #f59e0b;
    --status-monitor: #00f0ff;
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing & Layout */
    --max-width: 1150px;
    --nav-height: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

/* Background Effects */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 10%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 80%);
    z-index: -2;
    pointer-events: none;
}

.glow-orb {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, var(--accent-cyan), transparent 70%);
}

.glow-orb.orb-2 {
    bottom: -100px;
    right: -100px;
    height: 400px;
    background: rgba(var(--accent-purple-rgb), 0.2);
    animation: orbFloat 25s infinite reverse;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* CRT Scanline & Monitor Effect */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 0, 0, 0.4) 50%
    );
    background-size: 100% 4px;
    z-index: 10;
    pointer-events: none;
    opacity: 0.12;
}

@keyframes scanline-sweep {
    0% { transform: translateY(-100vh); }
    100% { transform: translateY(100vh); }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 15px;
    background: linear-gradient(to bottom, rgba(0, 240, 255, 0), rgba(0, 240, 255, 0.2) 50%, rgba(0, 240, 255, 0));
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
    z-index: 9;
    pointer-events: none;
    animation: scanline-sweep 7s linear infinite;
    opacity: 0.6;
}

/* Decrypt Hover Core Highlight */
.decrypt-active {
    color: var(--accent-cyan) !important;
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.9), 0 0 24px rgba(0, 240, 255, 0.5) !important;
    transition: none !important;
}

/* Base UI Details */
.glass {
    background: rgba(5, 8, 12, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
}

.relative {
    position: relative;
    z-index: 10;
}

.highlight-gradient {
    background: linear-gradient(90deg, var(--accent-cyan) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

::selection {
    background-color: var(--accent-cyan);
    color: var(--bg-dark);
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-cyan);
}

.highlight {
    color: var(--accent-cyan);
}


/* Glassmorphism utility */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background-color: rgba(var(--accent-cyan-rgb), 0.05);
    color: var(--accent-cyan);
    border: 1px solid rgba(var(--accent-cyan-rgb), 0.3);
}

.btn-glow:hover {
    background-color: rgba(var(--accent-cyan-rgb), 0.15);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(var(--accent-cyan-rgb), 0.3), 
                inset 0 0 10px rgba(var(--accent-cyan-rgb), 0.1);
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
}

.secondary-btn:hover {
    border-color: rgba(255,255,255,0.3);
    background-color: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    z-index: 100;
    border-top: none;
    border-left: none;
    border-right: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-main);
    letter-spacing: 1px;
}

.logo-icon {
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 5px rgba(var(--accent-cyan-rgb), 0.5));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-prefix {
    color: var(--accent-cyan);
    margin-right: 0.35rem;
}

/* Status Bar */
.status-bar-container {
    margin-top: var(--nav-height);
    background-color: rgba(5, 8, 12, 0.6);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.6rem 0;
    overflow: hidden;
    position: relative;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    backdrop-filter: blur(8px);
}

.status-bar {
    display: flex;
    white-space: nowrap;
}

.status-track {
    display: flex;
    align-items: center;
    animation: scrollStatus 30s linear infinite;
    padding-left: 2rem;
}

.status-track:hover {
    animation-play-state: paused;
}

.status-item {
    display: flex;
    align-items: center;
}

@keyframes scrollStatus {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.status-indicator {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
}

.ping-active { background-color: var(--status-active); box-shadow: 0 0 8px var(--status-active); }
.ping-deploy { background-color: var(--status-deploy); box-shadow: 0 0 8px var(--status-deploy); }
.ping-monitor { background-color: var(--status-monitor); box-shadow: 0 0 8px var(--status-monitor); }

.status-tag {
    font-weight: 700;
    margin-right: 0.6rem;
    letter-spacing: 0.5px;
}

.status-tag.active { color: var(--status-active); }
.status-tag.deploying { color: var(--status-deploy); }
.status-tag.monitoring { color: var(--status-monitor); }

.separator {
    color: rgba(255,255,255,0.1);
    margin: 0 2rem;
}

/* Main Layout */
.main-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 6%;
}

/* Reveal Animations */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - var(--nav-height) - 45px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 5rem 0;
}

.hero-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pre-title {
    font-family: var(--font-mono);
    color: var(--accent-cyan);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.hero-title, .hero-subtitle {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-title {
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.hero-subtitle {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.hero-description {
    color: var(--text-muted);
    max-width: 520px;
    font-size: 1.15rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
}

/* Terminal Bio */
.terminal-container {
    width: 100%;
    position: relative;
    perspective: 1200px;
}

.terminal-window {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05);
    background: var(--term-bg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    transform: rotateX(2deg) rotateY(-5deg);
}

.terminal-window:hover {
    transform: rotateX(0deg) rotateY(0deg);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.9), 0 0 20px rgba(var(--accent-cyan-rgb), 0.15);
    border-color: rgba(var(--accent-cyan-rgb), 0.3);
}

.terminal-header {
    background: var(--term-header);
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.btn-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-dot.close { background-color: var(--term-control-close); box-shadow: 0 0 10px rgba(255, 95, 86, 0.4); }
.btn-dot.minimize { background-color: var(--term-control-min); box-shadow: 0 0 10px rgba(255, 189, 46, 0.4); }
.btn-dot.maximize { background-color: var(--term-control-max); box-shadow: 0 0 10px rgba(39, 201, 63, 0.4); }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.terminal-actions {
    color: var(--text-muted);
    opacity: 0.5;
}

.terminal-body {
    padding: 1.75rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-main);
    min-height: 280px;
}

.terminal-line {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
}

.prompt {
    color: var(--status-active);
    margin-right: 0.75rem;
    user-select: none;
}

.terminal-output {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(255,255,255,0.05);
}

.json-key { color: #82aaff; }
.json-string { color: #c3e88d; }

.cursor {
    display: inline-block;
    width: 10px;
    height: 1.2em;
    background-color: var(--accent-cyan);
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-prefix {
    color: var(--accent-cyan);
    font-weight: 400;
}

.section-header .line {
    flex-grow: 1;
    height: 1px;
}

.line-gradient {
    background: linear-gradient(90deg, var(--border-subtle) 0%, transparent 100%);
}

/* Story Section */
.story-section {
    padding: 2rem 0 6rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.story-title {
    font-family: var(--font-mono);
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.story-title .highlight {
    color: var(--accent-cyan);
    margin-right: 0.5rem;
}

.story-content {
    position: relative;
    padding: 3rem 4rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-cyan);
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 2rem;
    background: var(--bg-dark);
    padding: 0 10px;
}

@media (max-width: 768px) {
    .story-content {
        padding: 2.5rem 2rem;
    }
}

/* Blog Section */
.blog-section {
    padding: 8rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    position: relative;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    height: 100%;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.01));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.card-glow-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-glow-wrap::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at var(--mouseX, center) var(--mouseY, center), rgba(var(--accent-cyan-rgb), 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.blog-card:hover::before {
    background: linear-gradient(135deg, rgba(var(--accent-cyan-rgb), 0.5), rgba(var(--accent-purple), 0.2));
}

.blog-card:hover .card-glow-wrap {
    opacity: 1;
}

.blog-card:hover .card-glow-wrap::after {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
}

.icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(var(--accent-cyan-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    border: 1px solid rgba(var(--accent-cyan-rgb), 0.2);
    transition: all 0.3s ease;
}

.blog-card:hover .icon-wrap {
    background: rgba(var(--accent-cyan-rgb), 0.2);
    box-shadow: 0 0 15px rgba(var(--accent-cyan-rgb), 0.4);
}

.card-header .date {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.card-title a {
    color: var(--text-main);
}

.blog-card:hover .card-title a {
    color: var(--accent-cyan);
}

.card-excerpt {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    line-height: 1.7;
}

.card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-cyan);
    background-color: rgba(var(--accent-cyan-rgb), 0.08);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    border: 1px solid rgba(var(--accent-cyan-rgb), 0.15);
}

.card-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.blog-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--accent-cyan);
}

/* Contact Section */
.contact-section {
    padding: 8rem 0 10rem;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.contact-title {
    font-family: var(--font-mono);
    color: var(--accent-cyan);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.contact-subtitle {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-main);
    letter-spacing: -1px;
}

.contact-text {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
    line-height: 1.8;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(var(--accent-cyan-rgb), 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(var(--accent-cyan-rgb), 0); }
    100% { box-shadow: 0 0 0 0 rgba(var(--accent-cyan-rgb), 0); }
}

/* Footer */
.footer {
    padding: 2rem 6%;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.footer-logo {
    color: var(--accent-cyan);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
}

.social-link:hover {
    color: var(--accent-cyan);
    transform: translateY(-5px);
    background: rgba(var(--accent-cyan-rgb), 0.1);
    border-color: rgba(var(--accent-cyan-rgb), 0.3);
    box-shadow: 0 5px 15px rgba(var(--accent-cyan-rgb), 0.2);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 5, 8, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--card-bg);
    width: 90%;
    max-width: 700px;
    border-radius: 12px;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border-hover);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8), 0 0 30px rgba(var(--accent-cyan-rgb), 0.1);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.modal-close-btn:hover {
    color: var(--accent-cyan);
    transform: rotate(90deg);
}

.modal-header {
    padding: 2.5rem 3rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.modal-icon {
    font-family: var(--font-mono);
    color: var(--accent-cyan);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

#modal-title {
    font-size: 2rem;
    color: var(--text-main);
    font-weight: 700;
}

.modal-body {
    padding: 2rem 3rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.modal-body ul {
    list-style: none;
    margin-bottom: 1rem;
}

.modal-body li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.modal-body li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-family: var(--font-mono);
}

.modal-footer {
    padding: 1.5rem 3rem 2.5rem;
    display: flex;
    justify-content: flex-end;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
        padding-top: 2rem;
    }
    
    .hero-text-container {
        align-items: center;
    }
    
    .hero-description {
        margin: 0 auto 3rem;
    }
    
    .nav-links {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 2rem;
    }
    .hero-cta {
        flex-direction: column;
    }
    .hero-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .terminal-window {
        transform: rotateX(0deg) rotateY(0deg);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Server Status Widget */
.server-status-widget {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: rgba(3, 5, 8, 0.85);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 12px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    z-index: 999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.server-status-widget:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 240, 255, 0.15);
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: #00ff66;
    border-radius: 50%;
    box-shadow: 0 0 12px #00ff66;
    animation: blink-live 2s infinite;
}

@keyframes blink-live {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    .server-status-widget {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        max-width: 90%;
        padding: 10px 15px;
        font-size: 0.75rem;
    }
    .server-status-widget:hover {
        transform: translateX(-50%) translateY(-2px);
    }
}
