:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --accent-color: #1D9AAA;
    --hover-color: #157885;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
}

.content {
    text-align: center;
}

.logo {
    width: 80px;
    height: auto;
    margin-bottom: 2rem;
}

.glitch {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0.05em 0 0 var(--accent-color),
                 -0.025em -0.05em 0 rgba(29,154,170,0.75),
                 0.025em 0.05em 0 rgba(29,154,170,0.75);
    animation: glitch 500ms infinite;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tech-stack span {
    background: rgba(29, 154, 170, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tech-stack span:hover {
    background: rgba(29, 154, 170, 0.2);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    color: var(--text-color);
    transition: all 0.3s ease;
}

.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.social-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 var(--accent-color),
                     -0.025em -0.05em 0 rgba(29,154,170,0.75),
                     0.025em 0.05em 0 rgba(29,154,170,0.75);
    }
    14% {
        text-shadow: 0.05em 0 0 var(--accent-color),
                     -0.025em -0.05em 0 rgba(29,154,170,0.75),
                     0.025em 0.05em 0 rgba(29,154,170,0.75);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 var(--accent-color),
                     0.025em 0.025em 0 rgba(29,154,170,0.75),
                     -0.05em -0.05em 0 rgba(29,154,170,0.75);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 var(--accent-color),
                     0.025em 0.025em 0 rgba(29,154,170,0.75),
                     -0.05em -0.05em 0 rgba(29,154,170,0.75);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 var(--accent-color),
                     0.05em 0 0 rgba(29,154,170,0.75),
                     0 -0.05em 0 rgba(29,154,170,0.75);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 var(--accent-color),
                     0.05em 0 0 rgba(29,154,170,0.75),
                     0 -0.05em 0 rgba(29,154,170,0.75);
    }
    100% {
        text-shadow: -0.025em 0 0 var(--accent-color),
                     -0.025em -0.025em 0 rgba(29,154,170,0.75),
                     -0.025em -0.05em 0 rgba(29,154,170,0.75);
    }
}

@media (max-width: 768px) {
    .glitch {
        font-size: 3rem;
    }
    
    .description {
        font-size: 1.2rem;
    }
    
    .tech-stack {
        gap: 0.5rem;
    }
    
    .tech-stack span {
        font-size: 0.8rem;
    }

    .logo {
        width: 60px;
    }
}
