:root {
    --bg-color: #0f172a;
    --card-bg: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-ai: #a855f7;
    --accent-mobile: #38bdf8;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    padding: 20px;
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
}

.profile-card {
    position: relative;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* The unique glow effect */
.glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.15) 0%, rgba(56, 189, 248, 0.15) 30%, transparent 70%);
    animation: rotate 15s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.name {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #cbd5e1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.role-container {
    font-size: 1.25rem;
    color: var(--accent-mobile);
    font-weight: 300;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.bracket {
    color: var(--text-secondary);
    opacity: 0.5;
}

#typing-text {
    color: var(--accent-mobile);
}

.cursor {
    display: inline-block;
    width: 2px;
    background-color: var(--accent-ai);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.status {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .name {
        font-size: 1.75rem;
    }
    
    .role-container {
        font-size: 1rem;
    }
    
    .profile-card {
        padding: 2rem 1.5rem;
    }
}