:root {
    --primary: #00f2ff;
    --secondary: #7000ff;
    --dark: #030303;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-dim: #888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.bg-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112,0,255,0.15) 0%, rgba(0,242,255,0.05) 50%, transparent 100%);
    filter: blur(80px);
    z-index: -1;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

.container { 
    width: 100%; 
    max-width: 480px; 
}

.profile-header { 
    text-align: center; 
    margin-bottom: 60px; 
}

.profile-img-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.profile-img {
    width: 100%; height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 38px; font-weight: 800;
    z-index: 2; position: relative;
}

.ring {
    position: absolute; top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: rotate 4s linear infinite;
    opacity: 0.3;
}

h1 { font-size: 2.5rem; font-weight: 800; letter-spacing: -2px; margin: 0; text-transform: lowercase; }
.subtitle { color: #888; letter-spacing: 2px; text-transform: uppercase; font-size: 0.75rem; margin-top: 10px; font-weight: 600; }

.links-grid { 
    display: grid; 
    gap: 25px; 
    margin-bottom: 40px;
}

.card {
    display: block;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(0,242,255,0.1);
}

.card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.8));
}

.card-content {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateZ(30px);
}

.card-content h3 { margin: 0; font-size: 1.3rem; font-weight: 700; }
.card-content p { margin: 5px 0 0; color: #aaa; font-size: 0.9rem; }

.btn-arrow {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
}

.card:hover .btn-arrow { background: var(--primary); color: black; transform: rotate(-45deg); }

.highlight { border-color: var(--secondary); }
.highlight:hover { border-color: #ff00ea; box-shadow: 0 0 30px rgba(112,0,255,0.2); }

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-bottom: 40px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: white; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: black; 
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background-color: var(--primary);
    color: white;
}

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.glitch {
    position: relative;
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}