﻿/* Minimal Template – Clean & Modern */
:root {
    --primary: #00F5FF;
    --secondary: #BF00FF;
    --accent: #FFD700;
    --neutral: #8A9BA8;
    --bg: #050508;
    --text: #E0E6ED;
    --surface: #1A1A24;
    --surface2: #0F0F16;
    --border: #2D2D3D;
    --btn-red: #FF3E3E;
    --btn-blue: #2D8CFF;
    --btn-green: #00FF7F;
    --btn-yellow: #FFB800;
    --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.7;
    -webkit-font-smoothing: antialiased;
}

a { transition: color .2s, opacity .2s; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Header / Nav ── */
.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: blur(12px);
}
.main-nav .container {
    display: flex; align-items: center; justify-content: space-between;
    height: 56px;
}
.logo {
    color: var(--text); text-decoration: none; font-size: 1.15rem; font-weight: 700;
    display: flex; align-items: center; gap: 8px; letter-spacing: .3px;
}
.logo-img { height: 32px; width: 32px; object-fit: contain; border-radius: 6px; }
.logo-placeholder {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 6px;
    background: var(--primary); color: #fff;
    font-size: .95rem; font-weight: 800;
}
.nav-links { list-style: none; display: flex; gap: 6px; }
.nav-links a {
    color: var(--neutral); text-decoration: none; font-size: .85rem;
    font-weight: 500; padding: 6px 12px; border-radius: 6px;
    transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--text); background: var(--surface2);
}
.nav-auth { display: flex; gap: 8px; align-items: center; }
.btn-auth {
    text-decoration: none; font-size: .82rem; font-weight: 600;
    padding: 6px 16px; border-radius: 6px; transition: all .2s;
}
.btn-login { color: var(--text); border: 1px solid var(--border); background: transparent; }
.btn-login:hover, .btn-login.active { background: var(--surface2); border-color: var(--neutral); }
.btn-register { color: #fff; background: var(--primary); border: 1px solid var(--primary); }
.btn-register:hover, .btn-register.active { opacity: .85; }

/* ── Hamburger (mobile) ── */
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; padding: 4px; }

/* ── Hero Carousel ── */
.hero-carousel { position: relative; width: 100%; height: 420px; overflow: hidden; border-bottom: 1px solid var(--border); }
.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 .6s ease;
}
.carousel-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
    display: flex; align-items: flex-end; justify-content: flex-start;
    padding: 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.hero-overlay h1 {
    color: #fff; font-size: 2.4rem; font-weight: 800;
    line-height: 1.2; max-width: 600px;
}
.hero-tagline {
    color: var(--accent); font-size: .85rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
}
.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 2; background: rgba(0,0,0,.35); color: #fff;
    border: none; font-size: 1.3rem; width: 40px; height: 40px;
    cursor: pointer; border-radius: 50%; transition: background .2s;
    display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: rgba(0,0,0,.6); }
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }
.carousel-dots {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; gap: 8px;
}
.carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.3); cursor: pointer; transition: background .2s;
}
.carousel-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ── Placeholder ── */
.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: '\U0001F4F7'; font-size: 2rem; opacity: .3; }

/* ── Ad Banners ── */
.ad-banner { width: 100%; overflow: hidden; border-radius: 8px; margin: 0 auto; max-width: 1100px; }
.ad-banner a { display: block; }
.ad-banner img { width: 100%; height: auto; display: block; border-radius: 8px; transition: opacity .2s; }
.ad-banner img:hover { opacity: .9; }

/* ── Content Sections ── */
.content-section { padding: 56px 0; }
.content-section + .content-section { border-top: 1px solid var(--border); }
.section-heading {
    font-size: 1.35rem; font-weight: 700; color: var(--text); margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px;
}
.section-heading::before {
    content: ''; width: 4px; height: 22px; border-radius: 2px;
    background: var(--primary); flex-shrink: 0;
}
.content-body { font-size: .95rem; line-height: 1.8; color: var(--neutral); }
.content-body p { margin-bottom: 12px; }

/* ── Intro + Sidebar ── */
.intro-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.sidebar-recent {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 10px; padding: 20px; position: sticky; top: 72px;
}
.sidebar-recent h3 {
    font-size: .9rem; font-weight: 700; color: var(--accent);
    margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.sidebar-recent ul { list-style: none; }
.sidebar-recent li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.sidebar-recent li:last-child { border-bottom: none; }
.sidebar-recent li a { color: var(--text); text-decoration: none; font-size: .85rem; display: block; line-height: 1.4; }
.sidebar-recent li a:hover { color: var(--primary); }
.sidebar-recent li time { font-size: .75rem; color: var(--neutral); }

/* ── Features Grid ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 10px; padding: 24px;
    transition: transform .2s, border-color .2s;
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--primary); }
.feature-icon {
    font-size: 1.6rem; margin-bottom: 12px; width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px; background: var(--surface2); color: var(--primary);
}
.feature-card h3 { font-size: .95rem; margin-bottom: 6px; color: var(--text); font-weight: 600; }
.feature-card p { font-size: .85rem; color: var(--neutral); line-height: 1.6; margin: 0; }

/* ── Sections Overview ── */
.sections-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.section-block {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 10px; padding: 24px;
}
.section-block h3 { font-size: 1rem; margin-bottom: 14px; }
.section-block h3 a { color: var(--accent); text-decoration: none; font-weight: 700; }
.section-block h3 a:hover { color: var(--primary); }
.section-block ul { list-style: none; }
.section-block li { padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.section-block li:last-child { border-bottom: none; }
.section-block li a { color: var(--text); text-decoration: none; font-size: .85rem; flex: 1; }
.section-block li a:hover { color: var(--primary); }
.section-block li time { font-size: .75rem; color: var(--neutral); flex-shrink: 0; margin-left: 8px; }

/* ── Reviews ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.review-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 10px; padding: 20px;
}
.review-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.review-author { font-weight: 600; color: var(--secondary); font-size: .9rem; }
.review-stars { color: var(--accent); font-size: .85rem; }
.review-text { font-size: .88rem; line-height: 1.6; color: var(--neutral); margin: 0; }

/* ── Section Page ── */
.section-banner-wrap { position: relative; height: 260px; overflow: hidden; border-bottom: 1px solid var(--border); }
.section-banner-bg {
    width: 100%; height: 100%; background-size: cover; background-position: center;
}
.section-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.6) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
    padding-bottom: 32px; gap: 4px;
}
.section-banner-overlay h1 { color: #fff; font-size: 1.8rem; font-weight: 700; }
.section-banner-count { color: var(--accent); font-size: .85rem; }
.section-page-content { padding: 40px 0; }
.article-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px;
}
.article-grid-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 10px; overflow: hidden; text-decoration: none;
    transition: transform .2s, border-color .2s; display: flex; flex-direction: column;
}
.article-grid-card:hover { transform: translateY(-3px); border-color: var(--primary); }
.article-grid-img { width: 100%; height: 140px; 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: 16px; flex: 1; display: flex; flex-direction: column; }
.article-grid-body h2 { font-size: .95rem; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.article-grid-body .summary { font-size: .82rem; color: var(--neutral); line-height: 1.5; flex: 1; margin-bottom: 8px; }
.article-grid-body time { font-size: .75rem; color: var(--neutral); }

/* ── Article Page ── */
.article-layout {
    display: grid; grid-template-columns: 1fr 260px; gap: 40px;
    padding: 32px 0 48px; align-items: start;
}
.article-main { min-width: 0; }
.breadcrumb { margin-bottom: 16px; font-size: .82rem; color: var(--neutral); }
.breadcrumb a { color: var(--secondary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.article-main h1 { font-size: 1.7rem; margin-bottom: 10px; color: var(--text); line-height: 1.3; font-weight: 700; }
.article-meta-bar { display: flex; gap: 12px; margin-bottom: 20px; font-size: .82rem; color: var(--neutral); align-items: center; }
.meta-section { background: var(--surface2); padding: 2px 10px; border-radius: 4px; font-size: .78rem; color: var(--accent); }
.article-cover { margin-bottom: 24px; max-width: 520px; }
.article-cover img { width: 100%; height: auto; border-radius: 8px; display: block; border: 1px solid var(--border); }
.article-summary-box {
    background: var(--surface); border-left: 3px solid var(--accent);
    padding: 14px 18px; margin-bottom: 24px; border-radius: 0 8px 8px 0;
    font-size: .9rem; color: var(--text); line-height: 1.6;
}
.article-content { line-height: 1.8; color: var(--neutral); font-size: .95rem; }
.article-content h2, .article-content h3 { margin: 24px 0 10px; color: var(--text); font-weight: 600; }
.article-content p { margin-bottom: 14px; }

/* Article comments */
.article-comments { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }
.article-comments h3 { font-size: 1rem; color: var(--text); margin-bottom: 16px; font-weight: 600; }
.comment-list { display: flex; flex-direction: column; gap: 12px; }
.comment-item {
    display: flex; gap: 12px; padding: 14px;
    background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
}
.comment-avatar {
    width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
    background: var(--surface2); display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--accent); font-size: .85rem;
}
.comment-body { flex: 1; }
.comment-author { font-size: .82rem; font-weight: 600; color: var(--secondary); display: block; margin-bottom: 3px; }
.comment-text { font-size: .85rem; color: var(--neutral); line-height: 1.5; margin: 0; }

/* Article sidebar */
.article-sidebar { position: sticky; top: 72px; }
.sidebar-section {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 10px; padding: 18px; margin-bottom: 16px;
}
.sidebar-section h4 {
    font-size: .88rem; color: var(--accent); font-weight: 700;
    margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.sidebar-section ul { list-style: none; }
.sidebar-section li { padding: 5px 0; border-bottom: 1px solid var(--border); }
.sidebar-section li:last-child { border-bottom: none; }
.sidebar-section li a { color: var(--text); text-decoration: none; font-size: .82rem; line-height: 1.4; display: block; }
.sidebar-section li a:hover { color: var(--primary); }
.sidebar-section li a.current { color: var(--accent); font-weight: 600; }

/* ── Auth Pages ── */
.auth-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 60px 24px; }
.auth-card {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 12px; padding: 36px; width: 100%; max-width: 400px;
}
.auth-card h1 { font-size: 1.5rem; color: var(--text); text-align: center; margin-bottom: 4px; font-weight: 700; }
.auth-subtitle { text-align: center; color: var(--neutral); font-size: .85rem; margin-bottom: 24px; }
.auth-form { display: flex; flex-direction: column; gap: 16px; }
.form-field label { display: block; font-size: .82rem; color: var(--neutral); margin-bottom: 5px; font-weight: 500; }
.form-field input {
    width: 100%; padding: 10px 14px; border-radius: 8px;
    border: 1px solid var(--border); background: var(--bg); color: var(--text);
    font-size: .9rem; transition: border-color .2s;
}
.form-field input:focus { outline: none; border-color: var(--primary); }
.btn-submit {
    width: 100%; padding: 11px; border: none; border-radius: 8px;
    background: var(--primary); color: #fff; font-size: .95rem;
    font-weight: 600; cursor: pointer; transition: opacity .2s; margin-top: 4px;
}
.btn-submit:hover { opacity: .85; }
.auth-switch { text-align: center; margin-top: 18px; font-size: .85rem; color: var(--neutral); }
.auth-switch a { color: var(--primary); text-decoration: none; font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }

/* ── Footer Page ── */
.footer-page-content { padding: 32px 0; }
.footer-page-content h1 { font-size: 1.6rem; margin-bottom: 20px; color: var(--text); font-weight: 700; }
.page-cover { margin-bottom: 24px; }
.page-cover img { width: 100%; height: auto; border-radius: 8px; display: block; border: 1px solid var(--border); }

/* ── Download Page ── */
.download-page { padding: 32px 0; }
.gp-header { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 20px; }
.gp-icon-wrap { flex-shrink: 0; }
.gp-icon-img { width: 64px; height: 64px; border-radius: 14px; border: 1px solid var(--border); object-fit: cover; }
.gp-icon-placeholder {
    width: 64px; height: 64px; border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; font-weight: 800; color: #fff;
}
.gp-title-area { flex: 1; }
.gp-title { font-size: 1.4rem; color: var(--text); margin: 0 0 2px; font-weight: 700; }
.gp-developer { color: var(--secondary); font-size: .85rem; text-decoration: none; display: inline-block; margin-bottom: 8px; }
.gp-developer:hover { text-decoration: underline; }
.gp-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.gp-badge { font-size: .78rem; color: var(--neutral); display: flex; align-items: center; gap: 4px; }
.gp-badge i { font-size: .82rem; }
.gp-install-row {
    display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
    padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.gp-install-btn {
    flex: 1; display: block; text-align: center; padding: 11px 0;
    border-radius: 8px; background: var(--btn-blue); color: #fff;
    text-decoration: none; font-weight: 600; font-size: .9rem; transition: opacity .2s;
}
.gp-install-btn:hover { opacity: .85; }
.gp-share-actions { display: flex; gap: 8px; }
.gp-action-btn {
    width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border);
    background: transparent; color: var(--neutral); font-size: 1rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: color .2s, border-color .2s;
}
.gp-action-btn:hover { color: var(--secondary); border-color: var(--secondary); }
.gp-screenshots-section { margin-bottom: 24px; }
.gp-screenshots {
    display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px;
    scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.gp-screenshot { flex-shrink: 0; width: 150px; height: auto; border-radius: 8px; border: 1px solid var(--border); object-fit: cover; }
.gp-screenshot-ph { flex-shrink: 0; width: 150px; height: 266px; border-radius: 8px; background: var(--surface); border: 1px dashed var(--border); }
.gp-section { padding: 20px 0; border-bottom: 1px solid var(--border); }
.gp-section:last-child { border-bottom: none; }
.gp-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.gp-section-header h2 { font-size: 1.05rem; color: var(--text); font-weight: 600; margin: 0; }
.gp-arrow { color: var(--neutral); font-size: 1rem; }
.gp-about-text { font-size: .88rem; color: var(--neutral); line-height: 1.7; margin-bottom: 12px; }
.gp-about-text p { margin-bottom: 8px; }
.gp-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.gp-tag {
    padding: 4px 14px; border-radius: 16px; border: 1px solid var(--border);
    font-size: .78rem; color: var(--secondary); text-decoration: none; transition: background .2s;
}
.gp-tag:hover { background: var(--surface); }
.gp-rating-overview { display: flex; gap: 28px; align-items: center; margin-bottom: 16px; }
.gp-rating-big { text-align: center; flex-shrink: 0; min-width: 90px; }
.gp-rating-number { font-size: 2.6rem; font-weight: 700; color: var(--text); line-height: 1; }
.gp-rating-stars { color: var(--accent); font-size: .85rem; margin: 4px 0; }
.gp-rating-count { font-size: .75rem; color: var(--neutral); }
.gp-rating-bars { flex: 1; }
.gp-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; }
.gp-bar-row span { font-size: .72rem; color: var(--neutral); width: 12px; text-align: right; }
.gp-bar { flex: 1; height: 8px; background: var(--surface); border-radius: 4px; overflow: hidden; }
.gp-bar-fill { height: 100%; background: var(--secondary); border-radius: 4px; }
.gp-reviews { display: flex; flex-direction: column; gap: 12px; }
.gp-review-card { padding: 14px; background: var(--surface); border-radius: 8px; border: 1px solid var(--border); }
.gp-review-top { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
.gp-review-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--surface2); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 600; color: var(--neutral);
}
.gp-review-author { font-size: .85rem; color: var(--text); font-weight: 500; }
.gp-review-stars { color: var(--accent); font-size: .72rem; margin-bottom: 5px; }
.gp-review-text { font-size: .82rem; color: var(--neutral); line-height: 1.6; margin: 0; }
.gp-qr-section { text-align: center; padding: 28px 0; }
.gp-qr-section h2 { font-size: .95rem; color: var(--text); margin-bottom: 12px; }
.gp-qr-wrap { display: inline-block; }
.gp-qr-img { width: 120px; height: 120px; border-radius: 10px; border: 1px solid var(--border); }

/* ── Site Footer ── */
.site-footer { background: var(--surface); color: var(--neutral); border-top: 1px solid var(--border); }
.footer-subscribe-banner { background: var(--surface2); border-bottom: 1px solid var(--border); padding: 32px 0; }
.subscribe-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.subscribe-info h3 { color: var(--text); font-size: 1.05rem; margin-bottom: 3px; font-weight: 600; }
.subscribe-info p { color: var(--neutral); font-size: .85rem; margin: 0; }
.subscribe-form { display: flex; gap: 0; min-width: 300px; }
.subscribe-input {
    flex: 1; padding: 9px 14px; border: 1px solid var(--border); border-right: none;
    border-radius: 6px 0 0 6px; background: var(--bg); color: var(--text);
    font-size: .88rem; outline: none; transition: border-color .2s;
}
.subscribe-input:focus { border-color: var(--primary); }
.subscribe-input::placeholder { color: var(--neutral); opacity: .5; }
.subscribe-btn {
    padding: 9px 18px; border: none; border-radius: 0 6px 6px 0;
    background: var(--primary); color: #fff; font-size: .88rem; font-weight: 600;
    cursor: pointer; transition: opacity .2s;
}
.subscribe-btn:hover { opacity: .85; }
.subscribe-msg { font-size: .8rem; margin-top: 8px; }
.footer-main { padding: 36px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 28px; }
.footer-col h4 {
    color: var(--text); margin-bottom: 12px; font-size: .85rem; font-weight: 700;
    padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.footer-about-text { font-size: .82rem; line-height: 1.6; margin-bottom: 8px; color: var(--neutral); }
.footer-link { color: var(--primary); text-decoration: none; font-size: .82rem; font-weight: 500; }
.footer-link:hover { text-decoration: underline; }
.footer-links { list-style: none; }
.footer-links li { padding: 4px 0; }
.footer-links a { color: var(--neutral); text-decoration: none; font-size: .82rem; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact { list-style: none; }
.footer-contact li { padding: 5px 0; font-size: .82rem; display: flex; align-items: center; gap: 8px; }
.footer-contact li i { color: var(--primary); font-size: .9rem; }
.footer-qr { margin-top: 6px; text-align: center; }
.footer-qr img { width: 90px; height: 90px; border-radius: 8px; border: 1px solid var(--border); }
.footer-qr span { display: block; font-size: .75rem; margin-top: 5px; color: var(--neutral); }
.qr-placeholder { width: 90px; height: 90px; border-radius: 8px; border: 2px dashed var(--border); margin: 0 auto; }
.footer-col-qr { text-align: center; }
.footer-bottom { background: var(--bg); padding: 14px 0; border-top: 1px solid var(--border); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; font-size: .78rem; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { margin: 0; }
.footer-bottom-links { display: flex; gap: 14px; }
.footer-bottom-links a { color: var(--neutral); text-decoration: none; font-size: .78rem; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ── Responsive ── */
@media (max-width: 768px) {
    .nav-links, .nav-auth { display: none; }
    .nav-toggle { display: block; }
    .site-header.nav-open .nav-links,
    .site-header.nav-open .nav-auth {
        display: flex; flex-direction: column; position: absolute;
        top: 56px; left: 0; right: 0; background: var(--surface);
        border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 8px; z-index: 99;
    }
    .site-header.nav-open .nav-auth { flex-direction: row; }
    .hero-carousel { height: 280px; }
    .hero-overlay { padding: 24px; }
    .hero-overlay h1 { font-size: 1.6rem; }
    .intro-grid { grid-template-columns: 1fr; }
    .sidebar-recent { position: static; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .sections-grid { grid-template-columns: 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .subscribe-banner-inner { flex-direction: column; align-items: stretch; }
    .subscribe-form { min-width: 0; }
    .gp-rating-overview { flex-direction: column; gap: 16px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-carousel { height: 220px; }
    .hero-overlay h1 { font-size: 1.3rem; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .gp-header { flex-direction: column; align-items: center; text-align: center; }
    .gp-badges { justify-content: center; }
}

/* Login Hint Modal */
.login-hint-overlay{position:fixed;inset:0;z-index:9999;background:rgba(0,0,0,.45);display:flex;align-items:center;justify-content:center;backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);animation:lhFadeIn .2s ease}
@keyframes lhFadeIn{from{opacity:0}to{opacity:1}}
.login-hint-box{background:#fff;border-radius:16px;padding:32px 28px 24px;max-width:360px;width:90%;text-align:center;box-shadow:0 20px 60px rgba(0,0,0,.2);animation:lhSlideUp .25s ease}
@keyframes lhSlideUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.login-hint-icon{font-size:2.4rem;color:var(--btn-red,#e60012);margin-bottom:12px}
.login-hint-text{font-size:.95rem;color:#374151;line-height:1.6;margin:0 0 20px}
.login-hint-actions{display:flex;gap:10px;justify-content:center}
.login-hint-btn{padding:9px 24px;border-radius:8px;font-size:.88rem;font-weight:600;cursor:pointer;text-decoration:none;border:none;transition:all .15s}
.login-hint-cancel{background:#f3f4f6;color:#374151}
.login-hint-cancel:hover{background:#e5e7eb}
.login-hint-go{background:var(--btn-red,#e60012);color:#fff}
.login-hint-go:hover{background:var(--primary,#1a73e8);box-shadow:0 4px 12px rgba(0,0,0,.2)}