/* 88v VPN - Detroit: Become Human Inspired (Forest Green Edition) */

:root {
    --white: #ffffff;
    --off-white: #f5f7f5;
    --light-gray: #dce3dc;
    --medium-gray: #8a9a8d;
    --dark-gray: #1a261c;
    --black: #0a0f0b;
    
    /* Forest Green spectrum */
    --green-primary: #3CB371;
    --green-bright: #50C878;
    --green-secondary: #2E8B57;
    --green-dark: #1B4D3E;
    --green-forest: #228B22;
    --green-glow: rgba(60, 179, 113, 0.4);
    --green-subtle: rgba(60, 179, 113, 0.1);
    --green-deep: #0D3320;
    
    /* Danger/warning */
    --red: #ff4466;
    --yellow: #d4a530;
    
    /* Typography */
    --font-display: 'Rajdhani', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--dark-gray);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.3; }

.mono { font-family: var(--font-mono); }
.accent { color: var(--green-bright); }
.accent-dark { color: var(--green-secondary); }

/* ===== LAYOUT ===== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }
}

/* ===== NAVIGATION ===== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--light-gray);
    height: 72px;
    display: flex;
    align-items: center;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.nav-logo-mark {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: 0.05em;
}

.nav-logo-mark span {
    color: var(--green-primary);
}

.nav-badge {
    background: var(--green-subtle);
    border: 1px solid var(--green-secondary);
    color: var(--green-dark);
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-primary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--green-secondary);
}

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

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* ===== BUTTONS ===== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-secondary) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px var(--green-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--green-bright) 0%, var(--green-primary) 100%);
    box-shadow: 0 6px 30px var(--green-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-gray);
    border: 2px solid var(--dark-gray);
}

.btn-secondary:hover {
    border-color: var(--green-primary);
    color: var(--green-primary);
}

.btn-ghost {
    background: transparent;
    color: var(--dark-gray);
    padding: 10px 16px;
}

.btn-ghost:hover {
    color: var(--green-primary);
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ===== HERO ===== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    position: relative;
    background: var(--black);
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(60, 179, 113, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(46, 139, 87, 0.1) 0%, transparent 40%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--green-bright);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--green-primary);
}

.hero h1 {
    margin-bottom: 24px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.hero .btn-secondary {
    border-color: var(--medium-gray);
    color: var(--white);
}

.hero .btn-secondary:hover {
    border-color: var(--green-bright);
    color: var(--green-bright);
}

.hero-stats {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(60, 179, 113, 0.3);
    padding: 32px;
    margin-bottom: 16px;
    min-width: 280px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.stat-box:hover {
    border-color: var(--green-primary);
    box-shadow: 0 8px 32px var(--green-glow);
    background: rgba(60, 179, 113, 0.05);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--medium-gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-value span {
    color: var(--green-bright);
}

.stat-note {
    font-size: 13px;
    color: var(--medium-gray);
    margin-top: 8px;
}

/* ===== FEATURES ===== */

.features {
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 16px;
    color: var(--black);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--medium-gray);
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    padding: 40px;
    transition: all 0.3s;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--green-primary), var(--green-dark));
    transition: height 0.3s;
}

.feature-card:hover {
    border-color: var(--green-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(60, 179, 113, 0.1);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--green-subtle);
    border: 1px solid var(--green-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--green-secondary);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--black);
}

.feature-card p {
    color: var(--medium-gray);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== PRICING ===== */

.pricing {
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(60, 179, 113, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(46, 139, 87, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.pricing .section-header h2 {
    color: var(--white);
}

.pricing .section-header p {
    color: var(--medium-gray);
}

.price-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 48px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.price-card:hover {
    border-color: var(--green-primary);
    background: rgba(60, 179, 113, 0.05);
}

.price-card.featured {
    border-color: var(--green-primary);
    position: relative;
    transform: scale(1.05);
    background: rgba(60, 179, 113, 0.08);
}

.price-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--green-primary), var(--green-secondary));
    color: var(--white);
    padding: 4px 16px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.price-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    color: var(--green-bright);
    line-height: 1;
    margin-bottom: 4px;
}

.price-amount sup {
    font-size: 24px;
    vertical-align: super;
}

.price-period {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 32px;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.price-features li::before {
    content: '✓';
    color: var(--green-bright);
    font-weight: bold;
}

/* ===== SECURITY ===== */

.security {
    background: var(--white);
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.security-visual {
    background: linear-gradient(135deg, var(--black) 0%, var(--green-deep) 100%);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.security-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 49.5%, var(--green-primary) 49.5%, var(--green-primary) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, var(--green-primary) 49.5%, var(--green-primary) 50.5%, transparent 50.5%);
    background-size: 40px 40px;
    opacity: 0.08;
}

.security-layers {
    position: relative;
    z-index: 10;
}

.security-layer {
    background: rgba(60, 179, 113, 0.1);
    border: 1px solid var(--green-secondary);
    padding: 16px 24px;
    margin-bottom: 12px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--green-bright);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.security-layer:hover {
    background: rgba(60, 179, 113, 0.2);
    border-color: var(--green-bright);
}

.security-layer .status {
    width: 8px;
    height: 8px;
    background: var(--green-bright);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--green-glow); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}

.security-content h2 {
    margin-bottom: 24px;
    color: var(--black);
}

.security-content p {
    color: var(--medium-gray);
    margin-bottom: 24px;
    line-height: 1.8;
}

.security-list {
    list-style: none;
}

.security-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
}

.security-list li::before {
    content: '◆';
    color: var(--green-primary);
    font-size: 10px;
}

/* ===== SERVERS ===== */

.servers {
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
}

.server-map {
    background: linear-gradient(135deg, var(--black) 0%, var(--green-deep) 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.server-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--green-primary) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, var(--green-bright) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, var(--green-secondary) 2px, transparent 2px),
        radial-gradient(circle at 30% 80%, var(--green-primary) 1px, transparent 1px),
        radial-gradient(circle at 70% 20%, var(--green-bright) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.4;
    animation: drift 20s linear infinite;
}

@keyframes drift {
    from { transform: translate(0, 0); }
    to { transform: translate(-100px, -100px); }
}

.server-count {
    position: relative;
    z-index: 10;
    text-align: center;
}

.server-count .number {
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 700;
    color: var(--green-bright);
    line-height: 1;
    text-shadow: 0 0 60px var(--green-glow);
}

.server-count .label {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--medium-gray);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.server-regions {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.region {
    text-align: center;
}

.region-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.region-count {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--green-secondary);
}

/* ===== CTA ===== */

.cta {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--green-primary) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0.15;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta p {
    color: var(--medium-gray);
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta .btn-primary {
    position: relative;
    z-index: 1;
}

/* ===== FOOTER ===== */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--medium-gray);
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--green-bright);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--green-bright);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--medium-gray);
}

/* ===== FORMS ===== */

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

.form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--medium-gray);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--dark-gray);
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 4px var(--green-glow);
}

.form-input::placeholder {
    color: var(--medium-gray);
}

/* ===== AUTH PAGES ===== */

.auth-page {
    min-height: 100vh;
    display: flex;
}

.auth-visual {
    flex: 1;
    background: linear-gradient(135deg, var(--black) 0%, var(--green-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(60, 179, 113, 0.03) 50px,
            rgba(60, 179, 113, 0.03) 51px
        );
}

.auth-visual-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.auth-visual h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 16px;
}

.auth-visual p {
    color: var(--medium-gray);
    font-size: 1.125rem;
}

.auth-form-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-form {
    width: 100%;
    max-width: 400px;
}

.auth-form h1 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--black);
}

.auth-form .subtitle {
    color: var(--medium-gray);
    margin-bottom: 32px;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--medium-gray);
    font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--light-gray);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--medium-gray);
}

.auth-footer a {
    color: var(--green-secondary);
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ===== DASHBOARD ===== */

.dashboard {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background: var(--black);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.sidebar-logo {
    margin-bottom: 48px;
}

.sidebar-nav {
    flex: 1;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    margin-bottom: 4px;
}

.sidebar-nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-nav a.active {
    color: var(--green-bright);
    background: rgba(60, 179, 113, 0.15);
    border-left: 3px solid var(--green-primary);
}

.sidebar-nav a svg {
    width: 20px;
    height: 20px;
}

.sidebar-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--white);
}

.user-name {
    font-size: 14px;
    font-weight: 500;
}

.user-email {
    font-size: 12px;
    color: var(--medium-gray);
}

.main-content {
    flex: 1;
    padding: 32px;
    background: var(--off-white);
}

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

.dashboard-header h1 {
    font-size: 1.75rem;
    color: var(--black);
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid var(--light-gray);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
}

.status-indicator.connected {
    background: var(--green-bright);
    animation: pulse 2s infinite;
}

.status-indicator.disconnected {
    background: var(--red);
}

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

.card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    padding: 24px;
}

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

.card-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dark-gray);
}

.server-list {
    list-style: none;
}

.server-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border: 1px solid var(--light-gray);
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.server-item:hover {
    border-color: var(--green-primary);
    background: var(--green-subtle);
}

.server-item.active {
    border-color: var(--green-primary);
    background: var(--green-subtle);
}

.server-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.server-flag {
    font-size: 24px;
}

.server-name {
    font-weight: 500;
}

.server-location {
    font-size: 13px;
    color: var(--medium-gray);
}

.server-ping {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--green-secondary);
}

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

.stat-item {
    padding: 20px;
    background: var(--off-white);
    text-align: center;
}

.stat-item .value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
}

.stat-item .label {
    font-size: 12px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== ANIMATIONS ===== */

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

.animate-in {
    animation: fadeIn 0.6s ease forwards;
}

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

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
    .hero-stats { display: none; }
    .security-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .auth-visual { display: none; }
    .dashboard { flex-direction: column; }
    .sidebar { width: 100%; }
    .dashboard-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
