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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(180deg, #1a2332 0%, #0f1620 100%);
    min-height: 100vh;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 20px;
    position: relative;
}

.icon-button {
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.icon-button:hover {
    opacity: 0.7;
}

.icon-button svg {
    width: 24px;
    height: 24px;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    padding: 0;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-name {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icon {
    color: #ffffff;
    opacity: 0.9;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    opacity: 1;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.link-button {
    background: #ffffff;
    color: #1a2332;
    text-decoration: none;
    border-radius: 50px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.link-button:active {
    transform: translateY(0);
}

.link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #1a2332;
}

.link-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.5px;
}

.link-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #1a2332;
    opacity: 0.6;
}

/* CTA Section */
.cta-section {
    margin-bottom: 30px;
}

.cta-button {
    background: #ffffff;
    color: #1a2332;
    text-decoration: none;
    border-radius: 50px;
    padding: 16px 20px;
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0;
    font-size: 13px;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 1;
}

.footer-separator {
    color: #ffffff;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        max-width: 100%;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .profile-name {
        font-size: 22px;
    }

    .link-button {
        padding: 14px 18px;
    }

    .link-text {
        font-size: 15px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-section {
    animation: fadeIn 0.6s ease-out;
}

.links-section {
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.cta-section {
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.footer {
    animation: fadeIn 0.6s ease-out 0.6s both;
}

