/* ==========================================================================
   1. CSS VARIABLES & BASE RESET
   ========================================================================== */
:root {
    --color-primary: #a200a2;
    --color-primary-rgb: 242, 13, 242;
    --bg-dark: #0a050a;
    --bg-card: #1a0d1a;
    --bg-light: #f8f5f8;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    --border-color: rgba(var(--color-primary-rgb), 0.2);
}

*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0;
    padding: 0; 
}

body {
    font-family: 'Spline Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

html.dark body { 
    background-color: var(--bg-dark); 
    color: var(--text-main); 
}

a { 
    text-decoration: none; 
    color: inherit; 
}

input, textarea, button { 
    font-family: inherit; 
}

input:focus, textarea:focus { 
    outline: none; 
}

button { 
    background: none; 
    border: none; 
    cursor: pointer; 
    color: inherit; 
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    width: 100%; 
    padding: 0 1rem; 
}

.material-symbols-outlined { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
}

/* ==========================================================================
   2. SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    border-bottom: 1px solid var(--border-color); 
    background-color: rgba(10, 5, 10, 0.8); 
    backdrop-filter: blur(12px); 
    padding: 0.75rem 1rem; 
    position: sticky; 
    top: 0; 
    z-index: 50; 
}

.header-left, .header-right { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
    color: var(--color-primary); 
}

.logo-icon { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background-color: rgba(var(--color-primary-rgb), 0.1); 
    border-radius: 0.5rem; 
}

.logo-icon img { height: 30px; }

.logo-text { 
    color: var(--text-main); 
    font-size: 1.25rem; 
    font-weight: 700; 
    text-transform: uppercase; 
}

.main-nav { 
    display: none; 
    align-items: center; 
    gap: 1.5rem; 
}

.main-nav a { 
    color: var(--text-muted); 
    font-size: 0.875rem; 
    font-weight: 600; 
    transition: color 0.2s; 
    text-transform: uppercase;
}

.main-nav a:hover { color: var(--color-primary); }

.quick-search { 
    display: none; 
    min-width: 10rem; 
    max-width: 16rem; 
    height: 2.5rem; 
    background-color: var(--bg-card); 
    border: 1px solid var(--border-color); 
    border-radius: 0.5rem; 
    padding: 0 0.75rem; 
}

.quick-search input { 
    background: transparent; 
    border: none; 
    color: var(--text-main); 
    width: 100%; 
    margin-left: 0.5rem; 
    font-size: 0.875rem; 
}

/* User Menu & Dropdown */
.user-menu { position: relative; }

.avatar { 
    width: 2.5rem; 
    height: 2.5rem; 
    border-radius: 50%; 
    background-size: cover; 
    background-position: center; 
    border: 2px solid var(--border-color); 
    transition: border-color 0.2s; 
    cursor: pointer;
}

.user-menu:hover .avatar { border-color: var(--color-primary); }

.dropdown-content { 
    display: none; 
    position: absolute; 
    right: 0; 
    top: 100%; 
    margin-top: 0.5rem; 
    width: 14rem; 
    background-color: var(--bg-card); 
    border: 1px solid var(--border-color); 
    border-radius: 0.75rem; 
    overflow: hidden; 
    z-index: 60; 
}

.user-menu:focus-within .dropdown-content, 
.user-menu:hover .dropdown-content { display: block; }

.dropdown-header { 
    padding: 0.75rem 1rem; 
    border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.1); 
}

.dropdown-header p:first-child { 
    font-size: 0.75rem; 
    font-weight: 600; 
    color: var(--color-primary); 
    text-transform: uppercase; 
}

.dropdown-header p:last-child { 
    font-size: 0.875rem; 
    font-weight: 500; 
}

.dropdown-links a { 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
    padding: 0.625rem 1rem; 
    font-size: 0.875rem; 
    color: #cbd5e1; 
}

.dropdown-links a:hover { 
    background-color: rgba(var(--color-primary-rgb), 0.1); 
    color: var(--color-primary); 
}

/* Mobile Menu */
.mobile-menu-btn { 
    display: flex; 
    color: var(--text-main); 
    padding: 0.5rem; 
}

.mobile-menu { 
    display: none;
    position: absolute; 
    top: 100%; 
    left: 0; 
    width: 100%; 
    background-color: rgba(10, 5, 10, 0.95); 
    backdrop-filter: blur(12px); 
    border-bottom: 1px solid var(--border-color); 
    padding: 1.5rem; 
    z-index: 40; 
}

.mobile-nav { 
    display: flex; 
    flex-direction: column; 
    gap: 0.5rem; 
    margin-bottom: 1.5rem; 
}

.mobile-nav a { 
    color: var(--text-main); 
    font-size: 1.125rem; 
    font-weight: 500; 
    padding: 0.75rem 1rem;
    border-radius: 0.5rem; 
}

.mobile-nav a:hover { 
    background-color: rgba(var(--color-primary-rgb), 0.1); 
    color: var(--color-primary); 
}

/* ==========================================================================
   3. HERO SECTION & SEARCH BAR
   ========================================================================== */
.hero { 
    padding: 3.5rem 1rem 2rem; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
}

.hero-title { 
    text-align: center; 
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600; 
    color: #ffffff;
    margin-bottom: 0.75rem; 
    letter-spacing: -0.02em;
}

.hero-title span { color: var(--color-primary); }

.hero-desc { 
    text-align: center; 
    color: var(--text-muted); 
    font-size: 1rem; 
    max-width: 38rem; 
    line-height: 1.5;
    margin: 0 auto 2rem; 
}

.main-search-wrapper { 
    width: 100%; 
    max-width: 48rem; 
    padding: 0 1rem; 
    margin-bottom: 1.75rem; 
}

.main-search { 
    display: flex; 
    align-items: center; 
    height: 3.75rem; 
    background-color: #120712; 
    border: 1px solid rgba(var(--color-primary-rgb), 0.3); 
    border-radius: 0.875rem; 
    padding: 0.375rem 0.375rem 0.375rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.main-search form{
    display: contents;
}

.main-search:focus-within { 
    border-color: var(--color-primary); 
    box-shadow: 0 0 15px rgba(var(--color-primary-rgb), 0.2);
}

.main-search .icon { 
    color: var(--color-primary); 
    font-size: 1.5rem; 
    margin-right: 0.5rem;
}

.main-search input { 
    flex: 1; 
    min-width: 0; 
    background: transparent; 
    border: none; 
    color: var(--text-main); 
    font-size: 0.95rem; 
}

.main-search input::placeholder { color: #64748b; }

.main-search .btn-search,
.main-search button { 
    background: linear-gradient(135deg, #a200a2, #700070);
    color: #ffffff; 
    padding: 0 1.25rem; 
    height: 100%;
    border-radius: 0.625rem; 
    font-weight: 500; 
    font-size: 14px; 
    letter-spacing: 0.05em;
    text-transform: uppercase; 
    white-space: nowrap; 
    transition: filter 0.2s, transform 0.1s;
}

.main-search .btn-search:hover,
.main-search button:hover { filter: brightness(1.2); }

.tags-container { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 0.5rem; 
    max-width: 52rem; 
    padding: 0 1rem; 
    margin-bottom: 3.5rem;
}

.tag { 
    display: inline-flex; 
    align-items: center; 
    height: 2.125rem; 
    padding: 0 1rem; 
    background-color: #170b17; 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    border-radius: 9999px; 
    cursor: pointer; 
    transition: all 0.2s ease;
}

.tag span.text { 
    color: #cbd5e1; 
    font-size: 15px; 
    font-weight: 500;
}

.tag:hover { 
    background-color: var(--color-primary); 
    border-color: var(--color-primary);
}

.tag:hover span.text { color: #ffffff; }

/* ==========================================================================
   4. GALLERY & CARDS
   ========================================================================== */
.gallery-section { 
    width: 100%; 
    padding-bottom: 3rem; 
}

.section-header { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    margin-bottom: 1.5rem; 
}

.section-title { 
    display: flex; 
    align-items: center; 
    gap: 0.625rem; 
    font-size: 19px; 
    font-weight: 600; 
    color: #ffffff;
    text-transform: uppercase;
}

.section-title span {
    color: var(--color-primary);
    font-size: 1.35rem;
}

.view-all { 
    color: var(--color-primary); 
    font-size: 14px; 
    font-weight: 500; 
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: opacity 0.2s;
    text-transform: uppercase;
    display: none;
}

.view-all:hover { 
    opacity: 0.8;
    text-decoration: none; 
}

.grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 1rem; 
}

.card { 
    aspect-ratio: 3/4; 
    background-color: var(--bg-card); 
    border-radius: 1rem; 
    overflow: hidden; 
    position: relative; 
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.card a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
}

.card:hover img { transform: scale(1.05); }

/* Card Badges & Overlay */
.card-duration-badge {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    z-index: 10;
}

.card-duration-badge .icon { font-size: 0.875rem; }

.card-overlay { 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 40%); 
    display: flex; 
    flex-direction: column; 
    justify-content: flex-end; 
    padding: 0.625rem; 
    pointer-events: none; 
    opacity: 1;
}

.card-stats-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.card-play-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8); /* Căn giữa và thu nhỏ nhẹ mặc định */
    width: 3.25rem;
    height: 3.25rem;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0; /* Mặc định ẩn nút Play */
    pointer-events: none;
    z-index: 15;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Icon tam giác Play bên trong */
.card-play-hover .play-icon {
    font-size: 2rem;
    margin-left: 2px; /* Căn chỉnh tâm biểu tượng tam giác */
    color: var(--color-primary, #f20df2); /* Màu hồng/tím thương hiệu */
}

/* Khi di chuột (Hover) vào Card: Hiện nút Play + phóng to nhẹ */
.card:hover .card-play-hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.stat-pill-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
}

.stat-badge .icon {
    font-size: 0.875rem;
    color: #ffffff;
}

.stat-pill-group.ml-auto { margin-left: auto; }

/* ==========================================================================
   5. DETAIL PAGE LAYOUT
   ========================================================================== */
.detail-layout { 
    display: flex; 
    flex-direction: column; 
    flex: 1; 
    width: 100%;
    margin: 0 auto;
}

.detail-sidebar { display: none !important; }

.detail-main { 
    flex: 1; 
    background-color: transparent; 
    order: 1; 
    padding: 2rem 0; 
}

.detail-main-inner { 
    max-width: 80rem; 
    margin: 0 auto; 
}

.media-wrapper {
    display: flex;
    justify-content: center; 
    margin-bottom: 2rem;
    max-width: 1000px; 
    margin: 0 auto;
}

.media-wrapper img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Action Bar Pill Buttons */
.action-bar { 
    display: none; 
    margin-top: 1.5rem; 
    padding-bottom: 1.5rem; 
    border-bottom: 1px solid var(--border-color); 
    align-items: center; 
    justify-content: space-between; 
}

.action-buttons { 
    display: flex; 
    align-items: center;
    gap: 0.625rem; 
    flex-wrap: wrap;
}

.btn-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #27272a; 
    color: #f4f4f5;
    border-radius: 9999px; 
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.btn-pill:hover {
    background-color: #3f3f46;
    color: #ffffff;
}

.btn-pill.icon-only {
    padding: 0.5rem;
    border-radius: 50%; 
    justify-content: center;
}

.btn-group-pill {
    display: flex;
    align-items: center;
    background-color: #27272a;
    border-radius: 9999px;
    padding: 0.25rem 0.375rem;
}

.btn-pill-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    color: #f4f4f5;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    transition: background-color 0.2s;
}

.btn-pill-item:hover { background-color: #3f3f46; }
.btn-pill-item.icon-only { padding: 0.25rem 0.5rem; }

.pill-divider {
    width: 1px;
    height: 1.125rem;
    background-color: #52525b; 
    margin: 0 0.125rem;
}

.btn-pill .icon, 
.btn-pill-item .icon { font-size: 1.25rem; }

.btn-text { 
    color: var(--text-muted); 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    font-size: 0.875rem; 
}

/* ==========================================================================
   6. POST METADATA & TAGS
   ========================================================================== */
.post-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
    padding-bottom: 2rem;
    /* border-bottom: 1px solid var(--border-color); */
}

.meta-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-group.full-width { width: 100%; }

.meta-label {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-main);
}

.meta-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 10px; 
    font-size: 14px;
    font-weight: 400;
    color: #cbd5e1;
    transition: all 0.2s;
    background-color: var(--bg-card);
    border: 1px solid rgba(var(--color-primary-rgb), 0.1);
}

.meta-tag:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.meta-tag.artist { border-color: #4ade80; color: #4ade80; }
.meta-tag.character { border-color: #fb923c; color: #fb923c; }
.meta-tag.general { border-color: #60a5fa; color: #60a5fa; }

.meta-tag.artist:hover, 
.meta-tag.character:hover, 
.meta-tag.general:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.tag-list.inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Post Stats Info */
.post-stats-info {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.stats-views-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #e2e8f0;
}

.stats-views-date .dot-separator { color: #64748b; }
.stats-views-date .published-time { color: var(--text-muted); }
.stats-exact-date { font-size: 0.8125rem; color: #64748b; }

.stats-source-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.15rem;
}

.stats-source-link .link-icon {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.stats-source-link a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.stats-source-link a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* ==========================================================================
   7. CONTENT GRID & COMMENTS
   ========================================================================== */
.content-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 2rem; 
}

.info-title { 
    font-size: 18px; 
    font-weight: 600; 
    margin-bottom: 1rem; 
    color: var(--text-main);
    text-transform: uppercase;
}

.info-desc { display: none !important; }

.comment-box { 
    background-color: rgba(var(--color-primary-rgb), 0.05); 
    border: 1px solid var(--border-color); 
    border-radius: 0.75rem; 
    padding: 1rem; 
    margin-top: 1.5rem;
}

.comment-box textarea { 
    width: 100%; 
    background: transparent; 
    border: none; 
    color: #e2e8f0; 
    resize: none; 
    height: 5rem; 
}

.comment-actions { 
    display: flex; 
    justify-content: flex-end; 
    padding-top: 0.5rem; 
    border-top: 1px solid rgba(var(--color-primary-rgb), 0.1); 
}

.btn-small { 
    padding: 0.5rem 1.25rem; 
    background-color: var(--color-primary); 
    color: #fff; 
    border-radius: 0.5rem; 
    font-size: 0.875rem; 
    font-weight: 700; 
}

.source-box { 
    background-color: rgba(var(--color-primary-rgb), 0.05); 
    border: 1px solid var(--border-color); 
    border-radius: 0.75rem; 
    padding: 1.5rem; 
    display: none; 
}

.source-box h4 { 
    font-size: 0.75rem; 
    font-weight: 700; 
    color: var(--color-primary); 
    text-transform: uppercase; 
    margin-bottom: 1rem; 
}

.source-list a { 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
    color: #cbd5e1; 
    font-size: 0.875rem; 
    margin-bottom: 0.75rem; 
    word-break: break-all;
}

.source-list a:hover { color: var(--color-primary); }

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
/* ==========================================================================
   SIMPLE PURPLE FOOTER (MATCHING SCREENSHOT 8)
   ========================================================================== */
.simple-footer {
    width: 100%;
    margin-top: auto;
    background-color: #a200a2; /* Màu tím đậm đặc trưng theo ảnh */
    padding: 1.25rem 0;
}

.simple-footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Căn lề trái theo ảnh mẫu */
    gap: 0.5rem;
}

.disclaimer-text {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
}

.footer-simple-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: #d8b4fe; /* Màu tím nhạt cho link */
}

.footer-simple-links a {
    color: #d8b4fe;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
}

.footer-simple-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-simple-links .sep {
    color: #a855f7; /* Dấu gạch ngang phân cách */
    user-select: none;
}

/* ==========================================================================
   9. MEDIA QUERIES (RESPONSIVE)
   ========================================================================== */
@media (min-width: 768px) {
    .site-header { 
        padding-left: max(2.5rem, calc(50% - 600px + 1rem));
        padding-right: max(2.5rem, calc(50% - 600px + 1rem));
    }

    .main-nav { display: flex; }
    .mobile-menu-btn, .mobile-menu { display: none !important; }

    .hero { padding: 5rem 1rem 3rem; }

    .grid { grid-template-columns: repeat(3, 1fr); }

    .detail-main { 
        padding: 4rem 0; 
        overflow-y: visible; 
    }

    .action-bar { display: flex; }
    .source-box { display: block; }

    .footer-content { 
        flex-direction: row; 
        justify-content: space-between; 
    }
}

@media (min-width: 1024px) {
    .header-left { gap: 2rem; }
    .quick-search { display: flex; align-items: center; }
    .grid { grid-template-columns: repeat(4, 1fr); }
    .content-grid { grid-template-columns: 2fr 1fr; gap: 3rem; }
}

@media (min-width: 1280px) {
    .grid { grid-template-columns: repeat(5, 1fr); }
}

/* ==========================================================================
   MEDIA WRAPPER & RESPONSIVE VIDEO PLAYER
   ========================================================================== */
.media-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1.5rem;
}

/* Khối bao ngoài cho Video Player */
.video-container {
    position: relative;
    width: 100%;
    max-width: 1000px; /* Bằng kích thước tối đa của khung trang */
    background-color: #000000;
    border-radius: 0.875rem; /* Bo góc trùng khớp với giao diện */
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Thẻ Video chính */
.media-video {
    width: 100%;
    height: auto;
    max-height: 80vh; /* Giới hạn chiều cao để không bị tràn màn hình Desktop */
    display: block;
    object-fit: contain; /* Giữ nguyên tỷ lệ khung hình video không bị méo */
    outline: none;
}

/* Tùy chỉnh màu sắc nút bấm điều khiển của Video trên các trình duyệt Webkit (Chrome, Safari, Edge) */
.media-video::-webkit-media-controls-panel {
    background: linear-gradient(to top, rgba(10, 5, 10, 0.9), rgba(10, 5, 10, 0.4));
}

/* Tùy chỉnh hỗ trợ Responsive riêng cho Mobile */
@media (max-width: 767px) {
    .video-container {
        border-radius: 0.5rem; /* Bo góc nhỏ hơn một chút trên màn hình điện thoại */
    }
    
    .media-video {
        max-height: 65vh; /* Tối ưu góc nhìn đứng trên smartphone */
    }
    .media-wrapper img {
        max-height: 70vh;         /* Thu nhỏ chiều cao vừa vặn hơn trên màn hình đứng của điện thoại */
    }
}

.blog-pager{
    width: 100%;
    float: left;
    text-align: right;
    margin-top: 30px;
}
.blog-pager ul{
    list-style: none;
}
.blog-pager ul li{
    display: inline-block;
    margin: 5px;
}
.blog-pager ul li.disabled{
    display: none;
}
.blog-pager ul li:last-child{
    margin-right: 0;
}
.blog-pager ul li a{
    border: 2px solid #a200a2;
    padding: 5px 10px;
    border-radius: 5px;
}
.blog-pager ul li a:hover{
    color: #a200a2;
}
.blog-pager ul li.active a{
    background: #a200a2;
}

.onepage h1{
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.onepage h3{
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    margin: 10px 0;
}
.onepage p{
    margin-bottom: 10px;
    line-height: 1.5;
}
.onepage ul{
    margin-left: 25px;
}
.onepage ul li{
    margin-bottom: 10px;
}