/* Lấy font chữ hiện đại từ Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

/* NỀN GRADIENT ĐỘNG (Đổi màu liên tục rất ảo diệu) */
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite; /* Hiệu ứng chuyển màu 15 giây/vòng */
    padding: 20px;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* KHUNG CARD CHÍNH (Glassmorphism kết hợp màu sáng) */
.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 40px 40px 50px 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    margin-top: 40px; /* Nhường chỗ cho avatar trồi lên */
}

/* AVATAR SINH VIÊN */
.avatar {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #23a6d5, #23d5ab);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -85px auto 20px; /* Đẩy trồi lên khỏi khung thẻ */
    border: 5px solid #fff;
    box-shadow: 0 10px 20px rgba(35, 213, 171, 0.3);
}

.avatar i {
    font-size: 40px;
    color: white;
}

/* CÁC TIÊU ĐỀ */
h1 {
    color: #2c3e50;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
}

h2 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
h2 i { color: #23a6d5; }

/* KHUNG THÔNG TIN SINH VIÊN */
.student-details {
    background: rgba(240, 244, 248, 0.8);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
    border-left: 5px solid #e73c7e; /* Gạch trang trí bên trái */
}

.student-info {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.student-info:last-child { margin-bottom: 0; }
.student-info i { width: 30px; color: #e73c7e; font-size: 18px; text-align: center; }
.student-info strong { margin-left: 5px; color: #2d3748; }

/* DANH SÁCH BÀI TẬP (Nút bấm xịn) */
.exercise-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exercise-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: #ffffff;
    color: #4a5568;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid #edf2f7;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.exercise-list a i {
    color: #cbd5e0;
    transition: all 0.3s ease;
}

/* HIỆU ỨNG RÊ CHUỘT (Hover) */
.exercise-list a:hover {
    transform: translateY(-4px); /* Nút bay lên nhẹ */
    box-shadow: 0 12px 20px rgba(35, 166, 213, 0.15); /* Bóng đổ xanh */
    border-color: #23a6d5;
    color: #23a6d5;
}

.exercise-list a:hover i {
    color: #23a6d5;
    transform: translateX(5px); /* Mũi tên trượt sang phải */
}
