:root {
    --brand-blue: #1e3a8a;
    --brand-cyan: #06b6d4;
    --brand-bg: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;

    --shadow-soft: 0 4px 20px -2px rgba(30, 58, 138, 0.08);
    --shadow-card: 0 20px 40px -4px rgba(30, 58, 138, 0.06);
    --glow-primary: 0 0 25px rgba(6, 182, 212, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--brand-bg);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    /* Static, robust gradient background */
    background-image:
        radial-gradient(circle at 10% 10%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(30, 58, 138, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
}

/* Replaces canvas with simple CSS element */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    /* faint pattern */
    background-image: linear-gradient(rgba(0, 82, 204, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 82, 204, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 100%);
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 40px 20px;
    padding: 3.5rem 2.5rem;

    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        var(--shadow-card),
        inset 0 1px 1px rgba(255, 255, 255, 1);

    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transform: translateZ(0);
    /* Hardware acceleration hint */
}

/* Header */
.header {
    margin-bottom: 2.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 180px;
    height: auto;
}

/* Profile */
.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
}

.profile-image-wrapper {
    width: 140px;
    height: 140px;
    position: relative;
    margin-bottom: 1.5rem;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
    position: relative;
    z-index: 2;
}

/* Static, elegant border instead of spinning */
.rotating-border {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid var(--brand-cyan);
    opacity: 0.3;
}

.text-content {
    margin-top: 0.5rem;
}

.profile-name {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.name-prefix {
    font-weight: 300;
    color: var(--text-muted);
}

.profile-title {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(6, 182, 212, 0.05));
    color: #0891b2;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Buttons */
.actions {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    margin-bottom: 2.5rem;
}

.btn {
    position: relative;
    text-decoration: none;
    padding: 1.35rem 1.5rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: white;
}

.btn-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1.4rem;
    margin-right: 15px;
}

.btn-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.text {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.btn-arrow {
    font-size: 1.2rem;
    color: inherit;
    opacity: 0.6;
}

/* Interactions reduced to simple hover states */
.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(30, 58, 138, 0.4);
}

.btn-primary .btn-icon-box {
    background: rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    background: #ffffff;
    color: var(--text-main);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-soft);
}

.btn-secondary .btn-icon-box {
    background: #f1f5f9;
}

.btn-glass {
    background: transparent;
    color: var(--text-muted);
    border: 1px dashed #cbd5e1;
    justify-content: center;
    padding: 1rem;
    border-radius: 20px;
}

.btn-glass .btn-content {
    justify-content: center;
    gap: 10px;
}

.btn-glass .btn-icon-box {
    display: none;
}

/* Footer */
.footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    background: transparent;
}

.copyright {
    font-size: 0.8rem;
    color: #94a3b8;
}