
        /* Toàn bộ cấu trúc cơ bản */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-color: #111111; 
            overflow-x: hidden;
        }

        /* 1. Thanh điều hướng (Navbar) */
        .navbar {
            background-color: rgba(17, 17, 17, 0.85); /* Chỉnh trong suốt một chút để thấy mờ mờ ảnh nền bên dưới */
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 6%;
            color: #ffffff;
            position: fixed; 
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .navbar .logo {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .navbar .logo span {
            color: #ff4500; 
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: #cccccc;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease, transform 0.3s ease;
            display: inline-block;
        }

        .nav-links a:hover, .nav-links .active {
            color: #ff4500;
            transform: translateY(-1px);
        }

        /* 2. Phần Banner chính (Hero Section) - Đã căn chỉnh hiển thị 100% ảnh */
        .hero {
            height: 100vh; 
            width: 100vw;
            /* Lớp phủ gradient chuyển sang màu đen trong suốt (rgba) thay vì màu đen đặc, giúp ảnh không bị che khuất */
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                             url('images/logo1.jpg');
            background-size: cover;
            background-position: center center; /* Căn giữa tâm ảnh để lấy góc đẹp nhất */
            background-attachment: fixed; 
            background-repeat: no-repeat;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            /* Thêm padding-top khoảng 80px để thanh menu (navbar) không đè lên nội dung chữ */
            padding: 80px 20px 0 20px;
            position: relative;
        }

        /* Khung nội dung canh chỉnh chuyên nghiệp */
        .hero-content {
            max-width: 850px;
            animation: fadeInUp 1s ease-out; 
        }

        /* Khung Tiêu đề Chào mừng */
        .welcome-box {
            display: inline-block;
            border-left: 4px solid #ff4500;
            border-right: 4px solid #ff4500;
            padding: 5px 25px;
            margin-bottom: 20px;
        }

        .welcome-box h1 {
            color: #ffffff;
            font-size: 52px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.6);
        }

        /* Dòng chữ slogan phụ */
        .subtitle {
            color: #e0e0e0;
            font-size: 20px;
            font-weight: 300;
            margin-bottom: 40px;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
        }

        /* Nút Mua sắm ngay */
        .btn-shop {
            background-color: #ff4500;
            color: #ffffff;
            text-decoration: none;
            padding: 16px 45px;
            font-size: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: 50px; 
            border: 2px solid #ff4500;
            box-shadow: 0px 5px 25px rgba(255, 69, 0, 0.35);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-block;
        }

        .btn-shop:hover {
            background-color: transparent;
            color: #ff4500;
            transform: scale(1.05);
            box-shadow: 0px 8px 30px rgba(255, 69, 0, 0.5);
        }

        /* Hiệu ứng mũi tên cuộn hướng dẫn góc dưới màn hình */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.7);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: bounce 2s infinite;
        }

        /* 4. Chân trang (Footer) */
        .footer {
            background-color: #0b0b0b;
            color: #777777;
            text-align: center;
            padding: 35px 20px;
            font-size: 14px;
            margin-top: auto;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .footer p {
            margin: 5px 0;
        }

        .footer p span {
            color: #ff4500;
        }

        /* Định nghĩa hiệu ứng chuyển động (Keyframes) */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
            40% { transform: translate(-50%, -10px); }
            60% { transform: translate(-50%, -5px); }
        }

        /* Responsive mượt mà trên điện thoại */
        @media (max-width: 768px) {
            .welcome-box h1 { font-size: 34px; letter-spacing: 1.5px; }
            .subtitle { font-size: 15px; letter-spacing: 1px; }
            .btn-shop { padding: 14px 35px; font-size: 13px; }
            .navbar { padding: 15px 4%; }
        }
    

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #1c1c1c;
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), 
                     url('https://images.unsplash.com/photo-1541701494587-cb58502866ab?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: #111111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 6%;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar .logo {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

.navbar .logo span {
    color: #ff4500;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.nav-links a:hover, 
.nav-links .active {
    color: #ff4500;
}

.page-title {
    color: #ffffff;
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff4500;
}

.product-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2% 40px 2%;
    width: 100%;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
}

.product-img-box {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 15px 10px 20px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.product-name {
    font-size: 16px;
    font-weight: bold;
    color: #1a2b4c;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-price {
    color: #dc3545;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 15px;
}

.product-buttons {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.btn {
    background-color: #138550;
    color: #ffffff;
    border: none;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

.btn:hover {
    background-color: #0f6b40;
}

.footer {
    background-color: #111111;
    color: #aaaaaa;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    margin-top: auto;
    border-top: 3px solid #ff4500;
}

/* Responsive Giao diện mượt mà */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #2b2b2b;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                     url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: #111111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 6%;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar .logo {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

.navbar .logo span {
    color: #ff4500;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.nav-links a:hover, 
.nav-links .active {
    color: #ff4500;
}

.detail-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 4%;
}

.product-wrapper {
    display: flex;
    max-width: 1100px;
    width: 100%;
    gap: 40px;
    align-items: stretch;
}

.product-image-side {
    flex: 1;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.product-image-side img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
}

.product-info-side {
    flex: 1.2;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.product-price {
    color: #ff4500;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.option-group select, 
.option-group input {
    width: 100%;
    max-width: 250px;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: #ffffff;
    color: #222222;
    font-size: 14px;
    outline: none;
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.btn-add-cart {
    background-color: #138550;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-add-cart:hover {
    background-color: #0f6b40;
}

.btn-back {
    background-color: #222222;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s;
}

.btn-back:hover {
    background-color: #111111;
}

.footer {
    background-color: #111111;
    color: #aaaaaa;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    border-top: 3px solid #ff4500;
}

@media (max-width: 768px) {
    .product-wrapper {
        flex-direction: column;
    }
    .product-info-side {
        padding: 25px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #111111;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    background-color: #111111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar .logo {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

.navbar .logo span {
    color: #ff4500;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
}

.nav-links a:hover, 
.nav-links .active {
    color: #ff4500;
}

        /* Vùng Giỏ Hàng */
        .cart-container { 
    width: 85%; 
    max-width: 1200px;
    margin: 50px auto; 
    background: #1a1a1a; 
    padding: 35px; 
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.cart-container h2 { 
    text-align: center; 
    margin-bottom: 35px; 
    color: #ff4500; 
    text-transform: uppercase; 
    font-size: 28px;
    letter-spacing: 1.5px;
}

/* Bảng Giỏ hàng chỉnh sửa hiển thị */
table { 
    width: 100%; 
    border-collapse: separate; 
    border-spacing: 0 12px; /* Tạo khoảng cách trống giữa các hàng cho thoáng */
    margin-bottom: 25px; 
}

th { 
    background-color: #222222; 
    text-transform: uppercase; 
    font-size: 14px; 
    color: #bbbbbb; 
    padding: 18px 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Căn chỉnh từng ô nội dung trong bảng */
td { 
    padding: 15px; 
    text-align: center; 
    background-color: #222222; /* Tạo nền khối riêng cho từng hàng */
    color: #ffffff; /* Ép toàn bộ chữ mặc định trong bảng sang MÀU TRẮNG */
    font-size: 16px;
    vertical-align: middle;
}

/* Bo góc cho các cạnh của hàng */
td:first-child { border-radius: 8px 0 0 8px; }
td:last-child { border-radius: 0 8px 8px 0; }

/* Sửa lỗi ảnh bị méo hoặc quá to */
td img { 
    width: 70px; 
    height: 70px; 
    object-fit: cover; 
    border-radius: 8px; 
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-block;
}

/* Format riêng cho các text thuộc tính để nổi bật */
td:nth-child(2) { 
    color: #ffffff; /* Tên sản phẩm: Trắng rõ ràng */
    font-weight: 600;
}

td:nth-child(3) { 
    color: #aaaaaa; /* Size: Xám nhạt thanh lịch */
    font-size: 15px;
}

td:nth-child(4) { 
    color: #ff4500; /* Giá tiền: Màu cam nổi bật dễ nhìn */
    font-weight: 700;
}

/* Ô nhập số lượng (Input) */
.qty-input { 
    width: 60px; 
    padding: 8px; 
    text-align: center; 
    background: #333333; 
    color: #ffffff; 
    border: 1px solid #555555; 
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    transition: border-color 0.3s;
}

.qty-input:focus {
    border-color: #ff4500;
}

/* Nút xóa từng sản phẩm */
.btn-delete { 
    background-color: #dc3545; 
    color: white; 
    border: none; 
    padding: 8px 16px; 
    border-radius: 6px; 
    cursor: pointer; 
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s, transform 0.1s; 
}

.btn-delete:hover { 
    background-color: #bd2130; 
    transform: scale(1.05);
}

/* Nút Xóa toàn bộ giỏ hàng */
.btn-clear { 
    background-color: #444444; 
    color: #ffffff; 
    border: none; 
    padding: 12px 24px; 
    border-radius: 6px; 
    cursor: pointer; 
    float: right; 
    margin-bottom: 25px; 
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-clear:hover { 
    background-color: #ff4500;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

/* Vùng hiển thị tổng tiền */
.total-price { 
    font-size: 20px; 
    font-weight: 600; 
    text-align: right; 
    clear: both; 
    padding-top: 15px; 
    margin-bottom: 40px;
    color: #eeeeee;
    border-top: 1px solid #333333;
}

.total-price span { 
    color: #ff4500; 
    font-size: 28px; 
    font-weight: 800;
    margin-left: 10px;
}




        .customer-info { 
    background: #1a1a1a; /* Đồng bộ màu nền với giỏ hàng */
    padding: 35px; 
    border-radius: 12px; 
    border-top: 4px solid #ff4500; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}

.customer-info h3 { 
    margin-bottom: 25px; 
    font-size: 22px; 
    color: #ff4500;
    text-transform: uppercase;
    font-weight: 700;
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

/* Từng cụm form (Label + Input) */
.form-group { 
    margin-bottom: 22px; /* Tăng khoảng cách xuống hàng giữa các ô dữ liệu */
}

.form-group label { 
    display: block; 
    margin-bottom: 8px; /* Khoảng cách từ chữ tiêu đề xuống ô nhập */
    font-size: 14px; 
    color: #dddddd; /* Đổi màu chữ label sáng lên cho dễ đọc */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ô nhập liệu và ô ghi chú */
.form-group input, 
.form-group textarea {
    width: 100%; 
    padding: 14px 16px; /* Tăng padding giúp chữ không bị dính sát viền */
    border-radius: 8px; /* Bo góc mượt mà hơn */
    border: 1px solid #444444; 
    background: #111111; 
    color: #ffffff; /* Ép chữ khách hàng nhập sang màu trắng rõ nét */
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease; /* Tạo hiệu ứng mượt mà khi click */
}

/* Hiệu ứng phát sáng nhẹ màu cam khi khách click vào ô nhập liệu */
.form-group input:focus, 
.form-group textarea:focus {
    border-color: #ff4500;
    box-shadow: 0 0 8px rgba(255, 69, 0, 0.2);
    background: #151515;
}

.form-group textarea { 
    resize: vertical; 
    height: 100px; /* Tăng chiều cao mặc định cho ô ghi chú rộng rãi */
}

/* Nút đặt hàng lớn */
.btn-order {
    width: 100%; 
    background-color: #ff4500; 
    color: #ffffff; 
    padding: 16px; 
    border: none;
    font-size: 18px; 
    font-weight: 700; 
    text-transform: uppercase; 
    border-radius: 8px; 
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    margin-top: 15px;
}

.btn-order:hover { 
    background-color: #e03d00; 
    transform: translateY(-2px); /* Hiệu ứng nhấc nhẹ nút lên khi hover */
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.5);
}

.btn-order:active {
    transform: translateY(0);
}

/* Chân trang (Footer) */
.footer { 
    background-color: #0b0b0b; 
    color: #888888; 
    text-align: center; 
    padding: 25px 20px; 
    font-size: 14px; 
    margin-top: 60px; /* Đẩy footer cách xa vùng nội dung trên một khoảng thoáng */
    border-top: 1px solid #222222; 
}
    

       
    :root {
      --primary-color: #0ea5e9; /* Xanh biển thanh mát */
      --secondary-color: #f43f5e; /* Hồng hoàng hôn nổi bật */
      --bg-gradient: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%); /* Nền thiên nhiên tươi mát */
      --text-color: #1e293b;
      --card-bg: rgba(255, 255, 255, 0.85);
      --radius: 16px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      padding: 0;
      background: var(--bg-gradient);
      color: var(--text-color);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* Navbar đổi mới thanh lịch */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 5%;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(10px);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--text-color);
      text-decoration: none;
      letter-spacing: -0.5px;
    }

    .logo span {
      color: var(--primary-color);
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 1.5rem;
      margin: 0;
      padding: 0;
    }

    .nav-menu a {
      text-decoration: none;
      color: #64748b;
      font-weight: 500;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      transition: var(--transition);
    }

    .nav-menu a:hover, .nav-menu a.active {
      color: #fff;
      background: var(--primary-color);
    }

    .cart-count {
      background: var(--secondary-color);
      color: white;
      padding: 2px 6px;
      border-radius: 20px;
      font-size: 0.75rem;
      margin-left: 4px;
    }

    /* Hero Section biến thành một banner du lịch thực thụ */
    .page-hero {
      text-align: center;
      padding: 4rem 1rem 3rem;
      background: url('images/logo10.jpg') no-repeat center center/cover;
      color: white;
      position: relative;
      border-radius: 0 0 40px 40px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
      margin-bottom: 2rem;
    }

    .page-hero::before {
      content: '';
      position: absolute;
      top:0; left:0; right:0; bottom:0;
      background: linear-gradient(to bottom, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.7));
      border-radius: 0 0 40px 40px;
      z-index: 1;
    }

    .page-hero h1, .page-hero p {
      position: relative;
      z-index: 2;
      margin: 0;
    }

    .page-hero h1 {
      font-size: 2.5rem;
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 0.5rem;
    }

    .page-hero p {
      font-weight: 300;
      opacity: 0.9;
    }

    /* Danh sách bài tập - Grid & Card lột xác */
    .section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 5%;
      flex: 1;
    }

    .lab-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 2rem;
    }

    .lab-card {
      background: var(--card-bg);
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: var(--radius);
      padding: 1.8rem;
      box-shadow: 0 10px 25px rgba(0,0,0,0.02);
      backdrop-filter: blur(8px);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    /* Hiệu ứng viền màu khi hover vào card */
    .lab-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; width: 5px; height: 100%;
      background: var(--primary-color);
      transition: var(--transition);
    }

    .lab-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
      background: #fff;
    }

    .lab-card:hover::before {
      width: 8px;
      background: var(--secondary-color);
    }

    .lab-card h2 {
      font-size: 1.25rem;
      margin-top: 0;
      margin-bottom: 1.2rem;
      color: #0f172a;
      border-bottom: 2px dashed #e2e8f0;
      padding-bottom: 0.5rem;
    }

    /* Các liên kết bài tập biến thành các nút bấm mini tiện lợi */
    .lab-link-wrapper {
      margin: 0.6rem 0;
    }

    .lab-card a {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      color: #475569;
      font-weight: 500;
      font-size: 0.95rem;
      transition: var(--transition);
      padding: 0.4rem 0.8rem;
      border-radius: 6px;
      width: 90%;
    }

    .lab-card a::before {
      content: '📍'; /* Biểu tượng định vị du lịch trước mỗi bài */
      margin-right: 8px;
      font-size: 0.9rem;
    }

    .lab-card a:hover {
      color: var(--primary-color);
      background: rgba(14, 165, 233, 0.08);
      transform: translateX(5px);
    }

    /* Footer chỉn chu */
    .footer {
      background: #0f172a;
      color: #94a3b8;
      text-align: center;
      padding: 1.5rem 1rem;
      font-size: 0.9rem;
      margin-top: 4rem;
    }
  