/* ============================================================
   ZENPLAY Theme - Main Stylesheet
   Color Scheme: Zen Gray (#F5F5F0→#E8E5DE) + Ink Green (#2E4A3E) + Gold (#B8860B)
   ============================================================ */

/* === CSS Variables === */
:root {
    --zen-gray: #F5F5F0;
    --zen-gray-dark: #E8E5DE;
    --zen-gray-light: #FAFAF7;
    --zen-gray-medium: #D4C9A8;
    --ink-green: #2E4A3E;
    --ink-green-light: #3D6353;
    --ink-green-dark: #1A2E25;
    --gold: #B8860B;
    --gold-light: #D4A017;
    --gold-dark: #8B6914;
    --bamboo-green: #5B7B5B;
    --bamboo-tan: #D4C9A8;
    --white: #ffffff;
    --white-off: #f8f8f5;
    --black: #1a1a1a;
    --black-light: #2a2a2a;
    --gray: #888888;
    --gray-light: #cccccc;
    --text-primary: #2a2a2a;
    --text-secondary: #555555;
    --text-gold: #B8860B;
    --font-heading: 'Noto Serif', serif;
    --font-body: 'Roboto', sans-serif;
    --container-max: 1200px;
    --transition: all 0.3s ease;
    --shadow-card: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-gold: 0 0 20px rgba(184,134,11,0.2);
    --shadow-green: 0 0 20px rgba(46,74,62,0.15);
    --border-gold: 2px solid var(--gold);
    --border-zen: 1px solid rgba(46,74,62,0.15);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--zen-gray);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--ink-green);
}

.zen-green-text {
    color: var(--ink-green) !important;
}

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

/* === Announcement Bar === */
.zen-announcement-bar {
    background: var(--ink-green);
    padding: 8px 0;
    overflow: hidden;
}

.zen-announcement-content {
    display: flex;
    gap: 40px;
    animation: scrollNotification 30s linear infinite;
    white-space: nowrap;
}

.zen-announcement-content span {
    color: var(--zen-gray);
    font-size: 13px;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

@keyframes scrollNotification {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === Header === */
.site-header {
    background: linear-gradient(180deg, var(--zen-gray-light) 0%, var(--zen-gray) 100%);
    border-bottom: 2px solid var(--ink-green);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo a {
    display: block;
}

.zen-text-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.zen-enso-logo {
    font-size: 36px;
    color: var(--ink-green);
    line-height: 1;
    display: inline-block;
    animation: ensoRotate 20s linear infinite;
}

.zen-brand-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink-green);
    letter-spacing: 4px;
}

.zen-text-logo.footer-logo .zen-enso-logo {
    font-size: 28px;
}

.zen-text-logo.footer-logo .zen-brand-text {
    font-size: 20px;
}

@keyframes ensoRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.header-time {
    color: var(--ink-green);
    font-size: 14px;
    font-family: var(--font-body);
}

.header-btn-group {
    display: flex;
    gap: 10px;
}

.btn-login {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--ink-green);
    color: var(--ink-green);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--ink-green);
    color: var(--zen-gray);
}

.btn-register {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--white);
}

.btn-demo {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid var(--bamboo-green);
    color: var(--ink-green);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-demo:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* === Navigation === */
.main-navigation {
    background: rgba(46,74,62,0.05);
    border-top: 1px solid rgba(46,74,62,0.1);
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 18px;
    color: var(--ink-green);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold);
    background: rgba(184,134,11,0.05);
}

.nav-link i {
    margin-right: 5px;
}

.nav-item.has-dropdown > .nav-link::after {
    content: '\25BE';
    margin-left: 5px;
    font-size: 10px;
}

.nav-item.has-dropdown .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--zen-gray-light);
    border: 1px solid var(--ink-green);
    min-width: 200px;
    z-index: 100;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item.has-dropdown:hover .sub-menu {
    display: block;
}

.sub-menu .nav-link {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(46,74,62,0.1);
    color: var(--ink-green);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ink-green);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* === Content Layout === */
.content-area {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.main-content {
    flex: 1;
    min-width: 0;
}

/* === Breadcrumb === */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--ink-green);
}

.breadcrumb a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* ============================================================
   SECTION 1: HERO
   ============================================================ */
.zen-hero {
    position: relative;
    background: linear-gradient(135deg, var(--zen-gray) 0%, var(--zen-gray-dark) 50%, var(--zen-gray) 100%);
    padding: 80px 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid rgba(46,74,62,0.1);
}

/* Bamboo Decoration Left */
.zen-hero-bamboo-left,
.zen-hero-bamboo-right {
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    background: repeating-linear-gradient(
        180deg,
        var(--bamboo-green) 0px,
        var(--bamboo-green) 80px,
        var(--bamboo-tan) 80px,
        var(--bamboo-tan) 84px,
        var(--bamboo-green) 84px,
        var(--bamboo-green) 160px
    );
    opacity: 0.15;
    pointer-events: none;
}

.zen-hero-bamboo-left {
    left: 0;
    border-right: 2px solid rgba(91,123,91,0.2);
}

.zen-hero-bamboo-right {
    right: 0;
    border-left: 2px solid rgba(91,123,91,0.2);
}

/* Enso Circle */
.zen-hero-enso {
    width: 300px;
    height: 300px;
    border: 8px solid var(--ink-green);
    border-radius: 50%;
    border-width: 8px 4px 12px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    transform: rotate(-15deg);
    animation: ensoAppear 2s ease forwards, bambooSway 6s ease-in-out infinite 2s;
    opacity: 0;
}

.zen-hero-enso::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid rgba(46,74,62,0.15);
    border-width: 2px 1px 3px 1px;
}

.zen-hero-enso::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: var(--zen-gray);
    border-radius: 50%;
}

.zen-hero-brand {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--ink-green);
    letter-spacing: 6px;
    transform: rotate(15deg);
    text-shadow: 0 2px 4px rgba(46,74,62,0.1);
}

.zen-hero-tagline {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: var(--ink-green);
    letter-spacing: 6px;
    margin-bottom: 15px;
    animation: inkFade 1.5s ease 0.5s forwards;
    opacity: 0;
}

.zen-hero-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    animation: inkFade 1.5s ease 1s forwards;
    opacity: 0;
}

.zen-hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: inkFade 1.5s ease 1.5s forwards;
    opacity: 0;
}

.zen-hero-inner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.btn-gold-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    border-radius: 6px;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-gold-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184,134,11,0.3);
    color: var(--white);
}

.btn-outline-zen {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--ink-green);
    color: var(--ink-green);
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    letter-spacing: 1px;
    transition: var(--transition);
    background: transparent;
}

.btn-outline-zen:hover {
    background: var(--ink-green);
    color: var(--zen-gray);
    transform: translateY(-3px);
}

/* ============================================================
   SECTION 2: GAMES
   ============================================================ */
.zen-games {
    padding: 50px 0;
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-title i {
    margin-right: 10px;
    font-size: 28px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 40px;
}

.zen-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.zen-game-card {
    background: var(--white);
    border: 1px solid rgba(46,74,62,0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    display: block;
    color: var(--text-primary);
    position: relative;
}

.zen-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.zen-game-card:hover::before {
    opacity: 1;
}

.zen-game-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    color: var(--text-primary);
}

/* Bamboo texture on cards */
.zen-game-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.zen-game-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 30px,
        rgba(212,201,168,0.15) 30px,
        rgba(212,201,168,0.15) 32px,
        transparent 32px
    );
    pointer-events: none;
    z-index: 1;
}

.zen-game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.zen-game-card:hover .zen-game-img img {
    transform: scale(1.05);
}

/* Ink Frame - Irregular edges */
.ink-frame {
    clip-path: polygon(
        0% 2%, 3% 0%, 8% 1%, 15% 0%, 22% 2%, 30% 0%, 38% 1%, 45% 0%,
        52% 2%, 60% 0%, 68% 1%, 75% 0%, 82% 2%, 90% 0%, 95% 1%, 100% 0%,
        100% 3%, 99% 8%, 100% 15%, 99% 22%, 100% 30%, 99% 38%, 100% 45%,
        99% 52%, 100% 60%, 99% 68%, 100% 75%, 99% 82%, 100% 90%, 99% 95%, 100% 100%,
        97% 100%, 92% 99%, 85% 100%, 78% 99%, 70% 100%, 62% 99%, 55% 100%,
        48% 99%, 40% 100%, 32% 99%, 25% 100%, 18% 99%, 10% 100%, 5% 99%, 0% 100%,
        0% 97%, 1% 92%, 0% 85%, 1% 78%, 0% 70%, 1% 62%, 0% 55%,
        1% 48%, 0% 40%, 1% 32%, 0% 25%, 1% 18%, 0% 10%, 1% 5%
    );
}

.zen-game-info {
    padding: 20px;
}

.zen-game-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--ink-green);
    margin: 0 0 8px;
    letter-spacing: 1px;
}

.zen-game-info p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.zen-game-card:hover .zen-game-info h3 {
    color: var(--gold);
}

/* ============================================================
   SECTION 3: PHILOSOPHY
   ============================================================ */
.zen-philosophy {
    padding: 60px 0;
    margin-bottom: 40px;
    background: linear-gradient(180deg, var(--zen-gray-dark) 0%, var(--zen-gray) 100%);
    border-top: 1px solid rgba(46,74,62,0.1);
    border-bottom: 1px solid rgba(46,74,62,0.1);
}

.zen-philosophy-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.zen-philosophy-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(46,74,62,0.1);
    position: relative;
    transition: var(--transition);
}

.zen-philosophy-item:hover {
    box-shadow: var(--shadow-green);
    transform: translateY(-3px);
}

.zen-philosophy-enso {
    font-size: 80px;
    color: var(--ink-green);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block;
    transform: rotate(-10deg);
}

.zen-philosophy-item h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--ink-green);
    margin: 0 0 12px;
    letter-spacing: 4px;
}

.zen-philosophy-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================================
   SECTION 4: TESTIMONIALS
   ============================================================ */
.zen-testimonials {
    padding: 50px 0;
    margin-bottom: 40px;
}

.zen-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.zen-testimonial-card {
    background: var(--white);
    border: 1px solid rgba(46,74,62,0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.zen-testimonial-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.zen-testimonial-card:hover::before {
    opacity: 1;
}

.zen-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

/* Ink Portrait Frame */
.ink-frame-portrait {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    clip-path: polygon(
        50% 0%, 63% 3%, 75% 8%, 85% 15%, 93% 25%, 97% 37%, 100% 50%,
        97% 63%, 93% 75%, 85% 85%, 75% 93%, 63% 97%, 50% 100%,
        37% 97%, 25% 93%, 15% 85%, 7% 75%, 3% 63%, 0% 50%,
        3% 37%, 7% 25%, 15% 15%, 25% 7%, 37% 3%
    );
}

.ink-frame-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zen-testimonial-stars {
    margin-bottom: 12px;
}

.zen-testimonial-stars i {
    color: var(--gold);
    font-size: 14px;
    margin: 0 2px;
}

.zen-testimonial-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.zen-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.zen-author-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-green);
}

.zen-author-role {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
}

/* ============================================================
   SECTION 5: FOOTER CTA
   ============================================================ */
.zen-footer-cta {
    padding: 60px 0;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--zen-gray-dark), var(--zen-gray), var(--zen-gray-dark));
    border-radius: 12px;
    border: 1px solid rgba(46,74,62,0.1);
    position: relative;
    overflow: hidden;
}

.zen-footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 40px,
        rgba(91,123,91,0.03) 40px,
        rgba(91,123,91,0.03) 42px
    );
    pointer-events: none;
}

.zen-footer-cta-enso {
    width: 200px;
    height: 200px;
    border: 6px solid var(--ink-green);
    border-radius: 50%;
    border-width: 6px 3px 10px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transform: rotate(-10deg);
    position: relative;
    animation: ensoAppear 2s ease forwards;
}

.zen-footer-cta-enso::after {
    content: '';
    position: absolute;
    top: 10px;
    right: -8px;
    width: 15px;
    height: 15px;
    background: var(--zen-gray);
    border-radius: 50%;
}

.zen-cta-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink-green);
    letter-spacing: 2px;
    transform: rotate(10deg);
    text-align: center;
    line-height: 1.3;
}

.zen-cta-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.zen-cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.zen-cta-feature {
    font-size: 14px;
    color: var(--ink-green);
}

.zen-cta-feature i {
    margin-right: 5px;
    color: var(--gold);
}

.zen-cta-btn {
    font-size: 18px;
    padding: 16px 50px;
}

/* ============================================================
   NEWS SECTION
   ============================================================ */
.home-news-section {
    padding: 50px 0;
    margin-bottom: 40px;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.home-news-placeholder {
    display: contents;
}

.article-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(46,74,62,0.1);
    display: block;
    color: var(--text-primary);
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    color: var(--text-primary);
}

.article-card-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

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

.article-card-title {
    padding: 12px 15px 5px;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--ink-green);
    line-height: 1.4;
}

.article-card-title a {
    color: var(--ink-green);
}

.article-card-title a:hover {
    color: var(--gold);
}

.article-card-title span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: var(--gray);
}

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

.article-card-excerpt {
    padding: 8px 15px 15px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.view-more-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    border: 2px solid var(--ink-green);
    color: var(--ink-green);
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    text-align: center;
}

.view-more-btn:hover {
    background: var(--ink-green);
    color: var(--zen-gray);
}

.zen-view-more {
    text-align: center;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
}

/* ============================================================
   ARTICLE GRID (Index, Category)
   ============================================================ */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.article-card-more {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 15px 15px;
    font-size: 12px;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 4px;
    transition: var(--transition);
}

.article-card-more:hover {
    background: var(--gold);
    color: var(--white);
}

.no-posts {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
    grid-column: 1 / -1;
}

/* === Pagination === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 20px 0;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(46,74,62,0.2);
    border-radius: 6px;
    color: var(--ink-green);
    font-size: 14px;
    transition: var(--transition);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--ink-green);
    color: var(--zen-gray);
    border-color: var(--ink-green);
}

/* === Category Header === */
.category-header {
    text-align: center;
    padding: 30px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(46,74,62,0.1);
}

.category-title {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 10px;
}

.category-desc {
    color: var(--text-secondary);
    font-size: 15px;
}

/* === Provider Tabs === */
.provider-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(46,74,62,0.1);
}

.provider-tab {
    padding: 8px 18px;
    background: transparent;
    border: 1px solid rgba(46,74,62,0.15);
    color: var(--text-secondary);
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.provider-tab:hover,
.provider-tab.active {
    background: var(--ink-green);
    color: var(--zen-gray);
    border-color: var(--ink-green);
}

/* ============================================================
   SINGLE ARTICLE
   ============================================================ */
.single-article {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(46,74,62,0.1);
}

.article-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(46,74,62,0.1);
}

.article-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--ink-green);
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--gray);
}

.article-meta i {
    margin-right: 5px;
    color: var(--gold);
}

.article-meta a {
    color: var(--ink-green);
}

.article-meta a:hover {
    color: var(--gold);
}

.article-featured-img {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
}

.article-featured-img img {
    width: 100%;
    border-radius: 8px;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: var(--ink-green);
    margin-top: 25px;
    margin-bottom: 15px;
}

.article-content p {
    margin-bottom: 15px;
}

.article-content img {
    border-radius: 8px;
    margin: 15px 0;
}

.article-content a {
    color: var(--gold);
    text-decoration: underline;
}

.article-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(184,134,11,0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.article-content ul,
.article-content ol {
    padding-left: 25px;
    margin-bottom: 15px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(46,74,62,0.1);
    margin-top: 25px;
}

.article-tags i {
    color: var(--gold);
}

.article-tags span {
    padding: 4px 12px;
    background: rgba(46,74,62,0.05);
    border: 1px solid rgba(46,74,62,0.15);
    border-radius: 4px;
    font-size: 12px;
    color: var(--ink-green);
}

.article-tags span a {
    color: var(--ink-green);
}

.article-tags span a:hover {
    color: var(--gold);
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(46,74,62,0.1);
    margin-top: 20px;
}

.article-nav a {
    color: var(--ink-green);
    font-size: 14px;
}

.article-nav a:hover {
    color: var(--gold);
}

/* Related Posts */
.related-posts {
    margin-bottom: 30px;
}

.related-posts-title {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(46,74,62,0.1);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.related-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(46,74,62,0.08);
    display: block;
}

.related-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.related-item-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-item-title {
    padding: 10px;
    font-size: 13px;
    color: var(--ink-green);
    font-family: var(--font-heading);
    line-height: 1.4;
}

/* ============================================================
   PAGE
   ============================================================ */
.page-article {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(46,74,62,0.1);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--ink-green);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(46,74,62,0.1);
}

.page-featured-img {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-featured-img img {
    width: 100%;
    border-radius: 8px;
}

.page-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.page-content h2, .page-content h3 {
    color: var(--ink-green);
}

.page-content a {
    color: var(--gold);
    text-decoration: underline;
}

/* ============================================================
   FLOATING SIDEBAR
   ============================================================ */
.floating-sidebar {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--ink-green);
    border: 1px solid var(--ink-green);
    border-radius: 50%;
    color: var(--zen-gray);
    font-size: 18px;
    transition: var(--transition);
    position: relative;
}

.sidebar-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.sidebar-btn-facebook {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.sidebar-btn-facebook:hover {
    background: #1565c0;
    color: white;
}

.sidebar-btn-telegram {
    background: #0088cc;
    border-color: #0088cc;
    color: white;
}

.sidebar-btn-telegram:hover {
    background: #006daa;
    color: white;
}

.sidebar-label {
    display: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: linear-gradient(180deg, var(--zen-gray-dark) 0%, var(--ink-green-dark) 100%);
    border-top: 3px solid var(--ink-green);
    padding: 50px 0 0;
    margin-top: 40px;
    position: relative;
}

/* Bamboo Accent */
.bamboo-footer-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--bamboo-green) 0px,
        var(--bamboo-green) 60px,
        var(--bamboo-tan) 60px,
        var(--bamboo-tan) 64px,
        var(--bamboo-green) 64px
    );
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(245,245,240,0.15);
}

.footer-brand-logo img {
    max-height: 50px;
    margin-bottom: 15px;
}

.footer-brand-text {
    font-size: 13px;
    color: var(--zen-gray-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-18plus {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(245,245,240,0.2);
    border-radius: 50%;
    color: var(--zen-gray-dark);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social-links a:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--zen-gray);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(245,245,240,0.15);
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col ul li a {
    color: var(--zen-gray-dark);
    font-size: 13px;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-col ul li a:hover {
    color: var(--gold);
    opacity: 1;
    padding-left: 5px;
}

/* License Bar */
.footer-license-bar {
    padding: 25px 0;
    text-align: center;
    border-bottom: 1px solid rgba(245,245,240,0.15);
}

.footer-license-bar h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--zen-gray);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.license-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.license-item i {
    font-size: 28px;
    color: var(--gold);
}

.license-item span {
    font-size: 11px;
    color: var(--zen-gray-dark);
    opacity: 0.8;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 12px;
    color: var(--gray);
}

.footer-copyright {
    color: var(--gold);
}

.footer-disclaimer {
    color: var(--zen-gray-dark);
    opacity: 0.7;
}

/* ============================================================
   KEYFRAMES & ANIMATIONS
   ============================================================ */
@keyframes ensoAppear {
    0% {
        border-color: transparent;
        opacity: 0;
        transform: rotate(-15deg) scale(0.8);
    }
    30% {
        border-top-color: var(--ink-green);
        opacity: 0.3;
    }
    60% {
        border-right-color: var(--ink-green);
        opacity: 0.6;
    }
    80% {
        border-bottom-color: var(--ink-green);
        opacity: 0.8;
    }
    100% {
        border-color: var(--ink-green);
        opacity: 1;
        transform: rotate(-15deg) scale(1);
    }
}

@keyframes bambooSway {
    0%, 100% { transform: rotate(-15deg); }
    25% { transform: rotate(-13deg); }
    75% { transform: rotate(-17deg); }
}

@keyframes inkFade {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes brushStroke {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes goldShine {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================================
   SCROLL ANIMATION CLASSES
   ============================================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   SWIPER OVERRIDES
   ============================================================ */
.swiper-pagination-bullet {
    background: var(--ink-green);
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--ink-green);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--ink-green); }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--zen-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--ink-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--white);
}

/* ============================================================
   LOADING & TRANSITIONS
   ============================================================ */
.page-transition {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================================
   BAMBOO TEXTURE UTILITY
   ============================================================ */
.bamboo-bg {
    background: repeating-linear-gradient(
        90deg,
        var(--zen-gray-dark) 0px,
        var(--zen-gray-dark) 30px,
        var(--bamboo-tan) 30px,
        var(--bamboo-tan) 32px,
        var(--zen-gray-dark) 32px
    );
}

.bamboo-bg-vertical {
    background: repeating-linear-gradient(
        180deg,
        var(--bamboo-green) 0px,
        var(--bamboo-green) 80px,
        var(--bamboo-tan) 80px,
        var(--bamboo-tan) 84px,
        var(--bamboo-green) 84px,
        var(--bamboo-green) 160px
    );
}

/* ============================================================
   ENSO CIRCLE VARIANTS
   ============================================================ */
.enso-sm {
    width: 60px;
    height: 60px;
    border: 3px solid var(--ink-green);
    border-radius: 50%;
    border-width: 3px 2px 5px 2px;
    display: inline-block;
    transform: rotate(-10deg);
}

.enso-md {
    width: 120px;
    height: 120px;
    border: 5px solid var(--ink-green);
    border-radius: 50%;
    border-width: 5px 3px 8px 4px;
    display: inline-block;
    transform: rotate(-12deg);
}

.enso-lg {
    width: 300px;
    height: 300px;
    border: 8px solid var(--ink-green);
    border-radius: 50%;
    border-width: 8px 4px 12px 6px;
    display: inline-block;
    transform: rotate(-15deg);
}

.enso-gold {
    border-color: var(--gold);
}

/* ============================================================
   INK FRAME VARIANTS
   ============================================================ */
.ink-frame-rounded {
    clip-path: polygon(
        50% 0%, 63% 3%, 75% 8%, 85% 15%, 93% 25%, 97% 37%, 100% 50%,
        97% 63%, 93% 75%, 85% 85%, 75% 93%, 63% 97%, 50% 100%,
        37% 97%, 25% 93%, 15% 85%, 7% 75%, 3% 63%, 0% 50%,
        3% 37%, 7% 25%, 15% 15%, 25% 7%, 37% 3%
    );
}

.ink-frame-rough {
    clip-path: polygon(
        2% 0%, 15% 2%, 30% 0%, 45% 3%, 60% 0%, 75% 2%, 90% 0%, 98% 2%,
        100% 15%, 98% 30%, 100% 45%, 98% 60%, 100% 75%, 98% 90%, 100% 98%,
        90% 100%, 75% 98%, 60% 100%, 45% 98%, 30% 100%, 15% 98%, 0% 100%,
        2% 90%, 0% 75%, 2% 60%, 0% 45%, 2% 30%, 0% 15%
    );
}

/* ============================================================
   ZEN QUOTE DECORATION
   ============================================================ */
.zen-quote-block {
    position: relative;
    padding: 30px 40px;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
}

.zen-quote-block::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 48px;
    color: var(--gold);
    opacity: 0.3;
    font-family: var(--font-heading);
}

/* ============================================================
   ZEN DIVIDER
   ============================================================ */
.zen-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.zen-divider::before,
.zen-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(46,74,62,0.2), transparent);
}

.zen-divider-icon {
    color: var(--ink-green);
    opacity: 0.4;
    font-size: 18px;
}
