body {
    background: linear-gradient(135deg, #eef2ff, #f0fdf4);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.account-card {
    border: none;
    padding-top: 6px;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.account-header {
    background: linear-gradient(to right, #2e3651, #bac0d51f);
    color: #ffffff;
    padding: 1.75rem;
    border-radius: 16px;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 1px solid #e5e7eb;
}

.account-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: #ffffff;
}

.option-item {
    flex: 1 1 40%;
    max-width: 180px;
    margin: 12px;
    background: linear-gradient(135deg, #1e3a8a, #0d9488);
    color: #ffffff;
    border-radius: 12px;
    text-align: center;
    padding: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.07);
    font-weight: 500;
}

.option-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    background-color: #ef4444;
    color: white;
    text-decoration: none;
}

.option-item i {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    display: block;
    color: #ffffff;
}

.badge-custom {
    background: #ef4444;
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.75rem;
    padding: 4px 8px;
    position: absolute;
    top: 8px;
    right: 12px;
}

.section-divider {
    width: 100%;
    margin: 2rem auto;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 576px) {
    .option-item {
        flex: 0 0 48%;
        max-width: 48%;
        margin: 1%;
    }
}
