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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
    background: linear-gradient(135deg, #cf763a 0%, #85461d 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 32px 16px;
    color: white;
}

.main-content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
    width: 100%;
    padding-top: 56px;
}

/* Profile Section */
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out;
}

.profile-image {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.profile-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.profile-bio {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
    max-width: 320px;
    line-height: 1.4;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 320px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.link-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.link-text {
    position: relative;
    z-index: 1;
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    position: absolute;
    left: 14px;
}

.link-button .link-text {
    width: 100%;
    text-align: center;
    padding-left: 8px;
}

/* Social Icons Section */
.social-section {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 0 16px;
    box-sizing: border-box;
    margin-top: 48px;
    width: 100%;
    max-width: 320px;
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icon.active:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-button {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.link-button:nth-child(1) {
    animation-delay: 0.1s;
}
.link-button:nth-child(2) {
    animation-delay: 0.2s;
}
.link-button:nth-child(3) {
    animation-delay: 0.3s;
}
.link-button:nth-child(4) {
    animation-delay: 0.4s;
}

.social-icon {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.social-icon:nth-child(1) {
    animation-delay: 0.5s;
}
.social-icon:nth-child(2) {
    animation-delay: 0.6s;
}
.social-icon:nth-child(3) {
    animation-delay: 0.7s;
}
.social-icon:nth-child(4) {
    animation-delay: 0.8s;
}
.social-icon:nth-child(5) {
    animation-delay: 0.9s;
}
.social-icon:nth-child(6) {
    animation-delay: 1s;
}

/* Responsive Design */
@media (max-width: 600px) {
    .main-content {
        justify-content: center;
        padding-top: 0;
    }

    .profile-section {
        margin-bottom: 24px;
    }

    .profile-image {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
    .profile-name {
        font-size: 22px;
    }
    .profile-bio {
        font-size: 14px;
        padding: 0 16px;
    }

    .links-section {
        width: 100%;
        max-width: 320px;
        gap: 12px;
    }
    .link-button {
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 12px;
        position: relative;
    }
    .link-text {
        font-size: 16px;
        letter-spacing: 0;
    }
    .icon {
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        left: 14px;
    }

    .social-section {
        gap: 12px;
        justify-content: center;
        width: 100%;
        max-width: 320px;
        padding: 0 16px;
        margin-top: 32px;
    }
    .social-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }
    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}
