* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ffffff;
    --link-bg: #1a1a1a;
    --link-hover-bg: #2a2a2a;
    --border-color: #333333;
    --shadow-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 40px 20px;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.profile-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.profile-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--shadow-color);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.profile-bio {
    font-size: 16px;
    color: #cccccc;
    font-weight: 300;
}

/* Links Container */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.link-item {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    background: var(--link-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
}

.link-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover/Touch Effects */
.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-item:hover::before,
.link-item:active::before {
    left: 100%;
}

.link-item:hover {
    background: var(--link-hover-bg);
    border-color: var(--accent-color);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 5px 20px var(--shadow-color);
}

.link-item:active {
    transform: translateX(5px) scale(0.98);
}

.link-icon {
    font-size: 24px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.link-item:hover .link-icon {
    transform: scale(1.2) rotate(5deg);
}

.link-text {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.link-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.link-item:hover .link-arrow {
    transform: translateX(5px);
    opacity: 1;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    color: #888888;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.footer.visible {
    opacity: 1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.slide-up {
    animation: slideUp 0.6s ease forwards;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .profile-name {
        font-size: 24px;
    }

    .link-item {
        padding: 18px 20px;
    }

    .link-text {
        font-size: 16px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

