/* 1. Thiết lập cơ bản */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6; /* Nền xám nhạt hiện đại */
    color: #333;
    padding: 40px 20px;
    line-height: 1.6;
}

/* 2. Tiêu đề Tuần (H1) */
h1 {
    text-align: center;
    color: #2c3e50;
    margin: 40px 0 20px 0;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #3498db;
    margin: 10px auto;
    border-radius: 2px;
}

/* 3. Container chứa các Card */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

/* 4. Thiết kế thẻ Card */
.card {
    background: #ffffff;
    width: 320px;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-top: 5px solid #3498db; /* Thanh màu xanh phía trên */
}

/* Hiệu ứng khi di chuột vào Card */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.3rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    text-align: center;
}

/* 5. Danh sách các bài tập con */
.card ul {
    list-style: none;
}

.card ul li {
    margin-bottom: 12px;
}

.card ul li a {
    text-decoration: none;
    color: #555;
    background-color: #f8f9fa;
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

/* Hiệu ứng liên kết (Link) khi hover */
.card ul li a:hover {
    background-color: #3498db;
    color: #ffffff;
    padding-left: 25px; /* Hiệu ứng chữ chạy sang phải */
    border-color: #2980b9;
}

/* Tùy chỉnh màu sắc riêng cho từng loại bài tập */
.card:nth-child(2) { border-top-color: #2ecc71; } /* Bài tại lớp - Xanh lá */
.card:nth-child(3) { border-top-color: #e67e22; } /* Bài về nhà - Cam */

/* Responsive - Tự động chỉnh trên điện thoại */
@media (max-width: 600px) {
    .card { width: 100%; }
    h1 { font-size: 1.5rem; }
}