/* 1. BIẾN MÀU & ĐỊNH DẠNG CHUNG */
:root {
    --primary: #0f172a;      /* Slate 900 (Digital Blue) */
    --accent: #3b82f6;       /* Blue 500 (Electric Blue) */
    --secondary: #64748b;    /* Slate 500 */
    --light: #f8fafc;        /* Gray 50 */
    --glass: rgba(255, 255, 255, 0.9);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #f1f5f9;
    color: #1e293b;
    line-height: 1.6;
}

/* 2. HEADER GLASSMORPHISM */
.main-header {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.navbar-brand .brand-title {
    color: var(--primary);
    letter-spacing: -0.5px;
}

/* 3. ĐIỀU HƯỚNG & HIỆU ỨNG */
.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent) !important;
    border-bottom: 2px solid var(--accent);
}

/* 4. FOOTER HIỆN ĐẠI */
.footer-tech {
    background: var(--primary);
    color: #cbd5e1;
    padding: 80px 0 30px;
    margin-top: 60px;
}

.footer-tech h5, .footer-tech h6 {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 50px;
}

/* 5. CẤU HÌNH IN ẤN CHUYÊN NGHIỆP (PRINT SETTINGS) */
@media print {
    /* Ẩn các thành phần không cần thiết khi in */
    .no-print, 
    .navbar, 
    .main-header, 
    .btn, 
    .modal, 
    .search-box, 
    .breadcrumb, 
    .comments-section,
    .footer-tech {
        display: none !important;
    }

    /* Hiển thị vùng nội dung in */
    body {
        background-color: white !important;
        font-size: 12pt;
        margin: 0;
        padding: 0;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* Hiển thị bản quyền ở trang cuối cùng */
    .print-only-footer {
        display: block !important;
        position: static;
        margin-top: 50px;
        border-top: 1pt solid #000;
        padding-top: 20px;
    }

    /* Đảm bảo hình ảnh không bị cắt ngang trang */
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    a::after {
        content: " (" attr(href) ")"; /* Hiện link gốc sau text khi in */
        font-size: 10pt;
        color: #666;
    }
}

/* Mặc định ẩn footer in ấn trên màn hình */
.print-only-footer {
    display: none;
}
/* --- FOOTER DIGITAL STYLE --- */
.footer-digital {
    background: #0f172a; /* Màu Slate đậm đặc trưng Digital */
    color: #f8fafc;
    border-top: 4px solid #3b82f6;
}

.footer-logo {
    height: 60px;
    filter: brightness(0) invert(1); /* Chuyển logo sang màu trắng */
    margin-bottom: 15px;
}

.hover-link {
    transition: all 0.3s ease;
    display: inline-block;
}

/* --- BẢN QUYỀN KHI IN (PRINT ONLY) --- */
.print-only-footer {
    display: none; /* Mặc định ẩn trên trình duyệt */
}

@media print {
    /* Ẩn footer màu đen của Web để tiết kiệm mực */
    .no-print, .footer-digital {
        display: none !important;
    }

    /* Hiện footer trắng đen cho máy in */
    .print-only-footer {
        display: block !important;
        position: static; /* Để nó chảy theo nội dung và nằm ở cuối cùng */
        width: 100%;
        color: black;
        background: white;
    }

    /* Đảm bảo in trang cuối không bị ngắt quãng */
    .print-only-footer {
        page-break-inside: avoid;
    }
    
    .italic { font-style: italic; }
}