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

body {
    font-family: 'Space Mono', monospace;
    background: #0a0e27;
    color: #e0f7ff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Cyberpunk Glow Effects */
.glow-text {
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5), 0 0 20px rgba(0, 217, 255, 0.3);
}

.glow-text-strong {
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.8), 0 0 40px rgba(0, 217, 255, 0.5), 0 0 60px rgba(0, 217, 255, 0.3);
}

.glow-box {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3), inset 0 0 20px rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.5);
}

.neon-border {
    border: 2px solid rgba(0, 217, 255, 0.6);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.4), inset 0 0 10px rgba(0, 217, 255, 0.1);
}

.cyber-grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

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

.content {
    position: relative;
    z-index: 10;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(10, 14, 39, 0.3);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

nav .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

nav .logo-icon {
    width: 32px;
    height: 32px;
    border: 2px solid #00d9ff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #00d9ff;
}

nav .logo h1 {
    font-size: 1.5rem;
    color: #00d9ff;
}

nav .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: #e0f7ff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: #00d9ff;
}

/* Buttons */
button, .btn-link {
    padding: 0.75rem 2rem;
    font-weight: 700;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #00d9ff;
    color: #0a0e27;
    gap: 0.5rem;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    transform: scale(1.05);
}

.btn-secondary {
    border: 2px solid #00d9ff;
    color: #00d9ff;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
}

/* Sections */
section {
    padding: 5rem 2rem;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

section h3 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #00d9ff;
}

section > .container > p {
    text-align: center;
    color: rgba(224, 247, 255, 0.6);
    margin-bottom: 4rem;
    font-size: 1.125rem;
}

/* Footer */
footer {
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    background: rgba(10, 14, 39, 0.5);
    backdrop-filter: blur(10px);
    padding: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto 2rem;
}

.footer-section h5 {
    color: #00d9ff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(224, 247, 255, 0.6);
    font-size: 0.875rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(224, 247, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #00d9ff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    padding-top: 2rem;
    color: rgba(224, 247, 255, 0.6);
    font-size: 0.875rem;
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {
    nav .container {
        padding: 0.75rem 1rem;
    }

    nav .nav-links {
        gap: 0.75rem;
        font-size: 0.7rem;
    }

    nav .logo h1 {
        font-size: 1.1rem;
    }

    section {
        padding: 3rem 1rem;
    }

    section h3 {
        font-size: 1.8rem;
    }

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