* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000000;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.02) 0%, rgba(0,0,0,0.96) 100%);
    pointer-events: none;
    z-index: 1;
}

.snow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.snow-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.snow-flake {
    position: fixed;
    top: -10px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
    z-index: 2;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 60px;
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    width: 100%;
    flex-wrap: wrap;
}

.left-section {
    flex: 1;
}

.badge {
    font-family: monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.typing-container {
    margin-bottom: 25px;
}

.typing-text {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    font-family: monospace;
}

.cursor {
    display: inline-block;
    width: 2px;
    background-color: white;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.description {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.social-link {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 10px 20px;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-link:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    color: white;
}

.tiktok-icon {
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' fill='white'%3E%3Cpath d='M448 209.9a210.1 210.1 0 0 1 -122.8-39.3V349.4A162.6 162.6 0 1 1 181 205.8c1.6 0 3.2.1 4.8.2v79.5c-1.6-.2-3.2-.2-4.8-.2a83.1 83.1 0 1 0 83.1 83.1V0h79.5c0 47.3 38.1 85.4 85.4 85.4v79.5z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.right-section {
    flex: 1;
    display: flex;
    justify-content: center;
}

.profile-frame {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.1);
    overflow: hidden;
    box-shadow: 0 30px 50px rgba(0,0,0,0.3);
}

.profile-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: left;
}

.stat-number {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .container {
        padding: 30px 20px;
    }
    .content-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }
    h1 {
        font-size: 2.5rem;
    }
    .description {
        max-width: 100%;
    }
    .social-links {
        justify-content: center;
    }
    .stats {
        justify-content: center;
    }
    .stats .stat {
        text-align: center;
    }
    .profile-frame {
        width: 250px;
        height: 250px;
    }
}