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

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shineEffect {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0f0f0f;
    color: #ffffff;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header {
    width: 100%;
    text-align: center;
}

.name-container {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.name {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    color: #B0B0B0;
    background: linear-gradient(
        90deg,
        #B0B0B0 0%,
        #B0B0B0 45%,
        #FFFFFF 50%,
        #B0B0B0 55%,
        #B0B0B0 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: shineEffect 5s linear infinite;
    font-weight: 700;
    letter-spacing: 1px;
}

.title {
    font-size: 2rem;
    color: #a8a8a8;
    margin-bottom: 2rem;
}

.animated-text {
    font-size: 1.5rem;
    opacity: 0;
    animation: slideIn 1s ease-in forwards 0.5s;
    margin-bottom: 2rem;
}

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

.social-icon {
    color: #ffffff;
    opacity: 0.7;
    transition: all 0.3s ease;
    transform: scale(1);
}

.social-icon:hover {
    opacity: 1;
    transform: scale(1.2);
    color: #4ecdc4;
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0f0f0f 100%);
    opacity: 0.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .name {
        font-size: 3rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .animated-text {
        font-size: 1.2rem;
    }
} 