:root {
    --bg-color: #0b0914;
    --card-bg: #141126;
    --primary: #7c3aed;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.card-container {
    padding: 20px;
    width: 100%;
    max-width: 400px;
}

.card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.header h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 30px;
}

.contact-info {
    text-align: left;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 16px;
}

.icon {
    font-size: 20px;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-main {
    background-color: var(--primary);
    color: white;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-muted);
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    text-decoration: none;
}
