:root {
    --primary-color: #050a15;
    --secondary-color: #0b1325;
    --accent-color: #00e5ff;
    --accent-hover: #00b4d8;
    --text-primary: #f8f9fa;
    --text-secondary: #a3b1c6;
    --glass-bg: rgba(11, 19, 37, 0.5);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow: hidden; /* Prevent scrolling for a clean single page */
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

canvas#network-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--primary-color) 120%);
    z-index: 1;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 2rem;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 229, 255, 0.05);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,229,255,0.05) 0%, transparent 60%);
    z-index: -1;
}

.glass-panel:hover {
    box-shadow: 0 15px 50px rgba(0, 229, 255, 0.15), 0 0 60px rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.3);
}

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

.badge {
    display: inline-block;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 229, 255, 0.3);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 229, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #a3b1c6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.5px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.tagline {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto 3rem auto;
    line-height: 1.8;
}

.contact-section {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 3rem;
}

.contact-section h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

a.contact-card:hover {
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.1);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-card span {
    font-size: 1rem;
    font-weight: 500;
}

.footer-mini {
    margin-top: 3rem;
    padding-top: 1.5rem;
    color: rgba(255,255,255,0.3);
    font-size: 0.875rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 1.25rem;
    }
    .glass-panel {
        padding: 3rem 1.5rem;
    }
    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }
    .contact-card {
        width: 100%;
        justify-content: center;
    }
    body {
        overflow-y: auto; /* Allow scroll on small devices if needed */
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }
}
