.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    padding-bottom: 100px;
    justify-content: center;
}

.hero {
    text-align: center;
    margin-bottom: 30px;
}

.profile-frame {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    position: relative;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary);
    box-shadow: 0 0 20px rgba(255, 30, 30, 0.4);
    object-fit: cover;
}

.status-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--primary);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 25px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.quote-box h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.quote-box p {
    font-style: italic;
    line-height: 1.6;
}

.actions {
    margin-top: 30px;
}

.action-btn {
    background: linear-gradient(135deg, var(--primary), #8a0000);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(255, 30, 30, 0.3);
    transition: transform 0.2s;
}

.action-btn:active {
    transform: scale(0.95);
}