/* G:\HKGH2026\hkghokami.com.public\public\Assets\css\style_game.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,700;1,400&display=swap');

:root {
    --bg-main: #f5efe6;         /* Màu nền kem cổ trang */
    --bg-card: #fdfaf4;         /* Màu nền card nhạt */
    --color-primary: #1b4d3e;   /* Xanh ngọc bích đậm */
    --color-secondary: #8c2f1e; /* Đỏ chu sa trầm (dùng cho nhấn nhẹ, trạng thái) */
    --color-gold: #c5a880;      /* Vàng đồng cổ kính */
    --color-text: #3d352b;      /* Chữ nâu trầm dễ đọc */
    --color-muted: #756a5c;     /* Chữ phụ xám nâu */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

body {
    background-color: var(--bg-main) !important;
    color: var(--color-text) !important;
    font-family: var(--font-sans) !important;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif) !important;
    color: var(--color-primary);
    font-weight: 700;
}

/* Kiểu dáng Header & Navigation */
.header-kh {
    background-color: var(--bg-card);
    border-bottom: 2px solid var(--color-gold);
    box-shadow: 0 4px 12px rgba(58, 46, 31, 0.08);
}
.header-kh .logo img {
    max-height: 60px;
}
.user-info-box {
    background-color: #eae1d4;
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    padding: 6px 12px;
}

/* Thẻ Card phong cách Á Đông */
.card-kh {
    background-color: var(--bg-card);
    border: 1px solid var(--color-gold) !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 8px rgba(61, 53, 43, 0.05);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}
.card-kh::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background-color: var(--color-primary);
}
.card-kh-header {
    background-color: #eae1d4;
    border-bottom: 1px solid var(--color-gold);
    padding: 10px 15px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--color-primary);
}

/* Nút bấm võ hiệp */
.btn-ngocbich {
    background-color: var(--color-primary) !important;
    color: #fff !important;
    border: 1px solid var(--color-primary) !important;
    border-radius: 4px !important;
    transition: all 0.2s ease-in-out;
}
.btn-ngocbich:hover {
    background-color: #12352b !important;
    border-color: #12352b !important;
}

.btn-vangngoc {
    background-color: #d4af37 !important;
    color: #3d352b !important;
    border: 1px solid var(--color-gold) !important;
    border-radius: 4px !important;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}
.btn-vangngoc:hover {
    background-color: #c5a028 !important;
    color: #fff !important;
}

.btn-chusa {
    background-color: var(--color-secondary) !important;
    color: #fff !important;
    border: 1px solid var(--color-secondary) !important;
    border-radius: 4px !important;
    transition: all 0.2s ease-in-out;
}
.btn-chusa:hover {
    background-color: #6e2316 !important;
}

/* Lịch sử giao dịch & Bảng dữ liệu */
.table-kh {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
}
.table-kh th {
    background-color: #eae1d4;
    color: var(--color-primary);
    border: 1px solid var(--color-gold);
    padding: 10px;
    font-weight: 600;
}
.table-kh td {
    border: 1px solid var(--color-gold);
    padding: 10px;
    color: var(--color-text);
}
.table-kh tr:nth-child(even) {
    background-color: #f7f3eb;
}

/* CSS Mobile Navigation */
.nav-bottom-kh {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-card);
    border-top: 2px solid var(--color-gold);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1030;
}
.nav-bottom-kh a {
    color: var(--color-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}
.nav-bottom-kh a.active, .nav-bottom-kh a:hover {
    color: var(--color-primary);
}
.nav-bottom-kh .icon-bottom {
    font-size: 1.5rem;
}

/* Các lớp tiện ích bổ sung */
.text-gold {
    color: var(--color-gold);
}
.border-gold {
    border-color: var(--color-gold) !important;
}
.bg-gold-light {
    background-color: #eae1d4 !important;
}

/* Bảng tin tức */
.news-item {
    border-bottom: 1px dashed var(--color-gold);
    padding: 12px 0;
}
.news-item:last-child {
    border-bottom: none;
}
.news-badge {
    font-size: 0.75rem;
    padding: 3px 6px;
    border-radius: 3px;
    margin-right: 8px;
}
.news-badge-tintuc { background-color: #d1e7dd; color: #0f5132; }
.news-badge-sukien { background-color: #f8d7da; color: #842029; }
.news-badge-huongdan { background-color: #fff3cd; color: #664d03; }

/* Mobile optimization */
@media (max-width: 767.98px) {
    .table-responsive-mobile table {
        display: block;
    }
    .table-responsive-mobile tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid var(--color-gold);
        background-color: var(--bg-card);
        padding: 10px;
    }
    .table-responsive-mobile td {
        display: flex;
        justify-content: space-between;
        border: none;
        border-bottom: 1px dashed #eee;
        padding: 6px 0;
        text-align: right;
    }
    .table-responsive-mobile td:last-child {
        border-bottom: none;
    }
    .table-responsive-mobile td::before {
        content: attr(data-label);
        font-weight: bold;
        color: var(--color-primary);
        text-align: left;
    }
    .table-responsive-mobile thead {
        display: none;
    }
}
