:root {
    --rungkad-bg: #181c3a;
    --rungkad-card: #23264a;
    --rungkad-white: #fff;
    --rungkad-purple: #7c3aed;
    --rungkad-cyan: #00e0ff;
    --rungkad-border: #7c3aed;
    --rungkad-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
}

body {
    background: var(--rungkad-bg);
    color: var(--rungkad-white);
    font-family: 'Tourney', sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
    position: relative;
    z-index: 0;
}

.rungkad-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    border-radius: 32px;
    background: radial-gradient(circle at 50% 40%, #7c3aed 0%, transparent 70%),
                radial-gradient(circle at 30% 80%, #00e0ff88 0%, transparent 80%);
    opacity: 0.5;
    filter: blur(32px);
    animation: rungkad-glow-pulse 2.5s infinite alternate;
}

@keyframes rungkad-glow-pulse {
    0% { opacity: 0.4; filter: blur(24px);}
    50% { opacity: 0.7; filter: blur(48px);}
    100% { opacity: 0.4; filter: blur(24px);}
}

.profile-card {
    background: var(--rungkad-card);
    border-radius: 20px;
    box-shadow: var(--rungkad-shadow);
    border: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.profile-card > * {
    position: relative;
    z-index: 1;
}

.card-inner {
    padding: 2.5rem 2rem;
    position: relative;
}

.profile-header {
    text-align: center;
    margin-bottom: 2rem;
}

.avatar-frame {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: var(--rungkad-card);
    border: 3px solid var(--rungkad-purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #111;
}

.profile-name {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--rungkad-white);
    letter-spacing: 1.5px;
    margin-bottom: 0.2rem;
}

.profile-title {
    font-size: 1.2rem;
    color: var(--rungkad-purple);
    font-weight: 700;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rungkad-text {
    color: var(--rungkad-purple);
    font-weight: 900;
    font-family: 'Tourney', sans-serif;
}

.rungkad-text-subtle {
    color: #7c3aedbb;
    font-weight: 700;
}

.profile-bio {
    color: var(--rungkad-cyan);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin: 1.5rem 0;
}

.link-card {
    display: flex;
    align-items: center;
    background: transparent;
    border: 2px solid var(--rungkad-purple);
    border-radius: 16px;
    color: var(--rungkad-white);
    text-decoration: none;
    padding: 1.1rem 1.5rem;
    box-shadow: none;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    font-family: 'Tourney', sans-serif;
    min-height: 64px;
}

.link-card:hover {
    background: var(--rungkad-purple);
    color: var(--rungkad-card);
    border-color: var(--rungkad-cyan);
    transform: translateY(-2px) scale(1.01);
}

.link-content {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1.1rem;
}

.link-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--rungkad-purple);
    border: none;
    margin: 0;
}

.link-card:hover .link-icon {
    color: var(--rungkad-card);
}

.link-text {
    flex: 1 1 0;
    min-width: 0;
}

.link-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--rungkad-white);
    letter-spacing: 0.5px;
    font-family: 'Tourney', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.link-card:hover .link-title {
    color: var(--rungkad-card);
}

.link-arrow {
    flex-shrink: 0;
    color: var(--rungkad-purple);
    font-size: 1.2rem;
    transition: transform 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    margin: 0;
}

.link-card:hover .link-arrow {
    color: var(--rungkad-card);
    transform: translateX(6px) scale(1.1);
}

.profile-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #7c3aed33;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.social-icon {
    color: var(--rungkad-purple);
    font-size: 1.3rem;
    transition: color 0.2s, transform 0.2s;
}

.social-icon:hover {
    color: var(--rungkad-cyan);
    transform: scale(1.13);
}

@media (max-width: 768px) {
    .container {
        padding: 1.2rem 0.3rem;
    }
    .card-inner {
        padding: 1.1rem 0.5rem;
    }
    .avatar-frame {
        width: 70px;
        height: 70px;
    }
    .avatar {
        width: 60px;
        height: 60px;
    }
    .profile-name {
        font-size: 1.2rem;
    }
    .profile-title {
        font-size: 0.95rem;
    }
    .link-card {
        padding: 0.7rem 0.7rem;
    }
    .link-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
} 