/* Sketch Template – Hand-Drawn Pencil Style */
:root {
    --primary: #FF8C00;
    --secondary: #7FFF00;
    --accent: #8A2BE2;
    --neutral: #A9A9A9;
    --bg: #3A2B2B;
    --text: #F5F5DC;
    --surface: #4E3C3C;
    --surface2: #443535;
    --border: #5E4B4B;
    --btn-red: #FF0000;
    --btn-blue: #0000FF;
    --btn-green: #00FF00;
    --btn-yellow: #FFFF00;
    --font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-family); color: var(--text); background: var(--bg); line-height: 1.65; }
a { transition: all .3s ease; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.site-header { background: var(--surface); border-bottom: 1px dashed var(--border); position: sticky; top: 0; z-index: 100; box-shadow: none; }
.main-nav .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.logo { color: #fff; text-decoration: none; font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.logo-img { height: 40px; width: 40px; object-fit: contain; border-radius: 50%; border: 2px solid var(--text); }
.logo-placeholder { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--primary); font-size: 1.1rem; font-weight: 800; color: #fff; }
.nav-links { list-style: none; display: flex; gap: 24px; }
.nav-links a { color: rgba(232,232,232,.5); text-decoration: none; font-size: .88rem; font-weight: 500; padding: 4px 0; border-bottom: 2px solid transparent; transition: all .25s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); border-bottom-color: var(--text); }
.nav-auth { display: flex; gap: 10px; align-items: center; }
.btn-auth { text-decoration: none; font-size: .82rem; font-weight: 600; padding: 7px 20px; border-radius: 2px; transition: all .25s; }
.btn-login { color: var(--text); border: 1px solid var(--text); background: transparent; }
.btn-login:hover, .btn-login.active { background: var(--text); color: var(--bg); }
.btn-register { color: #fff; background: var(--primary); border: none; }
.btn-register:hover, .btn-register.active { opacity: .85; box-shadow: 0 4px 16px rgba(232,232,232,.2); }

.hero-carousel { position: relative; width: 100%; height: 500px; overflow: hidden; }
.carousel-track { position: relative; width: 100%; height: 100%; }
.carousel-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.carousel-slide.active { opacity: 1; z-index: 1; }
.hero-overlay { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,.55) 100%); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px; }
.hero-overlay h1 { color: #fff; font-size: 3rem; text-align: center; font-weight: 800; letter-spacing: 2px; }
.hero-tagline { color: var(--text); font-size: .9rem; text-transform: uppercase; letter-spacing: 6px; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; background: rgba(232,232,232,.15); color: var(--text); border: 1px solid rgba(232,232,232,.3); font-size: 1.4rem; padding: 10px 14px; cursor: pointer; border-radius: 50%; transition: all .25s; }
.carousel-btn:hover { background: var(--text); color: var(--bg); }
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }
.carousel-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 10px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.25); cursor: pointer; transition: all .25s; }
.carousel-dot.active { background: var(--text); box-shadow: 0 0 10px rgba(232,232,232,.4); }

.img-placeholder { background: linear-gradient(135deg, var(--surface2), var(--border)); display: flex; align-items: center; justify-content: center; color: var(--neutral); font-size: .85rem; }
.img-placeholder::after { content: '📷'; font-size: 2rem; opacity: .3; }
.ad-banner { width: 100%; overflow: hidden; background: var(--surface2); border-radius: 2px; margin: 8px auto; max-width: 1180px; }
.ad-banner a { display: block; }
.ad-banner img { width: 100%; height: auto; display: block; border-radius: 2px; transition: opacity .2s; }
.ad-banner img:hover { opacity: .9; }

.content-block { padding: 64px 0; }
.content-block h2 { font-size: 1.75rem; margin-bottom: 28px; color: #fff; font-weight: 700; position: relative; padding-left: 18px; }
.content-block h2::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px; border-radius: 2px; background: linear-gradient(180deg, var(--btn-blue), var(--text)); }
.content-body { font-size: 1rem; line-height: 1.85; color: rgba(232,232,232,.75); }

.intro-layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; }
.intro-main { min-width: 0; }
.recent-updates { background: var(--surface); border: 1px dashed var(--border); border-radius: 2px; padding: 22px; position: sticky; top: 80px; }
.recent-updates h3 { font-size: .9rem; color: var(--text); font-weight: 600; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px dashed var(--border); }
.recent-updates ul { list-style: none; }
.recent-updates li { padding: 8px 0; border-bottom: 1px solid rgba(42,42,74,.3); display: flex; flex-direction: column; gap: 2px; }
.recent-updates li:last-child { border-bottom: none; }
.recent-updates li a { color: rgba(232,232,232,.7); text-decoration: none; font-size: .85rem; }
.recent-updates li a:hover { color: var(--text); }
.recent-updates li time { font-size: .75rem; color: var(--neutral); }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { background: var(--surface); border: 1px dashed var(--border); border-radius: 2px; padding: 30px; text-align: center; transition: all .3s; }
.feature-card:hover { transform: none; box-shadow: 0 12px 32px rgba(232,232,232,.08); border-color: var(--text); }
.feature-icon { font-size: 2rem; margin-bottom: 14px; width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(135deg, rgba(30,144,255,.1), rgba(232,232,232,.1)); color: var(--text); }
.feature-card h3 { font-size: 1.02rem; margin-bottom: 10px; color: #fff; }
.feature-card p { font-size: .88rem; color: rgba(232,232,232,.6); line-height: 1.6; margin: 0; }

.reviews-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.review-item { background: var(--surface); border: 1px dashed var(--border); border-radius: 2px; padding: 24px; position: relative; overflow: hidden; }
.review-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary); }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.review-author { font-weight: 600; color: var(--text); font-size: .9rem; }
.review-stars { color: var(--accent); font-size: 1rem; }
.review-text { font-size: .9rem; line-height: 1.7; color: rgba(232,232,232,.7); margin: 0; }

.sections-overview { padding: 64px 0; background: var(--bg); }
.sections-overview h2 { font-size: 1.75rem; margin-bottom: 32px; color: #fff; text-align: center; }
.section-list { display: flex; flex-direction: column; }
.section-row { border-bottom: 1px dashed var(--border); padding: 20px 0; }
.section-row:last-child { border-bottom: none; }
.section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.section-index { font-size: 1.5rem; font-weight: 800; color: rgba(232,232,232,.15); min-width: 40px; }
.section-header h3 { flex: 1; margin: 0; font-size: 1.1rem; }
.section-header h3 a { color: var(--text); text-decoration: none; font-weight: 600; }
.section-header h3 a:hover { opacity: .8; }
.section-count { font-size: .8rem; color: var(--neutral); background: var(--border); padding: 2px 10px; border-radius: 1px; }
.section-articles { display: flex; flex-wrap: wrap; gap: 10px; padding-left: 56px; }
.article-chip { display: flex; flex-direction: column; gap: 2px; background: var(--surface2); border: 1px dashed var(--border); border-radius: 2px; padding: 10px 14px; text-decoration: none; transition: all .2s; min-width: 200px; flex: 1; max-width: 300px; }
.article-chip:hover { border-color: var(--text); transform: none; }
.chip-title { color: rgba(232,232,232,.8); font-size: .88rem; line-height: 1.3; }
.article-chip time { font-size: .75rem; color: var(--neutral); }

.section-banner-img { width: 100%; height: 300px; background-size: cover; background-position: center; position: relative; }
.section-banner-overlay { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,.6), rgba(0,0,0,.3)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.section-banner-overlay h1 { color: #fff; font-size: 2.4rem; font-weight: 800; }
.section-banner-count { color: var(--text); font-size: .9rem; letter-spacing: 2px; }
.section-page { padding: 40px 0; }
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.article-grid-card { background: var(--surface); border: 1px dashed var(--border); border-radius: 2px; overflow: hidden; text-decoration: none; transition: all .3s; display: flex; flex-direction: column; }
.article-grid-card:hover { transform: none; box-shadow: none; border-color: var(--text); }
.article-grid-img { width: 100%; height: 130px; background-size: cover; background-position: center; background-color: var(--surface2); }
.article-grid-placeholder { background: linear-gradient(135deg, var(--surface2), var(--border)); }
.article-grid-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.article-grid-body h2 { font-size: 1.02rem; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.article-grid-body .summary { font-size: .85rem; color: var(--neutral); line-height: 1.5; flex: 1; margin-bottom: 8px; }
.article-grid-body time { font-size: .78rem; color: var(--neutral); }

.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 32px; padding-top: 32px; padding-bottom: 48px; align-items: start; }
.article-main { min-width: 0; }
.breadcrumb { margin-bottom: 16px; font-size: .85rem; color: var(--neutral); }
.breadcrumb a { color: var(--text); text-decoration: none; }
.article-main h1 { font-size: 1.9rem; margin-bottom: 14px; color: #fff; line-height: 1.35; }
.article-meta-bar { display: flex; gap: 16px; margin-bottom: 22px; font-size: .85rem; color: var(--neutral); }
.meta-section { background: var(--primary); padding: 2px 12px; border-radius: 1px; font-size: .8rem; color: #fff; }
.article-cover { margin-bottom: 24px; max-width: 480px; }
.article-cover img { width: 100%; height: auto; border-radius: 2px; display: block; border: 1px dashed var(--border); }
.article-summary-box { background: var(--surface); border-left: 3px solid var(--text); padding: 16px 20px; margin-bottom: 24px; border-radius: 0 12px 12px 0; font-size: .92rem; color: var(--text); line-height: 1.65; }
.article-content { line-height: 1.85; color: rgba(232,232,232,.8); }
.article-content h2, .article-content h3 { margin: 24px 0 12px; color: var(--text); }
.article-content p { margin-bottom: 16px; }
.article-comments { margin-top: 40px; padding-top: 24px; border-top: 1px dashed var(--border); }
.article-comments h3 { font-size: 1.1rem; color: #fff; margin-bottom: 20px; }
.comment-list { display: flex; flex-direction: column; gap: 14px; }
.comment-item { display: flex; gap: 12px; padding: 16px; background: var(--surface); border: 1px dashed var(--border); border-radius: 2px; }
.comment-avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; background: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: .9rem; }
.comment-body { flex: 1; }
.comment-author { font-size: .85rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 4px; }
.comment-text { font-size: .88rem; color: rgba(232,232,232,.7); line-height: 1.5; margin: 0; }

.article-sidebar { position: sticky; top: 72px; }
.sidebar-section { background: var(--surface); border: 1px dashed var(--border); border-radius: 2px; padding: 20px; margin-bottom: 20px; }
.sidebar-section h4 { font-size: .9rem; color: var(--text); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px dashed var(--border); }
.sidebar-section ul { list-style: none; }
.sidebar-section li { padding: 6px 0; border-bottom: 1px dashed var(--border); }
.sidebar-section li:last-child { border-bottom: none; }
.sidebar-section li a { color: rgba(232,232,232,.65); text-decoration: none; font-size: .85rem; display: block; }
.sidebar-section li a:hover, .sidebar-section li a.current { color: var(--text); }

.auth-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 60px 20px; }
.auth-card { background: var(--surface); border: 1px dashed var(--border); border-radius: 2px; padding: 42px; width: 100%; max-width: 420px; box-shadow: none; }
.auth-card h1 { font-size: 1.7rem; color: #fff; text-align: center; margin-bottom: 4px; }
.auth-subtitle { text-align: center; color: var(--text); font-size: .88rem; margin-bottom: 28px; }
.auth-form { display: flex; flex-direction: column; gap: 18px; }
.form-field label { display: block; font-size: .82rem; color: var(--neutral); margin-bottom: 6px; }
.form-field input { width: 100%; padding: 11px 14px; border-radius: 2px; border: 1px dashed var(--border); background: var(--bg); color: #fff; font-size: .95rem; transition: border-color .2s; }
.form-field input:focus { outline: none; border-color: var(--text); box-shadow: 0 0 8px rgba(232,232,232,.15); }
.btn-submit { width: 100%; padding: 12px; border: none; border-radius: 2px; background: var(--primary); color: #fff; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all .25s; margin-top: 6px; }
.btn-submit:hover { box-shadow: 0 4px 20px rgba(232,232,232,.25); }
.auth-switch { text-align: center; margin-top: 20px; font-size: .88rem; color: var(--neutral); }
.auth-switch a { color: var(--text); text-decoration: none; font-weight: 600; }

.download-page { padding: 32px 0; }
.gp-header { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 20px; }
.gp-icon-wrap { flex-shrink: 0; }
.gp-icon-img { width: 72px; height: 72px; border-radius: 2px; border: 2px solid var(--text); object-fit: cover; }
.gp-icon-placeholder { width: 72px; height: 72px; border-radius: 2px; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 900; color: #fff; }
.gp-title-area { flex: 1; }
.gp-title { font-size: 1.5rem; color: var(--text); margin: 0 0 2px; font-weight: 700; }
.gp-developer { color: var(--text); font-size: .85rem; text-decoration: none; display: inline-block; margin-bottom: 10px; }
.gp-developer:hover { text-decoration: underline; }
.gp-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.gp-badge { font-size: .8rem; color: var(--neutral); display: flex; align-items: center; gap: 4px; }
.gp-install-row { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px dashed var(--border); }
.gp-install-btn { flex: 1; display: block; text-align: center; padding: 12px 0; border-radius: 2px; background: var(--primary); color: #fff; text-decoration: none; font-weight: 700; font-size: .95rem; transition: all .25s; }
.gp-install-btn:hover { box-shadow: 0 4px 20px rgba(232,232,232,.25); }
.gp-share-actions { display: flex; gap: 8px; }
.gp-action-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px dashed var(--border); background: transparent; color: var(--neutral); font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.gp-action-btn:hover { color: var(--text); border-color: var(--text); }
.gp-screenshots-section { margin-bottom: 28px; }
.gp-screenshots { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
.gp-screenshot { flex-shrink: 0; width: 160px; height: auto; border-radius: 2px; border: 1px dashed var(--border); object-fit: cover; }
.gp-screenshot-ph { flex-shrink: 0; width: 160px; height: 284px; border-radius: 2px; background: var(--surface); border: 1px dashed var(--border); }
.gp-section { padding: 24px 0; border-bottom: 1px dashed var(--border); }
.gp-section:last-child { border-bottom: none; }
.gp-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.gp-section-header h2 { font-size: 1.1rem; color: var(--text); font-weight: 600; margin: 0; }
.gp-arrow { color: var(--neutral); font-size: 1.1rem; }
.gp-about-text { font-size: .9rem; color: rgba(232,232,232,.7); line-height: 1.7; margin-bottom: 14px; }
.gp-about-text p { margin-bottom: 8px; }
.gp-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.gp-tag { padding: 4px 14px; border-radius: 2px; border: 1px solid var(--text); font-size: .8rem; color: var(--text); text-decoration: none; transition: all .2s; }
.gp-tag:hover { background: rgba(232,232,232,.08); }
.gp-rating-overview { display: flex; gap: 32px; align-items: center; margin-bottom: 20px; }
.gp-rating-big { text-align: center; flex-shrink: 0; min-width: 100px; }
.gp-rating-number { font-size: 3rem; font-weight: 700; color: var(--text); line-height: 1; }
.gp-rating-stars { color: var(--accent); font-size: .9rem; margin: 4px 0; }
.gp-rating-count { font-size: .78rem; color: var(--neutral); }
.gp-rating-bars { flex: 1; }
.gp-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.gp-bar-row span { font-size: .75rem; color: var(--neutral); width: 12px; text-align: right; }
.gp-bar { flex: 1; height: 10px; background: var(--surface); border-radius: 1px; overflow: hidden; }
.gp-bar-fill { height: 100%; background: var(--primary); border-radius: 1px; }
.gp-reviews { display: flex; flex-direction: column; gap: 16px; }
.gp-review-card { padding: 16px; background: var(--surface); border-radius: 2px; border: 1px dashed var(--border); }
.gp-review-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.gp-review-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 600; color: #fff; }
.gp-review-author { font-size: .88rem; color: var(--text); font-weight: 500; }
.gp-review-stars { color: var(--accent); font-size: .75rem; margin-bottom: 6px; }
.gp-review-text { font-size: .85rem; color: rgba(232,232,232,.6); line-height: 1.6; margin: 0; }
.gp-qr-section { text-align: center; padding: 32px 0; }
.gp-qr-section h2 { font-size: 1rem; color: var(--text); margin-bottom: 14px; }
.gp-qr-wrap { display: inline-block; }
.gp-qr-img { width: 140px; height: 140px; border-radius: 2px; border: 2px solid var(--text); }

.site-footer { background: var(--surface); color: rgba(232,232,232,.6); border-top: 1px dashed var(--border); }
.footer-subscribe-banner { background: var(--bg); border-bottom: 1px dashed var(--border); padding: 36px 0; }
.subscribe-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.subscribe-info h3 { color: var(--text); font-size: 1.15rem; margin-bottom: 4px; font-weight: 600; }
.subscribe-info p { color: rgba(232,232,232,.4); font-size: .9rem; margin: 0; }
.subscribe-form { display: flex; gap: 0; min-width: 320px; }
.subscribe-input { flex: 1; padding: 10px 14px; border: 1px dashed var(--border); border-right: none; border-radius: 2px 0 0 12px; background: var(--bg); color: var(--text); font-size: .9rem; outline: none; transition: border-color .2s; }
.subscribe-input:focus { border-color: var(--text); }
.subscribe-input::placeholder { color: rgba(232,232,232,.3); }
.subscribe-btn { padding: 10px 20px; border: none; border-radius: 0 12px 12px 0; background: var(--primary); color: #fff; font-size: .9rem; font-weight: 600; cursor: pointer; transition: all .2s; }
.subscribe-btn:hover { opacity: .85; }
.subscribe-msg { font-size: .82rem; margin-top: 8px; }
.footer-main { padding: 40px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 32px; }
.footer-col h4 { color: var(--text); margin-bottom: 14px; font-size: .88rem; font-weight: 600; padding-bottom: 10px; border-bottom: 1px dashed var(--border); }
.footer-about-text { font-size: .85rem; line-height: 1.6; margin-bottom: 10px; color: rgba(232,232,232,.5); }
.footer-link { color: var(--btn-blue); text-decoration: none; font-size: .85rem; }
.footer-link:hover { color: var(--text); }
.footer-links { list-style: none; }
.footer-links li { padding: 5px 0; }
.footer-links a { color: rgba(232,232,232,.5); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-contact { list-style: none; }
.footer-contact li { padding: 6px 0; font-size: .85rem; display: flex; align-items: center; gap: 8px; }
.footer-contact li i { color: var(--text); font-size: .95rem; }
.footer-qr { margin-top: 8px; text-align: center; }
.footer-qr img { width: 100px; height: 100px; border-radius: 1px; border: 1px dashed var(--border); }
.footer-qr span { display: block; font-size: .78rem; margin-top: 6px; color: rgba(232,232,232,.4); }
.qr-placeholder { width: 100px; height: 100px; border-radius: 1px; border: 2px dashed var(--border); margin: 0 auto; }
.footer-col-qr { text-align: center; }
.footer-bottom { background: var(--bg); padding: 16px 0; border-top: 1px dashed var(--border); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; font-size: .82rem; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { margin: 0; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(232,232,232,.4); text-decoration: none; font-size: .82rem; }
.footer-bottom-links a:hover { color: var(--text); }
.footer-page-content { padding: 40px 0; }
.footer-page-content h1 { font-size: 2rem; margin-bottom: 20px; color: #fff; }
.page-cover { margin-bottom: 24px; }
.page-cover img { width: 100%; height: auto; border-radius: 2px; display: block; border: 1px dashed var(--border); }

@media (max-width: 768px) {
    .main-nav .container { flex-direction: column; gap: 10px; }
    .nav-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
    .nav-auth { justify-content: center; }
    .hero-carousel { height: 300px; }
    .hero-overlay h1 { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .subscribe-banner-inner { flex-direction: column; align-items: stretch; text-align: center; }
    .subscribe-form { min-width: unset; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .intro-layout { grid-template-columns: 1fr; }
    .recent-updates { position: static; }
    .section-articles { padding-left: 0; }
    .article-chip { max-width: 100%; }
    .auth-card { padding: 28px 20px; }
    .section-banner-img { height: 200px; }
    .article-grid { grid-template-columns: 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .gp-rating-overview { flex-direction: column; gap: 16px; align-items: flex-start; }
}
@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .content-block { padding: 30px 0; }
    .hero-carousel { height: 220px; }
    .hero-overlay h1 { font-size: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
}