:root {
    --primary-color: #00ff9d;
    --background-color: #0a0a0a;
    --text-color: #ffffff;
    --card-bg: #151515;
    --accent-color: #ff3366;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    padding: 1.5rem;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
}



/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.glitch {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0.05em 0 0 var(--accent-color),
                -0.025em -0.05em 0 var(--primary-color),
                0.025em 0.05em 0 #0ff;
    animation: glitch 500ms infinite;
}

.subtitle {
    font-size: 1.5rem;
    margin: 1rem 0 2rem;
    opacity: 0.8;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-button {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: var(--primary-color);
    color: var(--background-color);
}

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

.grid {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--primary-color) 1px, transparent 1px),
                      linear-gradient(90deg, var(--primary-color) 1px, transparent 1px);
    background-size: 50px 50px;
    background-color: transparent;
    opacity: 0.1;
    animation: gridMove 20s linear infinite;
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    background: var(--card-bg);
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    padding: 2rem;
    background: var(--card-bg);
    text-align: center;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 var(--accent-color),
                    -0.025em -0.05em 0 var(--primary-color),
                    0.025em 0.05em 0 #0ff;
    }
    14% {
        text-shadow: 0.05em 0 0 var(--accent-color),
                    -0.025em -0.05em 0 var(--primary-color),
                    0.025em 0.05em 0 #0ff;
    }
    15% {
        text-shadow: -0.05em -0.025em 0 var(--accent-color),
                    0.025em 0.025em 0 var(--primary-color),
                    -0.05em -0.05em 0 #0ff;
    }
    49% {
        text-shadow: -0.05em -0.025em 0 var(--accent-color),
                    0.025em 0.025em 0 var(--primary-color),
                    -0.05em -0.05em 0 #0ff;
    }
    50% {
        text-shadow: 0.025em 0.05em 0 var(--accent-color),
                    0.05em 0 0 var(--primary-color),
                    0 -0.05em 0 #0ff;
    }
    99% {
        text-shadow: 0.025em 0.05em 0 var(--accent-color),
                    0.05em 0 0 var(--primary-color),
                    0 -0.05em 0 #0ff;
    }
    100% {
        text-shadow: -0.025em 0 0 var(--accent-color),
                    -0.025em -0.025em 0 var(--primary-color),
                    -0.025em -0.05em 0 #0ff;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .glitch {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
}