/* --- INFO BAR - GLASSMORPHISM --- */
.info-bar {
    background-color: rgba(15, 15, 15, 0.5); /* Nền tối kính mờ */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 160, 89, 0.15); /* Viền vàng mảnh mờ */
    padding: 20px 25px;
    text-align: center;
    margin: 20px auto;
    max-width: 1000px;
    border-radius: 8px; /* Bo góc */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* Khoảng cách giữa các dòng */
}

/* Khung bọc từng dòng thông tin */
.info-link-row {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    padding: 4px 15px;
    border-radius: 4px;
    color: var(--text-gray);
    width: fit-content;
}

/* Hiệu ứng di chuột */
.info-link-row:not(.no-click):hover {
    color: #fff !important;
    background: rgba(197, 160, 89, 0.08);
    transform: translateY(-1px);
}

.info-link-row.no-click {
    cursor: default;
}

/* Nội dung chữ */
.info-link-row p.info-text-line {
    margin: 0 !important; /* Loại bỏ margin cũ */
    padding: 0 !important;
    color: inherit; /* Tự động đổi màu theo trạng thái hover */
    font-size: 1.1rem;
    display: inline-block;
}

/* Chữ nhãn màu vàng */
.info-bar span {
    color: var(--gold-color) !important;
    font-weight: bold;
}

/* --- ĐỊNH DẠNG ICON SVG (KHÓA KÍCH THƯỚC TIN TẾ) --- */
.info-svg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-color);
    width: 20px !important;  /* Khóa cứng chiều rộng */
    height: 20px !important; /* Khóa cứng chiều cao */
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.info-svg-icon svg {
    width: 20px !important;  /* Khóa cứng kích thước hiển thị thực tế */
    height: 20px !important;
    display: block;
}

.info-link-row:not(.no-click):hover .info-svg-icon {
    transform: scale(1.1); /* Phóng to rất nhẹ khi hover */
}

/* VÔ HIỆU HÓA HOÀN TOÀN BỘ LỌC FIRST-LETTER CŨ GÂY LỖI */
.info-bar p::first-letter,
.info-link-row p::first-letter {
    filter: none !important;
    display: inline !important;
    transform: none !important;
}

/* Ẩn nút Info ngắn trên màn hình PC */
.mobile-only-trigger {
    display: none !important;
}

/* Đảm bảo nút dài vẫn hiện trên PC */
.pc-only-trigger {
    display: flex !important; 
}
