/* Đặt lại lề và font chữ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Nền tảng với dải màu Gradient Xanh Ngọc - Xanh Dương */
body {
    background: linear-gradient(135deg, #43cea2 0%, #185a9d 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Khung Menu chính */
.card-menu {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* Đổ bóng tạo chiều sâu */
    width: 100%;
    max-width: 420px;
}

/* Tiêu đề trang */
h1 {
    text-align: center;
    color: #185a9d;
    font-size: 28px;
    margin-bottom: 30px;
    position: relative;
}

/* Đường gạch ngang trang trí dưới tiêu đề */
h1::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #43cea2;
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Reset danh sách mặc định */
ol {
    list-style: none;
    counter-reset: bai-tap; /* Tạo biến đếm tự động */
}

li {
    margin-bottom: 16px;
    counter-increment: bai-tap; /* Tăng biến đếm qua mỗi thẻ li */
}

/* Định dạng từng nút bấm (thẻ a) */
a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    background-color: #f4f7f6;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    border-left: 5px solid transparent; 
    transition: all 0.3s ease;
}


a::before {
    content: "0" counter(bai-tap); 
    background: #185a9d;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 8px;
    margin-right: 15px;
    transition: all 0.3s ease;
}


a:hover {
    background-color: #ffffff;
    border-left: 5px solid #43cea2; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateX(10px); 
    color: #185a9d; 
}

a:hover::before {
    background: #43cea2; 
}
