* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
}

#snow {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.content {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 6rem;
    font-weight: 800;
    color: #ff0000;
    margin-bottom: 1rem;
}

.letter {
    display: inline-block;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.animated-title {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.letter {
    opacity: 0;
    transform: translateY(50px);
    animation: appearDisappear 4s infinite;
}

.letter:nth-child(1) { /* O */
    animation-delay: 0s;
}

.letter:nth-child(2) { /* U */
    animation-delay: 0.2s;
}

.letter:nth-child(3) { /* M */
    animation-delay: 0.4s;
}

@keyframes appearDisappear {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    10%, 45% {
        opacity: 1;
        transform: translateY(0);
        text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    }
    55%, 100% {
        opacity: 0;
        transform: translateY(-50px);
    }
}

.tagline {
    color: #666;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out;
}

.about {
    margin-bottom: 4rem;
    color: #999;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.highlight {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.projects {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.project-card {
    background: #111;
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 0, 0, 0.1),
        transparent
    );
    transition: 0.5s;
}

.project-card:hover::before {
    left: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(255, 0, 0, 0.3);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.1);
}

.project-number {
    color: #ff0000;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.project-card h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.project-card:hover h2 {
    color: #ff0000;
}

.project-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.project-link {
    color: #ff0000;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.project-link:hover {
    color: #ff3333;
    transform: translateX(5px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .animated-title {
        gap: 2px;
    }
    .letter {
        font-size: 4rem;
    }
}

.socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.social-icon {
    color: #666;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #ff0000;
    transform: translateY(-3px);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
} 