:root {
    --primary: #16a75c;
    --primary-dark: #0e8a49;
    --primary-light: #e8f8f0;
    --primary-50: #f0fdf4;
    --accent: #2563eb;
    --accent-light: #eff6ff;
    --dark: #0f172a;
    --dark-700: #334155;
    --dark-500: #64748b;
    --dark-300: #94a3b8;
    --dark-100: #f1f5f9;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0/0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0/0.07), 0 2px 4px -2px rgb(0 0 0/0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0/0.07), 0 4px 6px -4px rgb(0 0 0/0.05);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0/0.08), 0 8px 10px -6px rgb(0 0 0/0.04);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    --font-primary: 'Poppins', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-primary);
    color: var(--dark-700);
    background: var(--dark-100);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased
}

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

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

.container-main {
    max-width: 100%;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

@media(min-width:768px) {
    .container-main {
        padding-left: 2rem;
        padding-right: 2rem
    }
}

@media(min-width:1280px) {
    .container-main {
        padding-left: 3rem;
        padding-right: 3rem
    }
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full)
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.025em;
    line-height: 1.2
}

.section-desc {
    font-size: 0.925rem;
    color: var(--dark-500);
    line-height: 1.7;
    max-width: 600px
}

.section-spacing {
    padding: 3.5rem 0
}

@media(min-width:1024px) {
    .section-title {
        font-size: 2.25rem
    }

    .section-spacing {
        padding: 5rem 0
    }
}

.navbar-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0
}

.navbar-modern.scrolled {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 3px rgb(0 0 0/0.06);
    padding: 0.25rem 0
}

.navbar-modern.at-top {
    background: transparent
}

.navbar-modern.scrolled .nav-logo-text,
.navbar-modern.non-home .nav-logo-text {
    color: var(--dark) !important
}

.navbar-modern.scrolled .nav-logo-sub,
.navbar-modern.non-home .nav-logo-sub {
    color: var(--dark-500) !important
}

.navbar-modern.scrolled .nav-link,
.navbar-modern.non-home .nav-link {
    color: var(--dark) !important
}

.navbar-modern.scrolled .nav-link:hover,
.navbar-modern.non-home .nav-link:hover {
    color: var(--primary) !important
}

.navbar-modern.scrolled .mobile-toggle-btn,
.navbar-modern.non-home .mobile-toggle-btn {
    background: #f1f5f9 !important;
    color: var(--dark) !important;
    border-color: #e2e8f0 !important
}

.navbar-modern.scrolled .nav-login-btn,
.navbar-modern.non-home .nav-login-btn {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important
}

.navbar-modern.scrolled .nav-logo-divider,
.navbar-modern.non-home .nav-logo-divider {
    border-color: rgba(0, 0, 0, 0.1) !important
}

.navbar-modern.non-home {
    background: #fff !important;
    box-shadow: 0 1px 3px rgb(0 0 0/0.06)
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap
}

.nav-dropdown {
    position: absolute;
    top: calc(100%+0.5rem);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark-700);
    border-radius: var(--radius-sm);
    transition: var(--transition)
}

.nav-dropdown a:hover {
    background: var(--primary-light);
    color: var(--primary)
}

.nav-login-btn {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    transition: var(--transition)
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--dark)
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-bg-slider .owl-carousel,
.hero-bg-slider .owl-stage-outer,
.hero-bg-slider .owl-stage,
.hero-bg-slider .owl-item,
.hero-bg-slider .owl-item>div {
    height: 100%;
    width: 100%;
    overflow: hidden
}

.hero-bg-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
    display: block
}

@keyframes heroZoom {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.08)
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto
}

.hero-title-main {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4)
}

.hero-title-desa {
    font-size: 1.75rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4)
}

@media(min-width:768px) {
    .hero-title-main {
        font-size: 1.6rem
    }

    .hero-title-desa {
        font-size: 2.75rem
    }
}

.shortcut-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    max-width: 340px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem;
    will-change: auto
}

.shortcut-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.9rem 0.5rem;
    background: rgba(255, 255, 255, 0.93);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0
}

.shortcut-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15)
}

.shortcut-item i {
    font-size: 1.5rem;
    color: var(--primary)
}

.shortcut-item span {
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--dark-700);
    text-align: center;
    line-height: 1.2
}

@media(min-width:768px) {
    .shortcut-wrap {
        grid-template-columns: repeat(9, 1fr);
        max-width: 100%;
        gap: 0.75rem;
        padding: 2rem 0
    }

    .shortcut-item {
        padding: 1rem 0.6rem
    }

    .shortcut-item i {
        font-size: 1.6rem
    }

    .shortcut-item span {
        font-size: 0.65rem
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.04)
}

@media(min-width:768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 2rem 2.5rem
    }
}

.stat-item {
    text-align: center;
    padding: 0.75rem 0.5rem;
    position: relative
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
    font-size: 1rem
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.2rem
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark-300);
    text-transform: uppercase;
    letter-spacing: 0.08em
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem
}

@media(min-width:768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px)
}

.news-card-img {
    position: relative;
    height: 200px;
    overflow: hidden
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.news-card:hover .news-card-img img {
    transform: scale(1.06)
}

.news-card-cat {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--primary);
    color: #fff;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-sm)
}

.news-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--dark-300);
    margin-bottom: 0.6rem
}

.news-card-meta i {
    color: var(--primary)
}

.news-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.news-card:hover .news-card-title {
    color: var(--primary)
}

.news-card-excerpt {
    font-size: 0.82rem;
    color: var(--dark-500);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
    flex: 1
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary)
}

.news-card-link i {
    font-size: 0.6rem;
    transition: transform 0.3s ease
}

.news-card:hover .news-card-link i {
    transform: translateX(4px)
}

.sambutan-section {
    background: var(--white)
}

.sambutan-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto
}

@media(min-width:768px) {
    .sambutan-layout {
        flex-direction: row;
        align-items: flex-start
    }
}

.sambutan-photo {
    width: 180px;
    height: 220px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white)
}

.sambutan-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top
}

.sambutan-text-wrap {
    flex: 1;
    text-align: center
}

@media(min-width:768px) {
    .sambutan-text-wrap {
        text-align: left
    }
}

.sambutan-quote {
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--dark-500);
    font-style: italic;
    border-left: 4px solid var(--primary);
    padding-left: 1.25rem;
    margin: 0;
    text-align: left
}

.sambutan-nama {
    text-align: center;
    margin-top: 1.5rem
}

.sholat-section {
    width: 100%
}

.sholat-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    position: relative;
    overflow: hidden
}

.sholat-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.sholat-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem
}

@media(min-width:768px) {
    .sholat-modern-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem
    }
}

.sholat-modern-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 1.25rem 0.75rem;
    text-align: center;
    transition: all 0.4s ease
}

.sholat-modern-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px)
}

.sholat-modern-card.active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 30px rgba(22, 167, 92, 0.3)
}

.sholat-modern-card.active .sholat-icon,
.sholat-modern-card.active .sholat-m-name,
.sholat-modern-card.active .sholat-m-time {
    color: #fff !important
}

.sholat-icon {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.6rem
}

.sholat-m-name {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em
}

.sholat-m-time {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-top: 0.25rem
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem
}

@media(min-width:768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(min-width:1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.gallery-item:hover img {
    transform: scale(1.08)
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1rem
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.gallery-overlay span {
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff
}

.polaroid-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    text-decoration: none
}

.polaroid-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px) rotate(-1deg)
}

.polaroid-img {
    aspect-ratio: 4/3;
    overflow: hidden
}

.polaroid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.polaroid-card:hover .polaroid-img img {
    transform: scale(1.06)
}

.polaroid-label {
    padding: 0.75rem 0.85rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-700);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.footer-modern {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7)
}

.footer-modern h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem
}

.footer-modern a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    transition: var(--transition)
}

.footer-modern a:hover {
    color: var(--primary)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem
}

@media(min-width:768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem
    }
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition)
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.25rem 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35)
}

.running-text-bar {
    background: var(--primary-dark);
    padding: 0.65rem 0;
    position: relative;
    z-index: 3
}

.running-text-bar .badge-live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 1rem
}

.running-text-bar marquee {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9)
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    width: 36px !important;
    height: 36px !important;
    border-radius: var(--radius-md) !important;
    background: var(--primary) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 0.25rem !important;
    border: none !important
}

.owl-dots .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    border-radius: var(--radius-full) !important;
    background: var(--dark-300) !important
}

.owl-dots .owl-dot.active span {
    background: var(--primary) !important;
    width: 24px !important
}

.box {
    border: none !important;
    margin-bottom: 0 !important
}

.box-header {
    background: var(--white) !important;
    border-bottom: 1px solid var(--dark-100) !important;
    padding: 1rem 1.25rem !important
}

.box-header .box-title {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important
}

.box-header .box-title a {
    color: var(--dark) !important
}

.box-header .box-title a:hover {
    color: var(--primary) !important
}

.box-header .box-title i {
    color: var(--primary) !important
}

.box-body {
    padding: 1rem 1.25rem !important
}

.prose {
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--dark-700)
}

.prose img {
    border-radius: var(--radius-lg);
    margin: 1.5rem auto
}

.prose a {
    color: var(--primary);
    text-decoration: underline
}

.prose blockquote {
    border-left: 4px solid var(--primary);
    padding: 0.75rem 1.25rem;
    background: var(--primary-50);
    border-radius: 0 var(--radius-md) var(--radius-md) 0
}

.mobile-menu-panel {
    background: var(--white)
}

.mobile-menu-panel .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    border-radius: var(--radius-md);
    transition: var(--transition)
}

.mobile-menu-panel .mobile-nav-link:hover {
    background: var(--primary-light);
    color: var(--primary)
}

.mobile-menu-panel .mobile-child-link {
    display: block;
    padding: 0.6rem 1rem 0.6rem 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark-500)
}

.wonokerto-pagination .pagination {
    display: flex;
    gap: 0.35rem;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center
}

.wonokerto-pagination .page-link,
.wonokerto-pagination .btn-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.6rem;
    border-radius: var(--radius-md);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark-500);
    background: var(--white);
    border: 1px solid var(--dark-100);
    cursor: pointer
}

.wonokerto-pagination .active .page-link,
.wonokerto-pagination .btn-page.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff
}

.back-to-top-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9998;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(22, 167, 92, 0.3);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    cursor: pointer;
    border: none
}

.back-to-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

.article-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    background: var(--dark)
}

@media(min-width:768px) {
    .article-hero {
        min-height: 480px
    }
}

.article-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%)
}

.article-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65
}

.article-hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem;
    width: 100%
}

.dataTables_wrapper {
    font-family: var(--font-primary) !important;
    font-size: 0.82rem
}

table.dataTable thead th {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dark-500);
    border-bottom: 2px solid var(--dark-100) !important
}

table.dataTable tbody tr:hover {
    background: var(--primary-50) !important
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark-300);
    list-style: none;
    margin: 0;
    padding: 0
}

.breadcrumb a {
    color: var(--dark-500)
}

.breadcrumb a:hover {
    color: var(--primary)
}

.loading-spinner {
    width: 56px;
    height: 56px;
    border: 3px solid var(--dark-100);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5)
    }
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-thumb {
    background: var(--dark-300);
    border-radius: 3px
}

::selection {
    background: var(--primary);
    color: #fff
}

.no-scrollbar::-webkit-scrollbar {
    display: none
}

#dark-mode-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3)
}

.mobile-dropdown-items {
    transition: max-height 0.35s ease;
    overflow: hidden
}

.mobile-nav-parent {
    cursor: pointer;
    user-select: none
}

.mobile-nav-parent .mobile-dd-icon {
    transition: transform 0.3s ease
}

.mobile-dropdown-items .mobile-child-link {
    animation: fadeSlideDown 0.25s ease forwards;
    opacity: 0;
    transform: translateY(-8px)
}

.mobile-dropdown-items .mobile-child-link:nth-child(1) {
    animation-delay: 0.05s
}

.mobile-dropdown-items .mobile-child-link:nth-child(2) {
    animation-delay: 0.1s
}

.mobile-dropdown-items .mobile-child-link:nth-child(3) {
    animation-delay: 0.15s
}

.mobile-dropdown-items .mobile-child-link:nth-child(4) {
    animation-delay: 0.2s
}

.mobile-dropdown-items .mobile-child-link:nth-child(5) {
    animation-delay: 0.25s
}

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