:root {
    --primary-color: #0070ff;
    --primary-gradient: linear-gradient(135deg, #0070ff 0%, #00d4ff 100%);
    --bg-color: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    --font-family: 'Outfit', sans-serif;
    --glass-blur: 15px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.75)), url('assets/images/background.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-family);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 480px;
    padding: 140px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

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

.profile-img-container {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    background: #111;
}

.profile-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-gradient);
    filter: blur(15px);
    opacity: 0.6;
    z-index: 1;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.user-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.user-bio {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.5;
    max-width: 300px;
    margin: 0 auto;
}

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

.link-card {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-main);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    transition: all 0.3s ease;
    width: 100%;
}

.link-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.link-card:active {
    transform: scale(0.98);
}

.link-card.primary {
    background: var(--primary-gradient);
    border: none;
}

.link-card.primary:hover {
    box-shadow: 0 10px 20px -5px rgba(0, 112, 255, 0.5);
    background: linear-gradient(135deg, #1a82ff 0%, #2edbff 100%);
}

.link-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}

.link-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
}

.link-arrow {
    opacity: 0.5;
    font-size: 12px;
}

/* Footer Section */
.social-footer {
    text-align: center;
    margin-top: auto;
    padding-bottom: 20px;
}

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

.social-icon {
    color: var(--text-dim);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--text-main);
    transform: translateY(-3px);
}

.footer-tag {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 120px 15px 30px 15px;
    }
}