/* ===== GameHub Pro 2.1 ===== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap');

*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Noto Sans SC',-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;background:#f4f5f8;color:#333;line-height:1.7}
a{color:#5a6fd6;text-decoration:none;transition:color .2s}
a:hover{color:#7c8cff}

/* ===== Header ===== */
header{background:#fff;padding:0 24px;border-bottom:1px solid #eee;display:flex;align-items:center;justify-content:space-between;height:64px;position:sticky;top:0;z-index:100;box-shadow:0 2px 8px rgba(0,0,0,.04)}
header .logo{font-size:22px;font-weight:900;color:#2d2d3a;letter-spacing:1px}
header .logo span{color:#5a6fd6}
header nav a{margin-left:24px;font-size:14px;color:#666;font-weight:500}
header nav a:hover{color:#5a6fd6}

/* ===== Banner ===== */
.gh-banner{position:relative;padding:80px 24px;text-align:center;overflow:hidden;background:linear-gradient(135deg,#667eea 0%,#764ba2 100%)}
.gh-banner-video{position:absolute;top:50%;left:50%;min-width:100%;min-height:100%;width:auto;height:auto;transform:translate(-50%,-50%);object-fit:cover;z-index:0}
.gh-banner-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg,rgba(102,126,234,.6),rgba(118,74,162,.6));z-index:1}
.gh-banner-content{position:relative;z-index:2}
.gh-banner-title{font-size:38px;font-weight:900;color:#fff;margin-bottom:10px;text-shadow:0 2px 10px rgba(0,0,0,.3)}
.gh-banner-desc{font-size:16px;color:rgba(255,255,255,.85);margin-bottom:24px}
.gh-banner-search{max-width:540px;margin:0 auto}
.gh-banner-search form{display:flex;gap:0;border-radius:50px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.2)}
.gh-banner-search input{flex:1;padding:14px 22px;border:none;font-size:15px;outline:none;background:#fff}
.gh-banner-search button{padding:14px 28px;background:#ff6b6b;color:#fff;border:none;font-size:15px;font-weight:600;cursor:pointer;transition:background .2s}
.gh-banner-search button:hover{background:#ee5a5a}

/* ===== Main Layout ===== */
.gh-main{padding:32px 0 60px}
.gh-row{display:grid;grid-template-columns:1fr 300px;gap:32px}
@media(max-width:992px){.gh-row{grid-template-columns:1fr}}
.container{max-width:1200px;margin:0 auto;padding:0 16px}

/* ===== Category Nav ===== */
.gh-cat-nav{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:24px;background:#fff;padding:12px 16px;border-radius:12px;border:1px solid #eee}
.gh-cat-item{padding:6px 16px;border-radius:20px;font-size:13px;color:#666;transition:all .2s}
.gh-cat-item:hover,.gh-cat-item.active{background:#5a6fd6;color:#fff}

/* ===== Post List ===== */
.gh-post-list{display:flex;flex-direction:column;gap:16px}
.gh-post-item{background:#fff;border-radius:12px;overflow:hidden;border:1px solid #eee;display:flex;gap:0;transition:box-shadow .2s}
.gh-post-item:hover{box-shadow:0 4px 20px rgba(0,0,0,.06)}
@media(max-width:768px){.gh-post-item{flex-direction:column}}
.gh-post-img{position:relative;width:280px;min-height:180px;flex-shrink:0;overflow:hidden;background:#f0f0f5}
@media(max-width:768px){.gh-post-img{width:100%;height:200px}}
.gh-post-img img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.gh-post-item:hover .gh-post-img img{transform:scale(1.03)}
.gh-post-img-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:48px;opacity:.3}
.gh-post-cat{position:absolute;top:12px;left:12px;background:#5a6fd6;color:#fff;padding:3px 12px;border-radius:4px;font-size:12px;font-weight:500}
.gh-post-info{padding:20px;flex:1;display:flex;flex-direction:column}
.gh-post-info h2{font-size:18px;font-weight:700;margin-bottom:8px;line-height:1.3}
.gh-post-info h2 a{color:#2d2d3a}
.gh-post-info h2 a:hover{color:#5a6fd6}
.gh-post-meta{display:flex;flex-wrap:wrap;gap:12px;font-size:12px;color:#999;margin-bottom:10px}
.gh-post-excerpt{font-size:14px;color:#666;line-height:1.6;flex:1;margin-bottom:12px}
.gh-post-footer{display:flex;align-items:center;gap:16px;padding-top:12px;border-top:1px solid #f0f0f0;font-size:13px}
.gh-post-dl{color:#5a6fd6;font-weight:500}
.gh-post-rating{color:#ff6b6b;font-weight:600}
.gh-post-more{margin-left:auto;color:#999;font-size:13px}
.gh-post-more:hover{color:#5a6fd6}

/* ===== Pagination ===== */
.gh-pagination{margin-top:32px;text-align:center}
.gh-pagination .page-numbers{display:inline-flex;gap:6px;flex-wrap:wrap;justify-content:center}
.gh-pagination .page-numbers a,.gh-pagination .page-numbers span{display:inline-block;padding:8px 16px;background:#fff;border:1px solid #eee;border-radius:8px;font-size:14px;color:#666;transition:all .2s}
.gh-pagination .page-numbers a:hover,.gh-pagination .page-numbers .current{background:#5a6fd6;color:#fff;border-color:#5a6fd6}
.gh-pagination .page-numbers .current{font-weight:600}

/* ===== Sidebar ===== */
.gh-sidebar{position:sticky;top:80px;align-self:start}
.gh-widget{background:#fff;border-radius:12px;border:1px solid #eee;overflow:hidden;margin-bottom:16px}
.gh-widget-title{font-size:15px;font-weight:700;padding:14px 16px;border-bottom:1px solid #eee;color:#2d2d3a}
.gh-widget-title i{margin-right:6px;color:#5a6fd6}
.gh-widget-body{padding:12px 16px}
.gh-hot-item{display:flex;align-items:center;gap:10px;padding:8px 0;border-bottom:1px solid #f5f5f5}
.gh-hot-item:last-child{border-bottom:none}
.gh-hot-item a{font-size:13px;color:#444;flex:1}
.gh-hot-num{width:22px;height:22px;display:flex;align-items:center;justify-content:center;background:#f0f0f5;border-radius:4px;font-size:12px;font-weight:700;color:#999;flex-shrink:0}
.gh-hot-num.top{background:#ff6b6b;color:#fff}
.gh-tag-cloud{display:flex;flex-wrap:wrap;gap:6px}
.gh-tag-item{display:inline-block;padding:4px 12px;background:#f0f2ff;color:#5a6fd6;border-radius:6px;font-size:12px;transition:all .2s}
.gh-tag-item:hover{background:#5a6fd6;color:#fff}

/* ===== Single Detail ===== */
.gh-single{padding:24px 0 60px}
.gh-breadcrumb{font-size:13px;color:#999;margin-bottom:24px;padding:12px 16px;background:#fff;border-radius:8px;border:1px solid #eee}
.gh-breadcrumb a{color:#666}
.gh-breadcrumb .sep{margin:0 8px;color:#ddd}
.gh-single-header{display:grid;grid-template-columns:320px 1fr;gap:28px;margin-bottom:28px}
@media(max-width:768px){.gh-single-header{grid-template-columns:1fr}}
.gh-single-cover{position:relative;border-radius:12px;overflow:hidden;background:#f0f0f5}
.gh-single-cover img{width:100%;height:auto;display:block}
.gh-single-cover-placeholder{height:320px;display:flex;align-items:center;justify-content:center;font-size:64px;opacity:.3}
.gh-single-rating-badge{position:absolute;top:12px;right:12px;background:rgba(0,0,0,.7);color:#ffd700;padding:6px 14px;border-radius:8px;font-size:16px;font-weight:700}
.gh-single-info h1{font-size:28px;font-weight:900;color:#2d2d3a;margin-bottom:16px}
.gh-single-meta-list{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:14px}
.gh-single-meta-item{background:#f8f9fb;padding:10px 14px;border-radius:8px;display:flex;flex-direction:column;gap:2px}
.gh-single-meta-item span:first-child{font-size:11px;color:#999;text-transform:uppercase}
.gh-single-meta-item span:last-child{font-size:14px;color:#444;font-weight:500}
.gh-single-tags{display:flex;flex-wrap:wrap;gap:6px}
.gh-single-tag{padding:4px 12px;background:#f0f2ff;color:#5a6fd6;border-radius:6px;font-size:12px}
.gh-single-body{display:grid;grid-template-columns:1fr 320px;gap:28px}
@media(max-width:992px){.gh-single-body{grid-template-columns:1fr}}
.gh-single-section{background:#fff;border-radius:12px;border:1px solid #eee;padding:24px}
.gh-single-section h2{font-size:20px;font-weight:700;color:#2d2d3a;margin-bottom:16px;padding-bottom:10px;border-bottom:2px solid #5a6fd6;display:inline-block}
.gh-single-desc{font-size:15px;color:#555;line-height:1.9}
.gh-single-desc p{margin-bottom:12px}
.gh-download-box{background:#fff;border-radius:12px;border:1px solid #eee;padding:20px;position:sticky;top:80px}
.gh-download-box h3{font-size:17px;font-weight:700;color:#2d2d3a;margin-bottom:16px;padding-bottom:10px;border-bottom:2px solid #ff6b6b}
.gh-dl-btn{display:flex;align-items:center;gap:10px;padding:12px 16px;margin-bottom:10px;background:linear-gradient(135deg,#667eea,#5a6fd6);color:#fff;border-radius:10px;text-decoration:none;transition:transform .15s,box-shadow .2s}
.gh-dl-btn:hover{transform:translateY(-2px);box-shadow:0 6px 16px rgba(90,111,214,.3);color:#fff}
.gh-dl-icon{font-size:20px}
.gh-dl-name{flex:1}
.gh-dl-pwd{font-size:12px;background:rgba(0,0,0,.15);padding:2px 8px;border-radius:4px}
.gh-dl-go{font-size:13px;font-weight:600}
.gh-dl-tip{font-size:12px;color:#aaa;margin-top:10px;text-align:center}
.gh-empty{text-align:center;padding:60px 20px;background:#fff;border-radius:12px;border:1px solid #eee}
.gh-empty-icon{font-size:48px;margin-bottom:12px;opacity:.4}
.gh-empty p{font-size:16px;color:#999}

/* ===== Footer ===== */
footer{background:#fff;border-top:1px solid #eee;padding:24px;text-align:center;font-size:13px;color:#999}

/* ===== Responsive ===== */
@media(max-width:600px){
  .gh-banner-title{font-size:26px}.gh-banner{padding:50px 16px}
  .gh-banner-search form{border-radius:12px;flex-direction:column}
  .gh-post-img{height:180px}.gh-post-meta{font-size:11px;gap:8px}
  .gh-single-meta-list{grid-template-columns:1fr}
  .gh-single-header{grid-template-columns:1fr}
  .gh-single-body{grid-template-columns:1fr}
}
/* ===== 社交模块 ===== */
.gh-social-body{padding:16px}
.gh-social-item{display:flex;gap:12px;padding:12px 0;border-bottom:1px solid #f5f5f5}
.gh-social-item:last-child{border-bottom:none}
.gh-social-icon{width:40px;height:40px;display:flex;align-items:center;justify-content:center;background:#f8f9fb;border-radius:10px;font-size:20px;flex-shrink:0}
.gh-social-info{flex:1}
.gh-social-info strong{font-size:14px;color:#333}
.gh-social-desc{font-size:12px;color:#999;margin-top:2px}
.gh-highlight{color:#5a6fd6;font-weight:600}
.gh-social-qr{width:100px;height:100px;object-fit:cover;border-radius:8px;margin-top:6px;border:1px solid #eee}
.gh-social-join{display:inline-block;margin-top:4px;padding:4px 12px;background:#12b7f5;color:#fff;border-radius:4px;font-size:12px;font-weight:600}
.gh-social-join:hover{color:#fff;background:#0ea5e0}
.gh-social-panel{border:1px solid #eee!important}
.gh-social-panel-links{display:flex;flex-direction:column;gap:16px}
.gh-social-panel-item{display:flex;align-items:center;gap:14px;padding:12px 16px;background:#f8f9fb;border-radius:10px}
.gh-social-panel-item strong{display:block;font-size:14px;color:#333;margin-bottom:2px}

/* ===== 截图墙 ===== */
.gh-screenshot-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:10px}
.gh-screenshot-item{border-radius:10px;overflow:hidden;background:#f5f5f5;aspect-ratio:16/9;display:block}
.gh-screenshot-item img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.gh-screenshot-item:hover img{transform:scale(1.03)}
.gh-section{margin-bottom:28px}
.gh-section-title{font-size:18px;font-weight:700;color:#2d2d3a;margin-bottom:14px;padding-bottom:8px;border-bottom:2px solid #5a6fd6;display:inline-block}
.gh-single-desc{font-size:15px;color:#555;line-height:1.9}
.gh-single-desc p{margin-bottom:12px}

/* ===== 侧边栏信息 ===== */
.gh-sidebar-box{background:#fff;border-radius:12px;border:1px solid #eee;padding:20px;margin-bottom:16px;position:sticky}
.gh-sidebar-box-title{font-size:15px;font-weight:700;color:#2d2d3a;margin-bottom:14px;padding-bottom:10px;border-bottom:2px solid #5a6fd6}
.gh-sidebar-info{display:flex;flex-direction:column;gap:6px}
.gh-sidebar-info-row{display:flex;justify-content:space-between;align-items:center;padding:8px 0;border-bottom:1px solid #f5f5f5;font-size:13px}
.gh-sidebar-info-row span:first-child{color:#999}
.gh-sidebar-info-row span:last-child{color:#444;font-weight:500;text-align:right}
.gh-sidebar-info-row:last-child{border-bottom:none}

/* ===== 社交面板 ===== */
.gh-social-panel-links{display:flex;flex-direction:column;gap:12px}
.gh-social-panel-item{display:flex;align-items:center;gap:14px;padding:12px 16px;background:#f8f9fb;border-radius:10px}
.gh-social-panel-item strong{display:block;font-size:14px;color:#333;margin-bottom:2px}

/* ===== 详情页标题 ===== */
.gh-single-title{font-size:28px;font-weight:900;color:#2d2d3a;margin:20px 0 16px;line-height:1.3}

/* ===== 截图墙 ===== */
.gh-screenshot-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:10px}
.gh-screenshot-item{border-radius:10px;overflow:hidden;background:#f5f5f5;aspect-ratio:16/9;display:block}
.gh-screenshot-item img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.gh-screenshot-item:hover img{transform:scale(1.03)}

/* ===== 通用区块 ===== */
.gh-section{margin-bottom:28px}
.gh-section-title{font-size:18px;font-weight:700;color:#2d2d3a;margin-bottom:14px;padding-bottom:8px;border-bottom:2px solid #5a6fd6;display:inline-block}
.gh-single-desc{font-size:15px;color:#555;line-height:1.9}
.gh-single-desc p{margin-bottom:12px}

/* ===== 侧边栏信息 ===== */
.gh-sidebar-box{background:#fff;border-radius:12px;border:1px solid #eee;padding:20px;margin-bottom:16px}
.gh-sidebar-box-title{font-size:15px;font-weight:700;color:#2d2d3a;margin-bottom:14px;padding-bottom:10px;border-bottom:2px solid #5a6fd6}
.gh-sidebar-info{display:flex;flex-direction:column}
.gh-sidebar-info-row{display:flex;justify-content:space-between;align-items:center;padding:8px 0;border-bottom:1px solid #f5f5f5;font-size:13px}
.gh-sidebar-info-row:last-child{border-bottom:none}
.gh-sidebar-info-row span:first-child{color:#999}
.gh-sidebar-info-row span:last-child{color:#444;font-weight:500;text-align:right}

/* ===== 上下篇导航 ===== */
.gh-post-nav{display:flex;justify-content:space-between;gap:16px;margin:28px 0;padding:16px 0;border-top:1px solid #eee;border-bottom:1px solid #eee}
.gh-post-nav-prev,.gh-post-nav-next{flex:1}
.gh-post-nav-next{text-align:right}
.gh-post-nav a{font-size:14px;color:#5a6fd6;font-weight:500}
.gh-post-nav a:hover{color:#7c8cff}

/* ===== 相关游戏 ===== */
.gh-related{margin-top:32px;padding-top:24px;border-top:1px solid #eee}
.gh-related-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:16px}
.gh-related-item{background:#fff;border:1px solid #eee;border-radius:10px;overflow:hidden;text-decoration:none;color:inherit;transition:box-shadow .2s}
.gh-related-item:hover{box-shadow:0 4px 16px rgba(0,0,0,.06)}
.gh-related-img{height:140px;background:#f5f5f5;overflow:hidden}
.gh-related-img img{width:100%;height:100%;object-fit:cover}
.gh-related-info{padding:12px 14px}
.gh-related-info h4{font-size:14px;font-weight:600;color:#333;margin-bottom:4px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.gh-related-info span{font-size:12px;color:#999}

/* ===== 目录 ===== */
.gh-toc-auto{border-left:3px solid #5a6fd6}
.gh-toc-auto a:hover{color:#7c8cff!important}

/* ===== 资源信息标签 ===== */
.gh-game-meta-bar{max-width:1200px;margin:0 auto 16px;padding:0 16px;display:flex;flex-wrap:wrap;gap:8px}
.gh-meta-tag{padding:4px 14px;border-radius:6px;font-size:12px;font-weight:500;cursor:default}
.gh-meta-tag.free{background:#e8f5e9;color:#2e7d32}
.gh-meta-tag.vip{background:#fff3e0;color:#e65100}
.gh-meta-tag.info{background:#e3f2fd;color:#1565c0}
.gh-meta-tag.disclaimer{background:#f3e5f5;color:#6a1b9a;cursor:pointer;position:relative}
.gh-meta-tag.disclaimer:hover::after{content:attr(title);position:absolute;top:100%;left:0;background:#333;color:#fff;padding:8px 12px;border-radius:6px;font-size:12px;white-space:normal;width:260px;z-index:100;margin-top:6px;font-weight:400}

/* ===== 评论图片 ===== */
.gh-comment-img{max-width:240px;max-height:180px;border-radius:8px;margin-top:6px;display:block}
.comment-body{padding:12px 0;border-bottom:1px solid #f0f0f0}
.comment-author .avatar{border-radius:50%;margin-right:6px}
.comment-author cite{font-style:normal;font-weight:600;font-size:14px;color:#333}
.comment-metadata{font-size:12px;color:#999;margin-bottom:6px}
.comment-content{font-size:14px;color:#555;line-height:1.6}
.reply a{font-size:13px;color:#5a6fd6}

/* ===== 评论表单 ===== */
#commentform{padding:16px 0}
#commentform label{font-size:14px;font-weight:500;color:#333;display:block;margin-bottom:4px}
#commentform input[type="text"],#commentform input[type="email"],#commentform input[type="url"]{width:100%;padding:10px 14px;border:1px solid #ddd;border-radius:8px;font-size:14px;outline:none;margin-bottom:12px;box-sizing:border-box}
#commentform input:focus,#commentform textarea:focus{border-color:#5a6fd6}
#commentform textarea{width:100%;padding:12px 14px;border:1px solid #ddd;border-radius:8px;font-size:14px;outline:none;min-height:100px;box-sizing:border-box}
#submit{padding:10px 28px;background:linear-gradient(135deg,#667eea,#5a6fd6);color:#fff;border:none;border-radius:8px;font-size:14px;font-weight:600;cursor:pointer}
#submit:hover{box-shadow:0 4px 12px rgba(90,111,214,.3)}
.gh-comment-note{font-size:12px;color:#999;margin-top:8px}
.comment-respond{margin-top:24px}
.comments-title{font-size:18px;font-weight:700;color:#2d2d3a;margin-bottom:16px}

/* ===== 标签云 ===== */
.gh-tag-cloud{display:flex;flex-wrap:wrap;gap:6px;align-items:center}
.gh-tag-item{display:inline-block;padding:4px 12px;background:#f0f2ff;color:#5a6fd6;border-radius:6px;transition:all .2s}
.gh-tag-item:hover{background:#5a6fd6;color:#fff}

/* ===== 评论区域 ===== */
.gh-comments-wrap{background:#fff;border-radius:12px;border:1px solid #eee;padding:24px;margin-bottom:30px}
.gh-comments-wrap .comments-title{font-size:18px;font-weight:700;color:#2d2d3a;margin-bottom:20px;padding-bottom:10px;border-bottom:2px solid #5a6fd6}
.gh-comments-wrap .comment-list{list-style:none;padding:0;margin:0}
.gh-comments-wrap .comment-list .children{list-style:none;padding-left:40px;margin:0}
@media(max-width:600px){.gh-comments-wrap .comment-list .children{padding-left:20px}}
.gh-comments-wrap .comment-body{padding:14px 0;border-bottom:1px solid #f0f0f0}
.gh-comments-wrap .comment-author .avatar{border-radius:50%;margin-right:8px;vertical-align:middle}
.gh-comments-wrap .comment-author cite{font-style:normal;font-weight:600;font-size:14px;color:#333}
.gh-comments-wrap .comment-author .says{display:none}
.gh-comments-wrap .comment-metadata{font-size:12px;color:#999;margin:4px 0 8px}
.gh-comments-wrap .comment-metadata a{color:#999}
.gh-comments-wrap .comment-content{font-size:14px;color:#555;line-height:1.7}
.gh-comments-wrap .reply{text-align:right;font-size:13px}
.gh-comments-wrap .reply a{color:#5a6fd6}
.gh-comments-wrap .reply a:hover{color:#7c8cff}
#respond{padding-top:20px}
#reply-title{font-size:16px;font-weight:700;color:#2d2d3a;margin-bottom:12px}
#cancel-comment-reply-link{font-size:12px;font-weight:400;color:#999;margin-left:8px}
#commentform .comment-form-author,#commentform .comment-form-email,#commentform .comment-form-url{width:100%;margin-bottom:12px}
#commentform .comment-form-author label,#commentform .comment-form-email label,#commentform .comment-form-url label{display:inline-block;width:60px;font-size:13px;color:#666}
#commentform .comment-form-author input,#commentform .comment-form-email input,#commentform .comment-form-url input{width:calc(100% - 70px);padding:8px 12px;border:1px solid #ddd;border-radius:6px;font-size:13px;outline:none;box-sizing:border-box}
#commentform .comment-form-comment label{display:none}
#commentform textarea{width:100%;padding:10px 14px;border:1px solid #ddd;border-radius:8px;font-size:14px;outline:none;min-height:100px;box-sizing:border-box}
#commentform input:focus,#commentform textarea:focus{border-color:#5a6fd6}
#commentform .form-submit{margin-top:12px}
#submit{padding:10px 28px;background:linear-gradient(135deg,#667eea,#5a6fd6);color:#fff;border:none;border-radius:8px;font-size:14px;font-weight:600;cursor:pointer}
#submit:hover{box-shadow:0 4px 12px rgba(90,111,214,.3)}
.gh-comment-note{font-size:12px;color:#999;margin-top:6px}
.logged-in-as{font-size:13px;color:#666;margin-bottom:10px}
.logged-in-as a{color:#5a6fd6}
.gh-comment-img{max-width:240px;max-height:180px;border-radius:8px;margin-top:6px;display:block}
.comment-notes{font-size:12px;color:#999;margin-bottom:12px}
.required{color:#e74c3c}

/* ===== 视觉优化增强 ===== */
html{scroll-behavior:smooth}
.gh-header-ani{animation:ghFadeUp .5s ease both}
@keyframes ghFadeUp{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}
.gh-banner-search button{transition:all .25s ease}
.gh-banner-search button:hover{opacity:.9;transform:scale(1.02)}
.gh-dl-btn{transition:all .25s cubic-bezier(.4,0,.2,1)!important}
.gh-dl-btn:hover{transform:translateY(-3px)!important;box-shadow:0 8px 20px rgba(90,111,214,.35)!important}
.gh-post-item{transition:transform .25s ease,box-shadow .3s ease}
.gh-post-item:hover{transform:translateY(-3px);box-shadow:0 8px 28px rgba(0,0,0,.08)!important}
.gh-post-cat{backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px)}
.gh-single-cover img{transition:transform .4s ease}
.gh-single-cover:hover img{transform:scale(1.03)}
@media(max-width:600px){
.gh-banner{padding:40px 16px!important}
.gh-banner-title{font-size:22px!important}
.gh-banner-search form{border-radius:12px!important;flex-direction:column}
.gh-main{padding:20px 0 40px}
}
.gh-related-item{transition:all .25s ease}
.gh-related-item:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,.08)}
