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

:root {
    --secondary-color: #00d4ff;
    --primary-bg: #2a2a2a;
}

body {
    font-family: 'Alumni Sans Pinstripe', sans-serif;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #0d0d0d 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('3408105.jpg') no-repeat center center/cover;
    opacity: 0.3;
    z-index: -2;
}

.container {
    text-align: center;
    max-width: 1200px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.main-text {
    font-size: 4rem;
    font-weight: 400;
    color: white;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
    z-index: 2;
}

.animated-word {
    color: #00d4ff;
    font-weight: 400;
    text-align: left;
    position: relative;
}

.word {
    position: absolute;
    opacity: 0;
    transform: translateY(30px);
    text-align: left;
}

.word.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer styles */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(33, 33, 33, 0.8);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#codelabs {
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
}

.languages-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 3rem auto;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.language-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.language-icon:hover {
    transform: translateY(-10px);
}

.icon {
    width: 80px;
    height: 80px;
    border-radius: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    background: #a8a8a8;
    color: white;
    opacity: 0.5;
}

.language-icon p {
    color: white;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.contact-link {
    width: 120px;
    height: 45px;
    padding: 5px;
    color: rgb(189, 189, 189);
    font-size: 1.8rem;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.contact-link:hover {
    transform: translateY(-5px);
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.3;
    will-change: transform, opacity;
}

/* Remove default blue color from hyperlinks */
a {
    color: inherit;
    text-decoration: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-text {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .animated-word {
        min-width: 200px;
        font-size: 2.5rem;
    }

    .languages-container {
        gap: 2rem;
    }

    .icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .main-text {
        font-size: 1.8rem;
    }

    .animated-word {
        min-width: 150px;
        font-size: 1.8rem;
    }

    .languages-container {
        flex-direction: column;
        gap: 2rem;
    }

    .icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}