:root {
    --text: #e0e6ff;
    --accent1: #00f0ff;
    --accent2: #ff00e6;
    --bg1: #050a1a;
    --bg2: #0b132b;
    --muted: #9aa0b2;
    --radius: 18px;
    --maxw: 880px;
    font-family: 'Orbitron', 'Inter', sans-serif;
}

body {
    margin: 0;
    background: radial-gradient(circle at center, #030812 0%, #0a1323 70%, #050910 100%);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    padding-bottom: 90px;
}

header {
    text-align: center;
    padding: 30px 20px 20px;
}

header img.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--accent1);
    box-shadow: 0 0 25px var(--accent1), 0 0 60px rgba(255, 0, 230, 0.4);
    animation: pulse 4s ease-in-out infinite;
    object-fit: cover;
    margin-bottom: 10px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 15px var(--accent1), 0 0 30px rgba(0, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 30px var(--accent2), 0 0 80px rgba(255, 0, 230, 0.5);
    }

    100% {
        box-shadow: 0 0 15px var(--accent1), 0 0 30px rgba(0, 255, 255, 0.3);
    }
}

header h1 {
    font-size: 2.2rem;
    margin: 0;
    color: var(--accent1);
    text-shadow: 0 0 18px rgba(0, 255, 255, 0.6);
    letter-spacing: 1.5px;
}

header p {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 6px;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 10px 20px;
    position: relative;
    z-index: 2;
}

section {
    background: rgba(15, 25, 45, 0.65);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 255, 255, 0.15);
    box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.1), 0 0 30px rgba(255, 0, 230, 0.15);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

section:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(255, 0, 230, 0.3);
}

h2 {
    color: var(--accent2);
    text-shadow: 0 0 15px var(--accent2);
    font-size: 1.4rem;
    margin-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

p,
li {
    color: var(--muted);
    font-size: 0.95rem;
}

.highlight {
    color: var(--accent1);
    font-weight: bold;
}

.fixed-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.fixed-cta a {
    background: linear-gradient(135deg, #00f0ff, #ff00e6);
    color: #fff;
    text-decoration: none;
    padding: 16px 10px;
    border-radius: 999px;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.6px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 25px rgba(255, 0, 230, 0.5);
    transition: all 0.3s ease;
    animation: glowbutton 5s ease-in-out infinite alternate;
    white-space: nowrap;
}

@keyframes glowbutton {
    0% {
        box-shadow: 0 0 25px var(--accent1), 0 0 50px var(--accent2);
    }

    50% {
        box-shadow: 0 0 50px var(--accent2), 0 0 80px var(--accent1);
    }

    100% {
        box-shadow: 0 0 25px var(--accent1), 0 0 50px var(--accent2);
    }
}

.fixed-cta a:hover {
    transform: scale(1.07);
    filter: brightness(1.3);
}

footer {
    text-align: center;
    padding: 25px 10px;
    color: var(--muted);
    font-size: 0.9rem;
    background: rgba(5, 10, 25, 0.9);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(255, 0, 230, 0.1);
}

canvas#cyberGrid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}