/* ====================================
   竹林隐士围棋道场 - 全站样式表
   CSS前缀: zen-
   设计风格: 竹林清幽禅意风 (Bamboo Hermit Zen)
   ==================================== */

/* --- CSS Reset & Base --- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;scroll-behavior:smooth}
body{font-family:'KaiTi','STKaiti','FangSong',serif;color:#36454F;background-color:#F8F8F8;line-height:1.8;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:#2F4F2F;text-decoration:none;transition:color .3s ease}
a:hover{color:#6B8E23}
ul,ol{list-style:none}
h1,h2,h3,h4,h5,h6{font-family:'FangSong','SimSun',serif;color:#2F4F2F;line-height:1.4;margin-bottom:1rem}

/* --- Layout --- */
.zen-container{max-width:1200px;margin:0 auto;padding:0 24px}
.zen-wrapper{width:100%}
.zen-main{padding:2rem 0}
.zen-section{padding:3rem 0}
.zen-section-title{font-size:1.75rem;text-align:center;margin-bottom:2rem;position:relative;padding-bottom:1rem}
.zen-section-title::after{content:'';display:block;width:80px;height:2px;background:#6B8E23;margin:0.75rem auto 0;border-radius:4px}

/* --- Header --- */
.zen-header{background-color:rgba(248,248,248,0.97);border-bottom:1px solid rgba(47,79,47,0.1);position:sticky;top:0;z-index:1000;backdrop-filter:blur(8px)}
.zen-header-top{max-width:1200px;margin:0 auto;padding:0.5rem 24px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:0.5rem}
.zen-logo-container{display:flex;align-items:center;gap:0.75rem}
.zen-logo-link{display:flex;align-items:center;gap:0.5rem;text-decoration:none}
.zen-logo{width:48px;height:48px;border-radius:50%;object-fit:cover}
.zen-site-name{font-family:'FangSong','SimSun',serif;font-size:1.25rem;color:#2F4F2F;font-weight:bold;white-space:nowrap}
.zen-auth-code{font-size:0.7rem;color:#708090;white-space:nowrap}
.zen-main-nav{flex:1;display:flex;justify-content:center}
.zen-nav-list{display:flex;align-items:center;gap:0.25rem;flex-wrap:wrap;justify-content:center}
.zen-nav-item{position:relative}
.zen-nav-link{display:block;padding:0.5rem 0.75rem;font-size:0.9rem;color:#36454F;transition:all .3s ease;border-radius:4px;white-space:nowrap}
.zen-nav-link:hover,.zen-nav-link.zen-active{color:#2F4F2F;background-color:rgba(107,142,35,0.1)}
.zen-dropdown{position:relative}
.zen-dropdown-content{display:none;position:absolute;top:100%;left:0;background:#fff;min-width:160px;box-shadow:0 2px 8px rgba(0,0,0,0.1);border-radius:4px;z-index:100;padding:0.5rem 0}
.zen-dropdown:hover .zen-dropdown-content{display:block}
.zen-dropdown-content a{display:block;padding:0.5rem 1rem;color:#36454F;font-size:0.85rem;transition:background .2s}
.zen-dropdown-content a:hover{background:rgba(107,142,35,0.1);color:#2F4F2F}
.zen-user-actions{display:flex;align-items:center;gap:0.5rem}
.zen-search-input{padding:0.4rem 0.75rem;border:1px solid rgba(47,79,47,0.2);border-radius:4px;font-size:0.85rem;background:#fff;font-family:inherit;width:160px;transition:border-color .3s}
.zen-search-input:focus{outline:none;border-color:#6B8E23}
.zen-btn-login,.zen-btn-profile{padding:0.4rem 0.75rem;font-size:0.8rem;border-radius:4px;white-space:nowrap;transition:all .3s}
.zen-btn-login{background:#2F4F2F;color:#F5F5DC !important}
.zen-btn-login:hover{background:#6B8E23}
.zen-btn-profile{border:1px solid #2F4F2F;color:#2F4F2F}
.zen-btn-profile:hover{background:#2F4F2F;color:#F5F5DC !important}
.zen-hamburger-menu{display:none;background:none;border:none;cursor:pointer;padding:0.5rem}
.zen-hamburger-icon{display:block;width:24px;height:2px;background:#2F4F2F;position:relative;transition:all .3s}
.zen-hamburger-icon::before,.zen-hamburger-icon::after{content:'';display:block;width:24px;height:2px;background:#2F4F2F;position:absolute;left:0;transition:all .3s}
.zen-hamburger-icon::before{top:-7px}
.zen-hamburger-icon::after{top:7px}

/* --- Breadcrumb --- */
.zen-breadcrumb{padding:1rem 0;font-size:0.85rem;color:#708090}
.zen-breadcrumb a{color:#6B8E23}
.zen-breadcrumb a:hover{color:#2F4F2F}
.zen-breadcrumb span{margin:0 0.5rem}

/* --- Hero Module --- */
.zen-module-hero{position:relative;min-height:80vh;display:flex;align-items:center;justify-content:center;text-align:center;background-size:cover;background-position:center;background-attachment:fixed;overflow:hidden}
.zen-module-hero::before{content:'';position:absolute;inset:0;background:rgba(248,248,248,0.55)}
.zen-hero-content{position:relative;z-index:2;padding:2rem}
.zen-hero-content .zen-h1-title{font-size:2.75rem;color:#2F4F2F;margin-bottom:1rem;text-shadow:0 1px 4px rgba(255,255,255,0.6)}
.zen-hero-content .zen-tagline{font-size:1.25rem;color:#36454F;margin-bottom:2rem;max-width:600px;margin-left:auto;margin-right:auto}
.zen-btn--primary{display:inline-block;padding:0.85rem 2.5rem;background:#2F4F2F;color:#F5F5DC !important;border-radius:4px;font-size:1rem;font-family:inherit;transition:all .3s;box-shadow:0 2px 8px rgba(0,0,0,0.1);border:none;cursor:pointer}
.zen-btn--primary:hover{background:#6B8E23;transform:translateY(-2px);box-shadow:0 4px 12px rgba(0,0,0,0.15)}

/* --- Zen Quote Module --- */
.zen-module-zen-quote{background-color:#F5F5DC;background-image:url('../images/zen-quote-bg.webp');background-size:cover;background-position:center;padding:3rem 1.5rem;text-align:center}
.zen-quote-text{font-size:1.5rem;color:#36454F;font-family:'FangSong','SimSun',serif;font-style:italic;max-width:700px;margin:0 auto 0.75rem;line-height:2}
.zen-quote-author{font-size:0.9rem;color:#708090}

/* --- Game Entry Module --- */
.zen-module-game-entry{padding:4rem 0;text-align:center;background:#fff;border-top:1px solid rgba(47,79,47,0.08);border-bottom:1px solid rgba(47,79,47,0.08)}
.zen-game-entry-inner{max-width:800px;margin:0 auto;padding:2.5rem;border:2px solid rgba(47,79,47,0.15);border-radius:4px;background:rgba(245,245,220,0.3);box-shadow:0 2px 8px rgba(0,0,0,0.1)}
.zen-game-entry-inner .zen-section-title{margin-bottom:1.5rem}
.zen-game-desc{color:#708090;margin-bottom:2rem;font-size:1.05rem;line-height:1.9}

/* --- Ranking Module --- */
.zen-module-ranking{padding:4rem 0;background:rgba(245,245,220,0.2)}
.zen-ranking-list{max-width:700px;margin:0 auto}
.zen-ranking-item{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;margin-bottom:0.75rem;background:#fff;border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,0.1);border-left:4px solid #2F4F2F;transition:transform .2s}
.zen-ranking-item:hover{transform:translateX(4px)}
.zen-ranking-item:nth-child(1){border-left-color:#CD853F}
.zen-ranking-item:nth-child(2){border-left-color:#6B8E23}
.zen-ranking-name{font-weight:bold;color:#2F4F2F;font-size:1.05rem}
.zen-ranking-level{color:#708090;font-size:0.9rem}
.zen-ranking-score{color:#CD853F;font-weight:bold}

/* --- Ancient Books Module --- */
.zen-module-ancient-books{padding:4rem 0}
.zen-books-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:1.5rem}
.zen-book-card{background:#fff;border-radius:4px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,0.1);transition:transform .3s,box-shadow .3s}
.zen-book-card:hover{transform:translateY(-4px);box-shadow:0 6px 16px rgba(0,0,0,0.15)}
.zen-book-card img{width:100%;height:200px;object-fit:cover}
.zen-book-card-body{padding:1.25rem}
.zen-book-card-title{font-size:1.1rem;color:#2F4F2F;margin-bottom:0.5rem}
.zen-book-card-desc{color:#708090;font-size:0.9rem;line-height:1.7}

/* --- Seven Sages Module --- */
.zen-module-seven-sages{padding:4rem 0;background:rgba(245,245,220,0.2)}
.zen-sages-content{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:center}
.zen-sages-img{border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,0.1)}
.zen-sages-text{line-height:2}
.zen-sages-text p{margin-bottom:1rem;color:#36454F}

/* --- Tea Chess Module --- */
.zen-module-tea-chess{padding:4rem 0}
.zen-tea-chess-content{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:center}
.zen-tea-chess-img{border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,0.1)}
.zen-tea-chess-text p{margin-bottom:1rem;color:#36454F;line-height:2}

/* --- Hermit Bios Module --- */
.zen-module-hermit-bios{padding:4rem 0;background:rgba(245,245,220,0.2)}
.zen-hermit-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.zen-hermit-card{background:#fff;border-radius:4px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,0.1);text-align:center;padding:2rem 1.5rem;transition:transform .3s}
.zen-hermit-card:hover{transform:translateY(-4px)}
.zen-hermit-card img{width:120px;height:120px;border-radius:50%;object-fit:cover;margin:0 auto 1rem;border:3px solid rgba(47,79,47,0.15)}
.zen-hermit-card h3{color:#2F4F2F;margin-bottom:0.5rem}
.zen-hermit-card p{color:#708090;font-size:0.9rem;line-height:1.7}

/* --- Landscape Gallery Module --- */
.zen-module-landscape-gallery{padding:4rem 0}
.zen-gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.zen-gallery-item{position:relative;overflow:hidden;border-radius:4px;cursor:pointer;aspect-ratio:4/3}
.zen-gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.zen-gallery-item:hover img{transform:scale(1.05)}
.zen-gallery-overlay{position:absolute;inset:0;background:rgba(47,79,47,0.4);opacity:0;transition:opacity .3s;display:flex;align-items:center;justify-content:center;color:#F5F5DC;font-size:1.1rem}
.zen-gallery-item:hover .zen-gallery-overlay{opacity:1}

/* --- Guqin Music Module --- */
.zen-module-guqin-music{padding:4rem 0;background:rgba(245,245,220,0.2);text-align:center}
.zen-music-player{max-width:600px;margin:0 auto;background:#fff;border-radius:4px;padding:2rem;box-shadow:0 2px 8px rgba(0,0,0,0.1)}
.zen-music-track{display:flex;align-items:center;justify-content:space-between;padding:1rem;border-bottom:1px solid rgba(47,79,47,0.08);transition:background .2s}
.zen-music-track:last-child{border-bottom:none}
.zen-music-track:hover{background:rgba(107,142,35,0.05)}
.zen-music-track-name{color:#2F4F2F;font-weight:bold}
.zen-music-track-btn{background:#2F4F2F;color:#F5F5DC;border:none;padding:0.4rem 1rem;border-radius:4px;cursor:pointer;font-family:inherit;font-size:0.85rem;transition:background .3s}
.zen-music-track-btn:hover{background:#6B8E23}

/* --- Beginner Guide Module --- */
.zen-module-beginner-guide{padding:4rem 0}
.zen-guide-steps{max-width:800px;margin:0 auto}
.zen-guide-step{display:flex;gap:1.5rem;margin-bottom:2rem;align-items:flex-start}
.zen-guide-step-num{width:48px;height:48px;min-width:48px;background:#2F4F2F;color:#F5F5DC;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.25rem;font-weight:bold;font-family:'FangSong',serif}
.zen-guide-step-content h3{color:#2F4F2F;margin-bottom:0.5rem;font-size:1.1rem}
.zen-guide-step-content p{color:#708090;line-height:1.8}

/* --- Video Module --- */
.zen-video-container{margin:2rem 0;background:#fff;border-radius:4px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,0.1)}
.zen-video-player{width:100%;max-height:480px;background:#000}
.zen-video-caption{padding:1rem 1.5rem;color:#708090;font-size:0.9rem;line-height:1.7}

/* --- FAQ Module --- */
.zen-faq-section{padding:3rem 0}
.zen-faq-item{margin-bottom:1rem;border:1px solid rgba(47,79,47,0.1);border-radius:4px;overflow:hidden}
.zen-faq-question{padding:1.25rem 1.5rem;background:#fff;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-weight:bold;color:#2F4F2F;transition:background .2s}
.zen-faq-question:hover{background:rgba(245,245,220,0.5)}
.zen-faq-question::after{content:'+';font-size:1.25rem;color:#6B8E23;transition:transform .3s}
.zen-faq-item.zen-active .zen-faq-question::after{transform:rotate(45deg)}
.zen-faq-answer{padding:0 1.5rem;max-height:0;overflow:hidden;transition:all .3s ease;color:#708090;line-height:1.8}
.zen-faq-item.zen-active .zen-faq-answer{padding:1rem 1.5rem;max-height:500px}

/* --- Content Page Layout --- */
.zen-page-content{padding:2rem 0}
.zen-page-content p{margin-bottom:1.25rem;line-height:2;color:#36454F}
.zen-page-content h2{font-size:1.5rem;margin:2rem 0 1rem;color:#2F4F2F;border-left:4px solid #6B8E23;padding-left:1rem}
.zen-page-content h3{font-size:1.25rem;margin:1.5rem 0 0.75rem;color:#2F4F2F}
.zen-page-content blockquote{border-left:4px solid #CD853F;padding:1rem 1.5rem;margin:1.5rem 0;background:rgba(245,245,220,0.4);border-radius:0 4px 4px 0;color:#36454F;font-style:italic}
.zen-page-content ul,.zen-page-content ol{margin:1rem 0 1.5rem 1.5rem}
.zen-page-content li{margin-bottom:0.5rem;line-height:1.8;color:#36454F}
.zen-page-content ul li{list-style:disc}
.zen-page-content ol li{list-style:decimal}
.zen-content-img{border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,0.1);margin:1.5rem 0}

/* --- Sidebar --- */
.zen-sidebar{padding:1rem 0}
.zen-sidebar-widget{background:#fff;border-radius:4px;padding:1.5rem;margin-bottom:1.5rem;box-shadow:0 2px 8px rgba(0,0,0,0.1)}
.zen-sidebar-widget h3{font-size:1.1rem;color:#2F4F2F;margin-bottom:1rem;padding-bottom:0.5rem;border-bottom:1px solid rgba(47,79,47,0.1)}
.zen-sidebar-widget ul li{padding:0.5rem 0;border-bottom:1px solid rgba(47,79,47,0.05)}
.zen-sidebar-widget ul li:last-child{border-bottom:none}
.zen-sidebar-widget ul li a{color:#36454F;font-size:0.9rem;transition:color .2s}
.zen-sidebar-widget ul li a:hover{color:#6B8E23}
.zen-two-col-layout{display:grid;grid-template-columns:1fr 300px;gap:2rem}

/* --- Cards Grid --- */
.zen-cards-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem}
.zen-card{background:#fff;border-radius:4px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,0.1);transition:transform .3s,box-shadow .3s}
.zen-card:hover{transform:translateY(-4px);box-shadow:0 6px 16px rgba(0,0,0,0.15)}
.zen-card img{width:100%;height:200px;object-fit:cover}
.zen-card-body{padding:1.25rem}
.zen-card-body h3{font-size:1.1rem;margin-bottom:0.5rem}
.zen-card-body p{color:#708090;font-size:0.9rem;line-height:1.7}
.zen-card-link{display:inline-block;margin-top:0.75rem;color:#6B8E23;font-size:0.9rem;font-weight:bold}

/* --- Timeline --- */
.zen-timeline{position:relative;max-width:700px;margin:2rem auto;padding-left:2rem}
.zen-timeline::before{content:'';position:absolute;left:0;top:0;bottom:0;width:2px;background:#6B8E23}
.zen-timeline-item{position:relative;margin-bottom:2rem;padding-left:1.5rem}
.zen-timeline-item::before{content:'';position:absolute;left:-2rem;top:0.5rem;width:12px;height:12px;background:#2F4F2F;border-radius:50%;border:2px solid #F5F5DC;z-index:1}
.zen-timeline-year{font-weight:bold;color:#CD853F;font-size:1.1rem;margin-bottom:0.25rem}
.zen-timeline-desc{color:#36454F;line-height:1.8}

/* --- Contact Form --- */
.zen-form{max-width:600px;margin:0 auto}
.zen-form-group{margin-bottom:1.25rem}
.zen-label{display:block;margin-bottom:0.5rem;color:#2F4F2F;font-weight:bold;font-size:0.9rem}
.zen-input,.zen-textarea{width:100%;padding:0.75rem;border:1px solid rgba(47,79,47,0.2);border-radius:4px;font-family:inherit;font-size:0.95rem;transition:border-color .3s;background:#fff}
.zen-input:focus,.zen-textarea:focus{outline:none;border-color:#6B8E23}
.zen-textarea{min-height:150px;resize:vertical}

/* --- Bamboo Message Board --- */
.zen-bamboo-messages{max-width:700px;margin:0 auto}
.zen-bamboo-msg{background:linear-gradient(135deg,#F5F5DC 0%,#fff 100%);border:1px solid rgba(47,79,47,0.1);border-radius:4px;padding:1.5rem;margin-bottom:1rem;box-shadow:0 2px 8px rgba(0,0,0,0.05)}
.zen-bamboo-msg-author{font-weight:bold;color:#2F4F2F;margin-bottom:0.5rem}
.zen-bamboo-msg-text{color:#36454F;line-height:1.8;font-size:0.95rem}
.zen-bamboo-msg-date{color:#708090;font-size:0.8rem;margin-top:0.5rem}

/* --- Map Container --- */
.zen-map-container{margin:2rem 0}
.zen-map-container iframe{border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,0.1)}
.zen-map-desc{color:#708090;font-size:0.9rem;margin-top:0.75rem;text-align:center}

/* --- Footer --- */
.zen-footer{background:#2F4F2F;color:#F5F5DC;padding:3rem 0 0}
.zen-footer-content{max-width:1200px;margin:0 auto;padding:0 24px;display:grid;grid-template-columns:repeat(4,1fr);gap:2rem}
.zen-footer-title{font-size:1.1rem;margin-bottom:1rem;color:#F5F5DC;font-family:'FangSong',serif}
.zen-footer-col p{font-size:0.85rem;line-height:1.8;color:rgba(245,245,220,0.8);margin-bottom:0.5rem}
.zen-footer-col a{color:rgba(245,245,220,0.8);transition:color .2s;font-size:0.85rem}
.zen-footer-col a:hover{color:#F5F5DC}
.zen-footer-list li{padding:0.3rem 0}
.zen-auth-code-footer{font-size:0.75rem;color:rgba(245,245,220,0.6);margin-top:0.75rem}
.zen-btn-contact,.zen-btn-map{display:inline-block;padding:0.3rem 0.75rem;border:1px solid rgba(245,245,220,0.3);border-radius:4px;margin-top:0.25rem;font-size:0.8rem;transition:all .2s}
.zen-btn-contact:hover,.zen-btn-map:hover{background:rgba(245,245,220,0.1)}
.zen-social-links{display:flex;gap:0.75rem;margin-top:0.75rem}
.zen-social-icon{width:32px;height:32px;border-radius:4px;opacity:0.7;transition:opacity .2s}
.zen-social-icon:hover{opacity:1}
.zen-copyright{text-align:center;padding:1.5rem 0;margin-top:2rem;border-top:1px solid rgba(245,245,220,0.1);font-size:0.8rem;color:rgba(245,245,220,0.6)}

/* --- Bamboo Leaf Animation --- */
.zen-leaf{position:fixed;pointer-events:none;z-index:9999;opacity:0.6;font-size:1.2rem;color:#6B8E23;animation:zen-leaf-fall linear forwards}
@keyframes zen-leaf-fall{0%{transform:translateY(-10vh) rotate(0deg);opacity:0.7}100%{transform:translateY(110vh) rotate(720deg);opacity:0}}

/* --- Lightbox --- */
.zen-lightbox{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.85);z-index:10000;align-items:center;justify-content:center;cursor:pointer}
.zen-lightbox.zen-active{display:flex}
.zen-lightbox img{max-width:90%;max-height:90%;border-radius:4px;box-shadow:0 4px 20px rgba(0,0,0,0.5)}

/* --- Scroll to Top --- */
.zen-scroll-top{position:fixed;bottom:2rem;right:2rem;width:44px;height:44px;background:#2F4F2F;color:#F5F5DC;border:none;border-radius:50%;cursor:pointer;font-size:1.25rem;display:none;align-items:center;justify-content:center;box-shadow:0 2px 8px rgba(0,0,0,0.2);transition:all .3s;z-index:999}
.zen-scroll-top:hover{background:#6B8E23;transform:translateY(-2px)}
.zen-scroll-top.zen-visible{display:flex}

/* --- Animations --- */
.zen-fade-in{opacity:0;transform:translateY(20px);transition:opacity .6s ease,transform .6s ease}
.zen-fade-in.zen-visible{opacity:1;transform:translateY(0)}

/* --- Responsive: Tablet --- */
@media(max-width:1024px){
  .zen-header-top{flex-direction:column;align-items:stretch}
  .zen-main-nav{order:3;width:100%}
  .zen-nav-list{justify-content:flex-start;overflow-x:auto;padding:0.5rem 0}
  .zen-user-actions{justify-content:flex-end}
  .zen-footer-content{grid-template-columns:repeat(2,1fr)}
  .zen-sages-content,.zen-tea-chess-content{grid-template-columns:1fr}
  .zen-two-col-layout{grid-template-columns:1fr}
  .zen-books-grid{grid-template-columns:repeat(2,1fr)}
  .zen-gallery-grid{grid-template-columns:repeat(2,1fr)}
}

/* --- Responsive: Mobile --- */
@media(max-width:768px){
  html{font-size:14px}
  .zen-hamburger-menu{display:block}
  .zen-main-nav{display:none;width:100%}
  .zen-main-nav.zen-nav-open{display:block}
  .zen-nav-list{flex-direction:column;align-items:stretch}
  .zen-nav-link{padding:0.75rem 1rem}
  .zen-dropdown-content{position:static;box-shadow:none;padding-left:1rem}
  .zen-dropdown:hover .zen-dropdown-content{display:block}
  .zen-user-actions{display:none}
  .zen-module-hero{min-height:60vh}
  .zen-hero-content .zen-h1-title{font-size:1.75rem}
  .zen-hero-content .zen-tagline{font-size:1rem}
  .zen-section-title{font-size:1.35rem}
  .zen-footer-content{grid-template-columns:1fr}
  .zen-books-grid{grid-template-columns:1fr}
  .zen-gallery-grid{grid-template-columns:1fr}
  .zen-guide-step{flex-direction:column;align-items:center;text-align:center}
  .zen-ranking-item{flex-direction:column;gap:0.5rem;text-align:center}
}
