/* ================================================
   TanhKhong V2 - Main Stylesheet
   Buddhist/Spiritual Theme with dark red & gold
   ================================================ */

@font-face {
    font-family: 'hottro';
    src: url('../fonts/hottro.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'UTM Thuphap';
    src: url('../fonts/UTM_thuphap.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ---- CSS Variables ---- */
:root {
    --bg-dark: #0d0505;
    --bg-primary: #1a0a0a;
    --bg-secondary: #2d1515;
    --bg-card: rgba(45, 21, 21, 0.85);
    --bg-glass: rgba(45, 21, 21, 0.6);
    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --gold-dark: #a08030;
    --red-primary: #8b0000;
    --red-light: #b22222;
    --red-accent: #dc143c;
    --text-primary: #f5e6d3;
    --text-secondary: #c4a882;
    --text-muted: #8a7560;
    --border-gold: rgba(201, 168, 76, 0.3);
    --border-red: rgba(139, 0, 0, 0.4);
    --shadow-gold: 0 0 20px rgba(201, 168, 76, 0.15);
    --shadow-red: 0 0 30px rgba(139, 0, 0, 0.2);
    --gradient-gold: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    --gradient-red: linear-gradient(135deg, #3d0000, var(--red-primary), #3d0000);
    --gradient-bg: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%);
    --font-body: 'Noto Serif', 'Times New Roman', serif;
    --font-heading: 'Inter', sans-serif;
    --font-han: 'UTM Thu Phap', serif;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --container-max: 1200px;
}

/* ---- Font Face ---- */
@font-face {
    font-family: 'UTM Thu Phap';
    src: url('../fonts/UTM_thuphap.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--gradient-bg);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139, 0, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(139, 0, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--gold);
    line-height: 1.3;
}

/* ---- Loading Overlay ---- */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 5, 5, 0.92);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-content {
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.loading-image {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.4));
}

.shake-animation {
    animation: shake 0.6s ease-in-out infinite;
}

.loading-text {
    margin-top: 24px;
    font-size: 1.3rem;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 2px;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {

    0%,
    20% {
        content: '';
    }

    40% {
        content: '.';
    }

    60% {
        content: '..';
    }

    80%,
    100% {
        content: '...';
    }
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(-8deg);
    }

    25% {
        transform: rotate(8deg);
    }

    50% {
        transform: rotate(-6deg);
    }

    75% {
        transform: rotate(6deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
    }
}

/* ---- Flash Messages ---- */
.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 44px 14px 20px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    animation: slideDown 0.4s ease;
    font-size: 0.95rem;
    max-width: 400px;
    border-left: 4px solid;
}

.flash-success {
    background: rgba(34, 139, 34, 0.15);
    border-color: #228b22;
    color: #90ee90;
}

.flash-error {
    background: rgba(220, 20, 60, 0.15);
    border-color: var(--red-accent);
    color: #ff9999;
}

.flash-info {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
    color: var(--gold-light);
}

.flash-close {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: inherit;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.7;
}

.flash-close:hover {
    opacity: 1;
}

/* ---- Header ---- */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(13, 5, 5, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
    z-index: 1000;
    padding: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.3));
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.5));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 4px;
}

.nav-list a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* User dropdown */
.user-dropdown {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    transition: var(--transition);
}

.user-btn:hover {
    background: rgba(201, 168, 76, 0.2);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    display: none;
    animation: slideDown 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.user-dropdown:hover .dropdown-menu,
.user-dropdown.active .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
    color: var(--bg-dark);
}

.btn-secondary {
    background: var(--gradient-red);
    color: var(--text-primary);
    border: 1px solid var(--border-red);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.35);
    color: var(--text-primary);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-light);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ---- Hero / Banner Section ---- */
.hero-section {
    position: relative;
    padding: 80px 0 60px;
    text-align: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, rgba(139, 0, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-banner {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-banner img {
    width: 100%;
    border-radius: var(--radius);
    filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.2));
}

.hero-title {
    font-family: var(--font-han);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 16px;
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

/* ---- Notes Section ---- */
.notes-section {
    padding: 30px 0;
}

.notes-box {
    background: var(--bg-glass);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 24px 30px;
    backdrop-filter: blur(10px);
    max-width: 700px;
    margin: 0 auto;
}

.notes-box h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notes-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.notes-box li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.notes-box li::before {
    content: '📿';
    flex-shrink: 0;
}

/* ---- Feature Cards ---- */
.features-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 0.95rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.section-title {
    font-family: 'hottro', var(--font-heading), serif;
    font-size: 2.2rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

.feature-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.3));
    transition: var(--transition);
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(201, 168, 76, 0.5));
}

.feature-icon i {
    font-size: 3rem;
    color: var(--gold);
    filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.3));
}

.feature-card h3 {
    font-family: 'hottro', var(--font-heading), serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    color: var(--gold);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.feature-card .btn {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

/* ---- Fortune Page ---- */
.fortune-section {
    padding: 60px 0;
}

.fortune-modes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.fortune-mode {
    background: var(--bg-glass);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 50px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.fortune-mode:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.fortune-mode .mode-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
}

.fortune-mode .mode-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.3));
}

.fortune-mode h3 {
    font-family: 'hottro', var(--font-heading), serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.fortune-mode p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.92rem;
}

.fortune-input-group {
    display: flex;
    gap: 10px;
    max-width: 280px;
    margin: 0 auto;
}

.fortune-input-group input {
    flex: 1;
    min-width: 0;
}

/* ---- Result Page ---- */
.result-section {
    padding: 60px 0;
    text-align: center;
}

.result-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-glass);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease;
    box-shadow: var(--shadow-gold);
}

.result-han {
    font-family: 'Noto Serif SC', var(--font-han);
    font-size: 6rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 60px rgba(201, 168, 76, 0.3);
    animation: pulseGlow 3s ease-in-out infinite;
    display: inline-block;
    padding: 20px;
}

.result-number {
    display: inline-block;
    background: var(--gradient-red);
    color: var(--text-primary);
    padding: 6px 20px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid var(--border-red);
}

.result-category {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.result-category.cat-thuong {
    background: rgba(34, 139, 34, 0.2);
    color: #90ee90;
    border: 1px solid rgba(34, 139, 34, 0.4);
}

.result-category.cat-trung {
    background: rgba(201, 168, 76, 0.2);
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
}

.result-category.cat-ha {
    background: rgba(220, 20, 60, 0.2);
    color: #ff9999;
    border: 1px solid rgba(220, 20, 60, 0.4);
}

.result-name {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 24px;
    font-family: 'hottro', var(--font-heading), serif;
}

.result-image {
    margin: 20px auto;
    max-width: 500px;
}

.result-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: var(--radius);
    border: 2px solid var(--border-gold);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
}

.result-poem {
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--gold);
    padding: 24px 30px;
    margin: 24px 0;
    text-align: left;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    line-height: 2;
    color: var(--text-secondary);
    white-space: pre-line;
}

.result-meaning {
    padding: 20px 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    border-top: 1px solid var(--border-gold);
    margin-top: 20px;
}

.result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ---- Forms ---- */
.form-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.form-card {
    width: 100%;
    max-width: 450px;
    background: var(--bg-glass);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-card h2 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.form-card .form-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a84c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

select.form-control option {
    background: #1a0f0f;
    color: #e8dcc8;
    padding: 8px 12px;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ---- Dashboard ---- */
.dashboard-section {
    padding: 40px 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.dashboard-header h2 {
    font-size: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 24px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-family: var(--font-heading);
}

/* ---- Tables ---- */
.table-container {
    overflow-x: auto;
    background: var(--bg-glass);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    font-size: 0.9rem;
}

.data-table th {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tr:hover td {
    background: rgba(201, 168, 76, 0.05);
}

.data-table td {
    color: var(--text-secondary);
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.badge-thuong {
    background: rgba(34, 139, 34, 0.2);
    color: #90ee90;
}

.badge-trung {
    background: rgba(201, 168, 76, 0.2);
    color: var(--gold-light);
}

.badge-ha {
    background: rgba(220, 20, 60, 0.2);
    color: #ff9999;
}

/* ---- Pagination ---- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: var(--bg-glass);
    border: 1px solid var(--border-gold);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

/* ---- Contact Page ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 40px;
    backdrop-filter: blur(10px);
    text-align: left;
    /* Thêm dòng này để ép các chữ căn trái tắp lề */
}

.contact-info-card h3 {
    margin-bottom: 24px;
    font-size: 1.2rem;
    text-align: center;
    /* Thêm dòng này để giữ nguyên tiêu đề "Thông Tin" ở giữa */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.contact-item i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

/* ---- Documents Page ---- */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.doc-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.doc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.doc-card-image {
    height: 200px;
    overflow: hidden;
}

.doc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.doc-card:hover .doc-card-image img {
    transform: scale(1.05);
}

.doc-card-body {
    padding: 20px;
}

.doc-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.doc-card-body p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.doc-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---- Footer ---- */
.site-footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border-gold);
    padding: 50px 0 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo img {
    height: 45px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.3));
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 0.95rem;
    font-family: var(--font-heading);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-note {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-note i {
    color: var(--gold);
    margin-right: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(13, 5, 5, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .nav-list a {
        padding: 14px 18px;
        font-size: 1rem;
    }

    .nav-auth {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--border-gold);
        width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .fortune-modes {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .result-han {
        font-size: 4rem;
    }

    .result-card {
        padding: 30px 20px;
    }

    .form-card {
        padding: 30px 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .header-inner {
        height: 60px;
    }

    .logo img {
        height: 40px;
    }

    .main-nav {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .fortune-mode {
        padding: 30px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---- Utility ---- */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.text-muted {
    color: var(--text-muted);
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.hidden {
    display: none !important;
}

/* ---- Lightbox ---- */
.result-image img {
    cursor: zoom-in;
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 10000;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-align: center;
    max-width: 80%;
}

/* ================================================
   Blog Styles
   ================================================ */

/* Blog Listing Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.15);
    border-color: var(--gold);
}

.blog-card-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-thumb img {
    transform: scale(1.05);
}

.blog-card-no-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.3;
}

.blog-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.15);
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
    align-self: flex-start;
}

.blog-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.blog-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 12px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.blog-card-meta i {
    margin-right: 4px;
    color: var(--gold);
    opacity: 0.6;
}

/* Single Post Page */
.blog-post-page {
    padding: 40px 0 60px;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.blog-breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-breadcrumb i {
    font-size: 0.6rem;
    opacity: 0.5;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.blog-post-hero {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.blog-post-hero img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

.blog-post-header {
    margin-bottom: 30px;
}

.blog-post-cat {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.15);
    padding: 4px 14px;
    border-radius: 14px;
    margin-bottom: 14px;
    text-decoration: none;
}

.blog-post-cat:hover {
    background: rgba(201, 168, 76, 0.25);
}

.blog-post-header h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.blog-post-meta i {
    color: var(--gold);
    margin-right: 6px;
}

.blog-post-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.blog-post-content p {
    margin-bottom: 1em;
}

.blog-post-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--border-gold);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.blog-post-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.blog-post-share a:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* Blog Sidebar */
.blog-sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.blog-sidebar-card h4 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.blog-sidebar-card h4 i {
    margin-right: 6px;
}

.related-post-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: var(--text-primary);
    transition: opacity 0.2s;
}

.related-post-item:hover {
    opacity: 0.8;
}

.related-post-item:last-child {
    border-bottom: none;
}

.related-post-item img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.related-post-item strong {
    display: block;
    font-size: 0.85rem;
    line-height: 1.3;
    margin-bottom: 4px;
}

.related-post-item small {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Blog Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-post-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-header h1 {
        font-size: 1.5rem;
    }
}

/* Homepage Features Styles - Premium Gold 3D Look */
.features-section {
    padding: 60px 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(26, 10, 10, 0.85);
    /* Deep dark red/brown */
    border: 1px solid #5a3a2a;
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 76, 0.15);
    /* Gold glow */
    border-color: #c9a84c;
}

.feature-icon {
    width: 100px;
    height: 100px;
    /* Sphere effect: Dark Red w/ Specular Highlight */
    background: radial-gradient(circle at 35% 35%, #7a1a1a, #3a0a0a);
    border: 3px solid #c9a84c;
    /* Gold Border */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.6),
        /* Drop shadow */
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        /* Inner depth */
        0 0 15px rgba(255, 215, 0, 0.2);
    /* Outer Glow */
    position: relative;
    z-index: 1;
}

.feature-icon::after {
    /* Inner Ring for detail */
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

.feature-icon i,
.feature-icon img {
    font-size: 3.5rem;
    /* Base size */
    color: #ffd700;
    /* Metallic Gold Text Effect */
    background: linear-gradient(to bottom, #fff8cc 0%, #ffd700 50%, #c9a84c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
    line-height: normal;
    /* Fix vertical align */
    display: flex;
    /* Centers flex items */
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    /* Fill container */
}

/* Optical Balance Tuning */
.feature-icon .fa-scroll,
.feature-icon .fa-sort-numeric-up-alt,
.feature-icon .fa-sort-numeric-down {
    font-size: 4.2rem !important;
    /* Scale up thin/tall icons */
}

/* Fallback for img if present */
.feature-icon img {
    -webkit-text-fill-color: initial;
    background: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    width: auto;
    height: auto;
    max-width: 100%;
}

/* Image-based Icon Styles (No Circle Container) */
.feature-icon.feature-icon-image {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    margin-bottom: 15px;
}

.feature-icon.feature-icon-image::after {
    content: none !important;
    display: none !important;
}

.feature-icon.feature-icon-image img {
    max-width: 180px;
    /* Larger size provided by user request */
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    /* Soft shadow for depth */
}

.feature-card h3 {
    font-family: 'hottro', serif;
    color: #ffd700;
    /* Bright Gold */
    font-size: 1.6rem;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.feature-card p {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.feature-card .btn {
    margin-top: auto;
    width: auto;
    padding: 8px 25px;
}

/* Print Styles - Certificate Layout */
@media print {
    @page {
        margin: 0.5cm;
        size: A4 portrait;
    }

    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        color-adjust: exact !important;
        box-sizing: border-box;
    }

    /* Reset global page background to white */
    body,
    html {
        background-color: #fff !important;
        background-image: none !important;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        visibility: hidden;
        font-family: 'Times New Roman', serif !important;
    }

    /* Show only result section wrapper */
    .result-section {
        visibility: visible;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        min-height: 100vh;
        margin: 0 !important;
        padding: 10px !important;
        background: transparent !important;
        display: block !important;
    }

    /* Main Certificate Card */
    .result-card {
        visibility: visible;
        position: relative;
        width: 100% !important;
        max-width: 19cm !important;
        /* A4 width */
        margin: 0 auto !important;
        padding: 30px 40px !important;

        /* White Background Style */
        background-color: #fff !important;
        color: #333 !important;

        /* Double Border Effect */
        border: 1px solid #ddd !important;
        outline: 1px solid #ddd !important;
        outline-offset: -6px !important;

        box-shadow: none !important;
        overflow: visible !important;
    }

    /* Hide Actions & Navigation */
    .result-actions,
    .site-header,
    .site-footer,
    .admin-bar,
    .scrollToTop,
    .fb-customerchat,
    .zalo-chat-widget {
        display: none !important;
    }

    /* --- Header Layout --- */

    /* "Quẻ số XX" - Top Left Red Title */
    .result-number {
        visibility: visible;
        font-size: 18pt !important;
        font-weight: bold;
        color: #b22222 !important;
        /* Dark Red */
        background: transparent !important;
        padding: 0 !important;
        margin: 0 0 5px 0 !important;
        display: block;
        text-align: left;
        border-bottom: 2px solid #b22222 !important;
        padding-bottom: 5px !important;
        width: 100%;
    }

    /* Category: "Thượng Thượng" - Inline with Number */
    .result-category {
        visibility: visible;
        display: inline-block;
        font-size: 12pt !important;
        font-weight: normal;
        margin-left: 10px;
        padding: 0 !important;
        border: none !important;
        color: #333 !important;
        /* Dark text */
        background: transparent !important;
        text-transform: none !important;
        float: right;
    }

    /* Name: Calligraphy Middle */
    .result-name {
        visibility: visible;
        font-size: 36pt !important;
        color: #000 !important;
        margin: 20px 0 10px !important;
        text-align: center;
        font-family: 'hottro', serif !important;
        line-height: 1.2;
        clear: both;
    }

    /* Han Character: Large Red Right */
    .result-han {
        visibility: visible;
        position: absolute;
        top: 80px;
        right: 50px;
        font-size: 56pt !important;
        color: #b22222 !important;
        /* Red */
        opacity: 0.8;
        font-family: 'hottro', serif !important;
        text-shadow: none !important;
        z-index: 10;
    }

    /* --- Content Layout --- */

    /* Poem: Red Left Border */
    .result-poem {
        visibility: visible;
        font-size: 15pt !important;
        line-height: 1.6 !important;
        color: #333 !important;
        background: transparent !important;

        border: none !important;
        border-left: 5px solid #b22222 !important;
        /* Thick Red Line */

        padding: 5px 0 5px 25px !important;
        margin: 30px 0 30px 40px !important;
        /* Indent */
        text-align: left;
    }

    /* Image: Center boxed */
    .result-image {
        visibility: visible;
        display: block !important;
        margin: 20px auto !important;
        text-align: center;
        background: #f9f9f9 !important;
        padding: 10px !important;
        border: 1px solid #eee !important;
        max-width: 90% !important;
    }

    .result-image img {
        visibility: visible;
        max-height: 320px !important;
        width: auto !important;
        max-width: 100% !important;
        object-fit: contain;
        border: none !important;
        border-radius: 0 !important;
    }

    /* Meaning: Bottom Box */
    .result-meaning {
        visibility: visible;
        font-size: 13pt !important;
        line-height: 1.5 !important;
        color: #444 !important;
        text-align: justify;
        text-align-last: center;

        margin-top: 40px !important;
        padding: 15px 20px !important;

        background-color: #faf8f5 !important;
        /* Light cream bg */
        border: 1px solid #e0d8c8 !important;
        border-radius: 4px;
        page-break-inside: avoid;
    }

    .result-meaning strong {
        visibility: visible;
        color: #b22222 !important;
        /* Red Title */
        font-size: 11pt;
        display: block;
        margin-bottom: 8px;
        text-align: center;
        text-transform: uppercase;
        border-bottom: none !important;
    }
}