:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --primary-color: #39ff14; /* Neon Green */
    --secondary-color: #bf00ff; /* Electric Purple */
    --font-main: 'Courier New', Courier, monospace; /* Tech feel */
    --font-heading: 'Arial Black', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: scrollGrid 20s linear infinite;
}

@keyframes scrollGrid {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
}

.orb-1 {
    top: 10%;
    left: 20%;
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    animation: pulse 10s infinite alternate;
}

.orb-2 {
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    animation: pulse 8s infinite alternate-reverse;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.5; }
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    text-align: center;
    padding: 4rem 0 2rem;
}

h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    text-shadow: 2px 2px 0px var(--secondary-color), -2px -2px 0px var(--primary-color);
    margin-bottom: 0.5rem;
    animation: glitch 3s infinite;
}

.tagline {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Bio Section */
.bio {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(5px);
    border-radius: 4px;
    border-left: 3px solid var(--secondary-color);
}

.bio p {
    margin-bottom: 1rem;
}

/* Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(191, 0, 255, 0.5);
}

/* Smart Link Specifics */
.smart-link-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1rem;
}

.smart-link-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--primary-color);
    padding: 3rem 2rem;
    text-align: center;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.1);
}

.smart-link-card h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #fff;
    text-shadow: 2px 2px 0px var(--secondary-color), -2px -2px 0px var(--primary-color);
}

.smart-link-card .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.8rem;
    color: #666;
    padding-bottom: 2rem;
}

/* Glitch Animation */
@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .container {
        padding: 1rem;
    }
}
