/* ═══ XPLAY άρθρο / review ═══ */

.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 48px; padding: 36px 0 0; }

.entry-title { font-size: 44px; }
.entry-dek { font-size: 19px; color: var(--ink-2); line-height: 1.5; margin: 16px 0 0; max-width: 62ch; }

.byline { display: flex; align-items: center; gap: 14px; margin: 22px 0; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 13.5px; }
.byline .avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg, var(--accent), var(--accent-2)); flex: none; }
.byline .avatar img { display: block; width: 100%; height: 100%; object-fit: cover; }
.byline .who strong { display: block; font-size: 14px; }
.byline .right { margin-left: auto; color: var(--ink-2); font-variant-numeric: tabular-nums; text-align: right; }

figure.lead-media { margin: 0 0 8px; }
figure.lead-media .thumb { aspect-ratio: 16/9; }
figure.lead-media figcaption { font-size: 12.5px; color: var(--ink-2); margin-top: 8px; }

/* ── Prose ── */
.prose { max-width: 68ch; }
.prose > p:first-of-type { font-size: 19px; font-weight: 500; }
.prose h2 { font-size: 27px; margin: 40px 0 14px; }
.prose h3 { font-size: 22px; margin: 32px 0 12px; }
.prose p { margin: 0 0 18px; }
.prose a { color: var(--accent); font-weight: 600; box-shadow: inset 0 -1px 0 var(--accent); }
.prose img { border-radius: 6px; }
.prose blockquote { margin: 30px 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--accent-2); font-size: 21px; font-weight: 600; line-height: 1.45; }
.prose ul, .prose ol { padding-left: 24px; margin: 0 0 18px; }
.prose li { margin: 6px 0; }
.prose iframe { max-width: 100%; }

/* ── Review box ── */
.reviewbox { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; margin: 34px 0; background: var(--card); scroll-margin-top: 90px; }
.reviewbox .head { display: flex; align-items: center; gap: 24px; padding: 24px 26px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }
.reviewbox .score-ring { flex: none; text-align: center; }
.reviewbox .score-big { font-family: var(--font-display); font-weight: 800; font-size: 62px; line-height: 0.9; font-variant-numeric: tabular-nums; }
.reviewbox .score-big small { font-size: 22px; opacity: 0.72; }
.reviewbox .score-dots { display: flex; gap: 5px; justify-content: center; margin-top: 9px; }
.reviewbox .dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, 0.32); }
.reviewbox .dot.on { background: #fff; }
.reviewbox .dot.half { background: linear-gradient(90deg, #fff 50%, rgba(255, 255, 255, 0.32) 50%); }
.reviewbox .head-body { min-width: 0; }
.reviewbox .verdict-title { font-family: var(--font-display); font-size: 30px; font-weight: 800; line-height: 1.08; margin: 0; color: #fff; }

.reviewbox .conclusion { padding: 20px 26px; font-size: 16px; line-height: 1.6; }
.reviewbox .conclusion p { margin: 0; }

.reviewbox .cols { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.reviewbox .col { padding: 18px 26px; font-size: 15px; }
.reviewbox .col + .col { border-left: 1px solid var(--line); }
.reviewbox .col h4 { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 10px; }
.reviewbox .col.pros h4 { color: var(--score); }
.reviewbox .col.cons h4 { color: var(--bad); }
.reviewbox .col ul { margin: 0; padding: 0; list-style: none; }
.reviewbox .col li { padding: 4px 0 4px 20px; position: relative; }
.reviewbox .col.pros li::before { content: "+"; position: absolute; left: 0; font-weight: 700; color: var(--score); }
.reviewbox .col.cons li::before { content: "−"; position: absolute; left: 0; font-weight: 700; color: var(--bad); }

.reviewbox .criterias { border-top: 1px solid var(--line); padding: 18px 26px; display: grid; gap: 10px; }
.reviewbox .crit { display: grid; grid-template-columns: 130px 1fr 44px; align-items: center; gap: 14px; font-size: 13.5px; }
.reviewbox .crit .bar { height: 6px; border-radius: 3px; background: var(--bg-soft); overflow: hidden; }
.reviewbox .crit .bar span { display: block; height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.reviewbox .crit .val { font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; }


.reviewbox .foot { border-top: 1px solid var(--line); padding: 14px 26px; display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.reviewbox .buy-btn { background: var(--ink); color: var(--bg); font-weight: 700; font-size: 13.5px; padding: 9px 18px; border-radius: 6px; }

@media (max-width: 600px) {
	.reviewbox .head { gap: 16px; padding: 18px; }
	.reviewbox .score-big { font-size: 46px; }
	.reviewbox .verdict-title { font-size: 22px; }
	.reviewbox .conclusion { padding: 16px 18px; font-size: 15px; }
	.reviewbox .cols { grid-template-columns: 1fr; }
	.reviewbox .col + .col { border-left: 0; border-top: 1px solid var(--line); }
}

/* ── Follow box ── */
.follow { display: flex; align-items: center; gap: 16px; border: 1px solid var(--line); border-radius: 8px; padding: 16px 20px; margin: 36px 0 0; font-size: 14.5px; background: var(--bg-soft); }
.follow .g { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--accent); flex: none; }
.follow a { color: var(--accent); font-weight: 700; }

/* ── Tags & author ── */
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 26px 0 0; }
.tag-chip { font-size: 12.5px; font-weight: 600; border: 1px solid var(--line); border-radius: 99px; padding: 4px 12px; color: var(--ink-2); }
.tag-chip:hover { border-color: var(--accent-2); color: var(--ink); }

.author-card { display: grid; grid-template-columns: 64px 1fr; gap: 18px; border-top: 3px solid var(--ink); margin-top: 40px; padding-top: 22px; }
.author-card .avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.author-card .avatar img { display: block; width: 100%; height: 100%; object-fit: cover; }
.author-card h3 { font-family: var(--font-body); font-size: 17px; font-weight: 700; margin: 0; }
.author-card p { margin: 6px 0 0; font-size: 14.5px; color: var(--ink-2); }

/* ── Related ── */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rel-item .thumb { aspect-ratio: 16/10; }
.rel-item h3 { font-family: var(--font-body); font-size: 16.5px; font-weight: 700; line-height: 1.35; margin: 10px 0 0; }
.rel-item .meta { margin-top: 5px; }

@media (max-width: 900px) {
	.article-grid { grid-template-columns: 1fr; }
	.entry-title { font-size: 32px; }
	.related { grid-template-columns: 1fr; }
	.reviewbox .cols, .reviewbox .crit { grid-template-columns: 1fr; }
	.reviewbox .col + .col { border-left: 0; border-top: 1px solid var(--line); }
	.reviewbox .crit { grid-template-columns: 100px 1fr 40px; }
}

/* ── «Με μια ματιά» ── */
.glance { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-soft); padding: 20px 24px 18px; margin: 28px 0; }
.glance::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.glance-head { display: flex; align-items: center; gap: 11px; margin: 0 0 13px; }
.glance-icon { flex: none; width: 30px; height: 30px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center;
               background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; box-shadow: 0 4px 10px rgba(109, 40, 217, 0.28); }
.glance-icon svg { width: 17px; height: 17px; display: block; }
.glance h2 { font-family: var(--font-display); font-size: 21px; font-weight: 800; line-height: 1; margin: 0; }
.glance ul { list-style: none; margin: 0; padding: 0; }
.glance li { position: relative; padding: 0 0 0 24px; margin: 9px 0; font-size: 15.5px; line-height: 1.55; }
.glance li::before { content: ""; position: absolute; left: 2px; top: 0.52em; width: 9px; height: 9px; border-radius: 3px; transform: rotate(45deg);
                     background: linear-gradient(135deg, var(--accent), var(--accent-2)); }

/* ── Ψηφοφορία αναγνωστών ── */
.poll { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-soft); padding: 20px 24px 18px; margin: 30px 0; }
.poll::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.poll-head { display: flex; align-items: center; gap: 11px; margin: 0 0 14px; }
.poll-icon { flex: none; width: 30px; height: 30px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center;
             background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; box-shadow: 0 4px 10px rgba(109, 40, 217, 0.28); }
.poll-icon svg { width: 17px; height: 17px; display: block; }
.poll-head h2 { font-family: var(--font-display); font-size: 21px; font-weight: 800; line-height: 1.15; margin: 0; }
.poll-options { display: grid; gap: 9px; }
.poll-opt { position: relative; overflow: hidden; display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; cursor: pointer;
            border: 1px solid var(--line); border-radius: 9px; background: var(--card); padding: 11px 14px;
            font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--ink); transition: border-color 0.15s; }
.poll-opt:hover { border-color: var(--accent); }
.poll-opt:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.poll-bar { position: absolute; inset: 0 auto 0 0; width: 0; background: linear-gradient(90deg, rgba(109, 40, 217, 0.13), rgba(225, 0, 255, 0.13)); transition: width 0.5s ease; pointer-events: none; }
.poll-label { position: relative; flex: 1; }
.poll-pct { position: relative; font-weight: 800; color: var(--accent); font-variant-numeric: tabular-nums; }
.poll.voted .poll-opt { cursor: default; }
.poll.voted .poll-opt:hover { border-color: var(--line); }
.poll.voted .poll-opt.mine { border-color: var(--accent); }
@media (max-width: 600px) {
	.poll { padding: 17px 18px 15px; }
	.poll-head h2 { font-size: 19px; }
	.poll-opt { font-size: 14.5px; }
}

/* ── Στοιχεία (developer, εκδότης, πλατφόρμες…) ── */
.infobox { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-soft); padding: 16px 20px 14px; margin: 0 0 26px; }
.infobox.has-cover { display: grid; grid-template-columns: 200px 1fr; gap: 20px; align-items: start; padding: 16px; }
.infobox-cover { border-radius: 8px; overflow: hidden; background: var(--card); }
.infobox-cover img { display: block; width: 100%; height: 100%; aspect-ratio: 16/9; object-fit: cover; margin: 0; }
.infobox-body { min-width: 0; }
.infobox-title { font-family: var(--font-display); font-size: 19px; font-weight: 800; line-height: 1.1; margin-bottom: 12px; }
.infobox dl { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px 22px; margin: 0; }
.infobox-row { min-width: 0; }
.infobox dt { font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); }
.infobox dd { margin: 3px 0 0; font-size: 14.5px; font-weight: 600; line-height: 1.35; color: var(--ink); }
@media (max-width: 600px) {
	.infobox { padding: 14px 16px 12px; }
	.infobox.has-cover { grid-template-columns: 1fr; gap: 14px; }
	.infobox dl { grid-template-columns: 1fr 1fr; gap: 10px 16px; }
	.infobox dd { font-size: 13.5px; }
}

/* ── Ταμπέλα βαθμολογίας (αρχή του review) ── */
.review-chip { display: flex; align-items: center; gap: 16px; border: 1px solid var(--line); border-left: 4px solid transparent;
               border-image: linear-gradient(180deg, var(--accent), var(--accent-2)) 1; border-radius: var(--radius);
               background: var(--bg-soft); padding: 14px 18px; margin: 0 0 20px; }
.rc-score { flex: none; font-family: var(--font-display); font-weight: 800; font-size: 34px; line-height: 1; color: var(--accent); }
.rc-score small { font-size: 16px; color: var(--ink-2); font-weight: 700; }
.rc-body { min-width: 0; }
.rc-title { font-size: 16px; font-weight: 700; line-height: 1.3; }
.rc-meta { margin-top: 4px; font-size: 12.5px; color: var(--ink-2); display: flex; flex-wrap: wrap; gap: 4px 14px; }
.rc-meta strong { color: var(--ink); }
.rc-meta a { color: var(--accent); font-weight: 700; }
.reviewbox { scroll-margin-top: 90px; }
@media (max-width: 600px) {
	.review-chip { padding: 12px 14px; gap: 12px; }
	.rc-score { font-size: 28px; }
	.rc-title { font-size: 15px; }
}

/* ── «Πρόσθεσε το XPLAYGR στο Google» (κάτω από την κεντρική εικόνα) ── */
.xplay-google-source-follow { margin: 14px 0 22px; }
.xplay-google-source-follow a { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 999px;
                                background: var(--card); padding: 9px 18px 9px 14px; font-size: 14px; font-weight: 700; color: var(--ink); }
.xplay-google-source-follow a:hover { border-color: var(--accent); }
.xplay-google-icon { display: inline-flex; }
.xplay-google-icon svg { display: block; }
@media (max-width: 600px) {
	.xplay-google-source-follow a { font-size: 13.5px; padding: 8px 15px 8px 12px; }
}

/* ── Κοινοποίηση ── */
.share-row { display: flex; gap: 8px; }
.byline .share-row { margin-left: 14px; }
.share-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 34px; height: 34px; border-radius: 50%;
	border: 1px solid var(--line); background: var(--card); color: var(--ink-2);
	cursor: pointer; padding: 0;
}
.share-btn:hover { border-color: var(--accent); color: var(--accent); }
.share-btn svg { width: 16px; height: 16px; }
.share-btn.copied { border-color: var(--score); color: var(--score); }

/* ── Σχόλια ── */
.comments-area { margin-top: 44px; }
.comment-list { list-style: none; margin: 0; padding: 0; }
.comment-list .children { list-style: none; margin: 14px 0 0; padding-left: 26px; border-left: 2px solid var(--line); }
.comment-list .comment-body {
	background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 14px 16px; margin-bottom: 14px; font-size: 15px;
}
.comment-list .comment-author { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.comment-list .comment-author .avatar { border-radius: 50%; }
.comment-list .comment-author .says { display: none; }
.comment-list .comment-metadata { font-size: 12px; margin: 4px 0 8px; }
.comment-list .comment-metadata a { color: var(--ink-2); }
.comment-list .comment-content p:last-child { margin-bottom: 0; }
.comment-list .reply { font-size: 12.5px; font-weight: 700; margin-top: 8px; }
.comment-list .reply a { color: var(--accent); }
.comment-respond { margin-top: 26px; }
.comment-respond .comment-reply-title { font-size: 22px; margin-bottom: 12px; }
.comment-respond label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
	width: 100%; padding: 10px 12px; margin-bottom: 12px;
	border: 1px solid var(--line); border-radius: 8px;
	background: var(--card); color: var(--ink); font: inherit; font-size: 15px;
}
.comment-respond input:focus, .comment-respond textarea:focus { outline: 2px solid var(--accent); outline-offset: 0; border-color: var(--accent); }
.comment-respond .form-submit { margin: 0; }
.comment-respond .btn.primary {
	border: 0; border-radius: 999px; padding: 11px 22px; cursor: pointer;
	background: var(--accent); color: #fff; font: inherit; font-size: 14.5px; font-weight: 700;
}
.comment-respond .btn.primary:hover { filter: brightness(1.08); }
.comment-respond .comment-form-cookies-consent { display: flex; gap: 8px; align-items: baseline; font-size: 13px; color: var(--ink-2); }
.comment-respond .comment-form-cookies-consent label { font-weight: 400; display: inline; }
.comments-closed { color: var(--ink-2); font-size: 14.5px; }
.comment-navigation, .comments-area .nav-links { display: flex; justify-content: space-between; font-weight: 700; font-size: 14px; margin: 6px 0 14px; }
@media (max-width: 600px) {
	.byline { flex-wrap: wrap; }
	.byline .share-row { margin-left: 0; width: 100%; }
}
