/* ==========================================
   ساختار هدر
========================================== */
.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* برندینگ و لوگو */
.site-branding .brand-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.site-branding .brand-accent {
    color: var(--accent);
}

/* منوی دسکتاپ */
.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    padding: 8px 4px;
    position: relative;
    transition: var(--transition);
}

.main-navigation a:hover {
    color: var(--primary);
}

/* زیرمنوها در هدر */
.main-navigation ul li {
    position: relative;
}

.main-navigation ul ul {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--surface);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    padding: 10px 0;
    display: none;
    flex-direction: column;
    gap: 0;
    z-index: 200;
}

.main-navigation ul li:hover > ul {
    display: flex;
}

.main-navigation ul ul a {
    padding: 10px 16px;
    display: block;
    font-size: 14px;
}

.main-navigation ul ul a:hover {
    background: var(--primary-light);
}

/* بخش اکشن‌ها (سرچ و دکمه ورود) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-search form {
    position: relative;
    display: flex;
    align-items: center;
}

.header-search input {
    background: var(--background);
    border: 1px solid var(--border);
    padding: 9px 36px 9px 16px;
    border-radius: var(--radius-full);
    font-size: 13.5px;
    width: 210px;
    outline: none;
    transition: var(--transition);
}

.header-search input:focus {
    border-color: var(--primary);
    width: 250px;
    background: var(--surface);
}

.header-search button {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
}

.btn-user {
    background: var(--primary-gradient);
    color: var(--text-white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(121, 82, 179, 0.35);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-user:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(121, 82, 179, 0.45);
}

/* دکمه منوی موبایل */
.mobile-toggle-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.mobile-toggle-btn span {
    width: 24px;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 3px;
}

/* دراور منوی موبایل */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-drawer-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--surface);
    z-index: 999;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    padding: 20px;
}

.mobile-drawer.is-open {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.mobile-drawer-title {
    font-weight: 700;
    color: var(--primary);
}

.mobile-drawer-close {
    background: none;
    border: none;
    font-size: 26px;
    color: var(--text-muted);
    cursor: pointer;
}

.mobile-drawer-search {
    margin: 16px 0;
}

.mobile-drawer-search input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.mobile-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-navigation li a {
    display: block;
    padding: 12px 6px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    color: var(--text);
}

.mobile-drawer-footer {
    margin-top: auto;
    padding-top: 15px;
}

.btn-primary-block {
    display: block;
    text-align: center;
    background: var(--primary-gradient);
    color: #fff;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

/* ==========================================
   ساختار فوتر
========================================== */
.site-footer {
    background: var(--primary-deep);
    color: var(--text-white);
    margin-top: 70px;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-widget .widget-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.about-desc {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.site-stats-badge {
    margin-top: 15px;
    font-size: 13px;
    color: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-right: 6px;
}

.trust-text {
    font-size: 13.5px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge-item {
    background: rgba(255, 255, 255, 0.07);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    border: 1px solid var(--border-dark);
}

.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    background: #140824;
    border-top: 1px solid var(--border-dark);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-light);
}
/* ==========================================
   صفحه اصلی
========================================== */
.home-hero {
    padding: 60px 0;
    background: radial-gradient(circle at top right, rgba(121, 82, 179, 0.15), transparent 35%),
                linear-gradient(180deg, #fff, #f7f4fb);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--text);
}

.hero-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.9;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    padding: 12px 22px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-hero-primary {
    background: var(--primary-gradient);
    color: #fff;
}

.btn-hero-secondary {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
}

.hero-card,
.cta-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 26px;
}

.home-section {
    padding: 44px 0;
}

.home-section-alt {
    background: #fbf9fe;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    gap: 15px;
}

.section-title {
    font-size: 24px;
    color: var(--text);
}

.section-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.novel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.novel-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.novel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.novel-card-thumb img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.novel-thumb-placeholder {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 800;
}

.novel-card-body {
    padding: 16px;
}

.novel-card-title {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text);
}

.novel-card-excerpt {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.8;
}

.author-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.author-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 22px;
    border-radius: var(--radius-lg);
    text-align: center;
    font-weight: 800;
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.cta-box {
    text-align: center;
}

.cta-box h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 20px;
}
/* ==========================================
   صفحه تک رمان
========================================== */
.novel-single {
    padding: 50px 0;
}

.novel-single-inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    align-items: start;
}

.novel-cover img,
.novel-cover-placeholder {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: block;
}

.novel-cover-placeholder {
    height: 430px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 800;
}

.novel-status {
    display: inline-block;
    background: #efe8fa;
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}

.novel-title {
    font-size: 34px;
    margin-bottom: 14px;
    color: var(--text);
}

.novel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 18px;
}

.novel-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.btn-novel {
    padding: 11px 18px;
    border-radius: var(--radius-full);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-novel-primary {
    background: var(--primary-gradient);
    color: #fff;
}

.btn-novel-secondary {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
}

.novel-description {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    line-height: 2;
    color: var(--text);
}

.novel-chapters {
    margin-top: 35px;
}

.chapter-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 16px;
}

.chapter-item {
    background: #fff;
    border: 1px solid var(--border);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    color: var(--text);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.chapter-item:hover {
    border-color: var(--primary);
    color: var(--primary);
}
/* ==========================================
   صفحه مطالعه آنلاین
========================================== */
.reader-page {
    background: #f8f6fc;
    min-height: 100vh;
    padding-bottom: 60px;
}

.reader-topbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.reader-topbar-inner {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reader-back {
    color: var(--primary);
    font-weight: 700;
}

.reader-tools {
    display: flex;
    gap: 8px;
}

.reader-tools button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    font-weight: 800;
}

.reader-content {
    max-width: 860px;
    padding-top: 40px;
}

.reader-title {
    font-size: 32px;
    margin-bottom: 14px;
}

.reader-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 14px;
}

.reader-text {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    line-height: 2.2;
    font-size: 17px;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}
/* ========== ساختار کلی سایت ========== */
:root {
    --nh-primary: #6f2da8;
    --nh-primary-dark: #43136b;
    --nh-primary-light: #f4edfa;
    --nh-accent: #f1b84b;

    --nh-white: #ffffff;
    --nh-bg: #fcf9fd;
    --nh-text: #24152f;
    --nh-muted: #806f8b;
    --nh-border: #eadff1;

    --nh-shadow: 0 10px 30px rgba(62, 24, 95, 0.09);
    --nh-radius-sm: 10px;
    --nh-radius-md: 16px;
    --nh-radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--nh-bg);
    color: var(--nh-text);
    direction: rtl;
    overflow-x: hidden;
}

body.menu-is-open {
    overflow: hidden;
}

.container {
    width: min(1200px, calc(100% - 32px));
    margin-right: auto;
    margin-left: auto;
}

.site-main {
    min-height: 55vh;
    padding: 32px 0 60px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

.skip-link:focus {
    z-index: 99999;
    top: 8px;
    right: 8px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: #fff;
    background: var(--nh-primary-dark);
    border-radius: 8px;
}

/* ========== هدر ========== */
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--nh-border);
    box-shadow: 0 3px 16px rgba(52, 19, 77, 0.05);
    backdrop-filter: blur(12px);
}

.admin-bar .site-header {
    top: 32px;
}

.header-container {
    display: flex;
    align-items: center;
    min-height: 78px;
    gap: 28px;
}

.site-branding {
    flex: 0 0 auto;
}

.site-title,
.footer-logo,
.mobile-menu-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--nh-primary-dark);
    font-size: 27px;
    font-weight: 900;
    line-height: 1;
}

.site-title-accent,
.footer-logo span,
.mobile-menu-logo span {
    color: var(--nh-primary);
}

.custom-logo-link {
    display: flex;
    align-items: center;
}

.custom-logo {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 58px;
}

.main-navigation {
    flex: 1 1 auto;
}

.primary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu li {
    position: relative;
}

.primary-menu a {
    display: block;
    padding: 10px 12px;
    color: var(--nh-text);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
    border-radius: 9px;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
    color: var(--nh-primary);
    background: var(--nh-primary-light);
}

.primary-menu .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--nh-border);
    border-radius: 12px;
    box-shadow: var(--nh-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu a {
    padding: 9px 10px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.header-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    cursor: pointer;
    color: var(--nh-primary-dark);
    background: var(--nh-primary-light);
    border: 1px solid transparent;
    border-radius: 50%;
}

.header-search-toggle:hover {
    border-color: var(--nh-primary);
}

.header-account-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 42px;
    padding: 0 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--nh-primary), var(--nh-primary-dark));
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(111, 45, 168, 0.22);
}

.header-account-btn:hover {
    color: #fff;
    transform: translateY(-1px);
}

.header-search-panel {
    padding: 14px 0 18px;
    border-top: 1px solid var(--nh-border);
    background: #fff;
}

.header-search-panel[hidden] {
    display: none;
}

.header-search-form {
    display: flex;
    gap: 10px;
    max-width: 740px;
    margin: 0 auto;
}

.header-search-form input {
    flex: 1;
    min-width: 0;
    height: 46px;
    padding: 0 16px;
    color: var(--nh-text);
    background: #fff;
    border: 1px solid var(--nh-border);
    border-radius: 10px;
    outline: 0;
}

.header-search-form input:focus {
    border-color: var(--nh-primary);
    box-shadow: 0 0 0 3px rgba(111, 45, 168, 0.1);
}

.header-search-form button {
    min-width: 92px;
    padding: 0 15px;
    cursor: pointer;
    color: #fff;
    background: var(--nh-primary);
    border: 0;
    border-radius: 10px;
    font-family: inherit;
    font-weight: 700;
}

/* ========== منوی موبایل ========== */
.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--nh-border);
    border-radius: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;
    background: var(--nh-primary-dark);
    border-radius: 5px;
}

.mobile-navigation {
    position: fixed;
    z-index: 2000;
    inset: 0;
    visibility: hidden;
    pointer-events: none;
}

.mobile-navigation.is-open {
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    background: rgba(22, 8, 32, 0.5);
    transition: opacity 0.25s ease;
}

.mobile-navigation.is-open .mobile-menu-overlay {
    opacity: 1;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    height: 100%;
    padding: 20px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -12px 0 35px rgba(27, 8, 43, 0.2);
    transform: translateX(105%);
    transition: transform 0.28s ease;
}

.mobile-navigation.is-open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--nh-border);
}

.mobile-menu-close {
    width: 38px;
    height: 38px;
    padding: 0;
    cursor: pointer;
    color: var(--nh-primary-dark);
    background: var(--nh-primary-light);
    border: 0;
    border-radius: 50%;
    font-size: 29px;
    line-height: 1;
}

.mobile-menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu-list li {
    border-bottom: 1px solid #f2ebf5;
}

.mobile-menu-list a {
    display: block;
    padding: 13px 4px;
    color: var(--nh-text);
    font-weight: 700;
    text-decoration: none;
}

.mobile-menu-list .sub-menu {
    margin: 0 15px 8px 0;
    padding: 0 12px 0 0;
    list-style: none;
    border-right: 2px solid var(--nh-primary-light);
}

.mobile-menu-list .sub-menu a {
    color: var(--nh-muted);
    font-size: 14px;
}

.mobile-menu-account {
    margin-top: 24px;
}

.mobile-menu-account a {
    display: block;
    padding: 13px;
    color: #fff;
    background: var(--nh-primary);
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

/* ========== فوتر ========== */
.site-footer {
    color: #eee5f4;
    background: linear-gradient(130deg, #260b3c, #481168 55%, #2e0e46);
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 56px 0 38px;
}

.footer-column h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.footer-brand p {
    max-width: 330px;
    margin: 18px 0;
    color: #d5c4df;
    font-size: 14px;
    line-height: 2;
}

.footer-logo {
    color: #fff;
    font-size: 30px;
}

.footer-logo span {
    color: var(--nh-accent);
}

.footer-menu,
.footer-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu li,
.footer-contact-list li {
    margin-bottom: 10px;
    color: #d5c4df;
    font-size: 13px;
}

.footer-menu a,
.footer-contact-list a {
    color: #d5c4df;
    text-decoration: none;
}

.footer-menu a:hover,
.footer-contact-list a:hover {
    color: var(--nh-accent);
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    padding: 7px 10px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 12px;
    text-decoration: none;
}

.footer-socials a:hover {
    color: #2c103f;
    background: var(--nh-accent);
    border-color: var(--nh-accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    color: #c9b6d4;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 12px;
}

.footer-bottom p {
    margin: 0;
}
