/* Đặt lại lề và font chữ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Định dạng hình nền toàn trang */
body {
    /* Đưa đường dẫn ảnh của bạn vào đây. Nếu ảnh lỗi, màu nền gradient sẽ thay thế */
    background: url('./img(02)/hinh-nen.jpg') no-repeat center center fixed, linear-gradient(135deg, #74ebd5 0%, #9face6 100%);
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hiệu ứng Kính mờ (Glassmorphism) cho thẻ Card */
.glass-card {
    background: rgba(255, 255, 255, 0.25); /* Màu trắng bán trong suốt */
    backdrop-filter: blur(12px); /* Lệnh tạo độ mờ cho kính (quan trọng nhất) */
    -webkit-backdrop-filter: blur(12px); /* Hỗ trợ trình duyệt Safari */
    border: 1px solid rgba(255, 255, 255, 0.4); /* Viền kính mỏng */
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15); /* Bóng đổ tạo chiều sâu */
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Tiêu đề */
h1 {
    color: #2c3e50;
    font-size: 26px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}


ol {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 12px;
}


a {
    display: block;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.5); 
    color: #2c3e50;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}


a:hover {
    background: rgba(255, 255, 255, 0.9); 
    transform: translateY(-3px); 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    color: #000;
}
