* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FAF9F7;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2D2D2A;
}

.container {
    text-align: center;
    padding: 2rem;
}

.name {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: #6B6B6B;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    margin-bottom: 2.5rem;
}

.title a {
    color: #6B6B6B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.title a:hover {
    color: #D97757;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.social-links a {
    color: #8B8B8B;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.social-links a:hover {
    color: #D97757;
}

.social-links i {
    font-size: 24px;
    line-height: 1;
}

/* GPG ссылка */
.gpg-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 400;
    color: #8B8B8B;
    text-decoration: none;
    border: 1px solid #E0E0E0;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.gpg-link:hover {
    color: #D97757;
    border-color: #D97757;
}

.gpg-link i {
    font-size: 0.9rem;
}

/* Кастомный курсор */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #D97757;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
    z-index: 9999;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background-color: #D97757;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.cursor.hover {
    width: 40px;
    height: 40px;
    border-color: rgba(217, 119, 87, 0.5);
}

@media (pointer: coarse) {
    .cursor,
    .cursor-dot {
        display: none;
    }
}

/* Котик */
.cat {
    position: fixed;
    bottom: -80px;
    right: 30px;
    font-size: 48px;
    transition: bottom 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 100;
    cursor: pointer;
}

.cat.visible {
    bottom: 20px;
}

.cat-body {
    transform: scaleX(-1);
}

.cat-paw {
    position: absolute;
    top: -20px;
    left: 5px;
    font-size: 24px;
    animation: wave 0.6s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes wave {
    0%, 100% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(20deg);
    }
}