body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
    cursor: none;
}

#cursor {
    width: 100px;
    height: 100px;
    background-color: #666;
    position: fixed;
    right: 50px;
    top: 50px;
    mix-blend-mode: difference;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    border-radius: 50%;
}

.name-overlay {
    position: fixed;
    left: 48px;
    bottom: 36px;
    color: #666;
    font-family: 'Amatic SC';
    font-weight: 700;
    font-size: 96px;
    mix-blend-mode: difference;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 1000ms cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.inspiration-link {
    position: fixed;
    top: 8px;
    right: 24px;
    color: #999;
    font-family: 'Amatic SC';
    font-size: 14px;
    max-width: 300px;
    text-align: right;
    line-height: 1.4;
    z-index: 1000;
    opacity: 0;
    animation: fadeIn 1000ms cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
    animation-delay: 500ms;
}

.inspiration-link a {
    color: #FFF;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.inspiration-link a:hover {
    color: #666;
    border-bottom-color: #666;
}

.social-icons {
    position: fixed;
    bottom: 64px;
    right: 36px;
    display: flex;
    gap: 16px;
    z-index: 1000;
    opacity: 0;
    animation: fadeIn 1000ms cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
    animation-delay: 750ms;
}

@media screen and (max-width: 768px) {
    .social-icons {
        bottom: 24px;
        right: 50%;
        transform: translateX(50%);
    }
}

.social-icon {
    text-decoration: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
} 