﻿/*
Theme Name: PoaGames
Theme URI: https://poagames.com
Author: PoaGames Team
Description: Tema oficial do PoaGames - Seu site de gaming favorito
Version: 1.0
Text Domain: poagames
*/

        :root {
            --primary: #ff0055;
            --primary-dark: #cc0044;
            --secondary: #00d4ff;
            --accent: #ffcc00;
            --bg-dark: #0a0a0f;
            --bg-card: #12121a;
            --bg-card-hover: #1a1a25;
            --text: #ffffff;
            --text-muted: #8888aa;
            --gradient: linear-gradient(135deg, #ff0055, #00d4ff);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-dark);
            color: var(--text);
            line-height: 1.6;
        }

        /* Header */
        .pg-header {
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 0, 85, 0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0 2rem;
        }

        .pg-header-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .pg-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            letter-spacing: 2px;
        }

        .pg-logo span {
            color: var(--accent);
            -webkit-text-fill-color: var(--accent);
        }

        .pg-nav {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .pg-nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s;
            position: relative;
            padding: 0.5rem 0;
        }

        .pg-nav a:hover,
        .pg-nav a.active {
            color: var(--text);
        }

        .pg-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s;
        }

        .pg-nav a:hover::after,
        .pg-nav a.active::after {
            width: 100%;
        }

        .pg-header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .pg-lang-toggle {
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 0.4rem 0.8rem;
            color: var(--text);
            cursor: pointer;
            font-size: 0.85rem;
            transition: all 0.3s;
        }

        .pg-lang-toggle:hover {
            border-color: var(--primary);
        }

        .pg-search-btn {
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.2rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .pg-search-btn:hover {
            color: var(--primary);
        }

        /* Hero Section */
        .pg-hero {
            position: relative;
            height: 70vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .pg-hero-bg {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 20% 50%, rgba(255, 0, 85, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.3) 0%, transparent 50%),
                url('https://images.unsplash.com/photo-1542751371-adc38448a05e?w=1920') center/cover;
            filter: brightness(0.4);
        }

        .pg-hero-content {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        .pg-hero-badge {
            display: inline-block;
            background: var(--gradient);
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pg-hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            max-width: 700px;
        }

        .pg-hero h1 span {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pg-hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 500px;
            margin-bottom: 2rem;
        }

        .pg-hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .pg-btn {
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

        .pg-btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 4px 20px rgba(255, 0, 85, 0.4);
        }

        .pg-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px rgba(255, 0, 85, 0.5);
        }

        .pg-btn-secondary {
            background: rgba(255,255,255,0.1);
            color: white;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .pg-btn-secondary:hover {
            background: rgba(255,255,255,0.15);
            border-color: var(--secondary);
        }

        /* Sections */
        .pg-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .pg-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .pg-section-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
        }

        .pg-section-title span {
            color: var(--primary);
        }

        .pg-view-all {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
        }

        .pg-view-all:hover {
            color: var(--text);
        }

        /* Categories */
        .pg-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1rem;
            margin-bottom: 4rem;
        }

        .pg-category {
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s;
        }

        .pg-category:hover {
            background: var(--bg-card-hover);
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .pg-category i {
            font-size: 2rem;
            margin-bottom: 0.8rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .pg-category h3 {
            font-size: 1rem;
            font-weight: 600;
        }

        .pg-category p {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 0.3rem;
        }

        /* Articles Grid */
        .pg-articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1.5rem;
        }

        .pg-article-card {
            background: var(--bg-card);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s;
            text-decoration: none;
            color: var(--text);
        }

        .pg-article-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .pg-article-thumb {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .pg-article-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .pg-article-card:hover .pg-article-thumb img {
            transform: scale(1.1);
        }

        .pg-article-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: var(--primary);
            padding: 0.3rem 0.8rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .pg-article-content {
            padding: 1.5rem;
        }

        .pg-article-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 0.8rem;
        }

        .pg-article-meta span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .pg-article-card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .pg-article-card:hover h3 {
            color: var(--primary);
        }

        .pg-article-excerpt {
            font-size: 0.9rem;
            color: var(--text-muted);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Featured Article */
        .pg-featured {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 1.5rem;
            margin-bottom: 4rem;
        }

        .pg-featured-main {
            background: var(--bg-card);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s;
            text-decoration: none;
            color: var(--text);
        }

        .pg-featured-main:hover {
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .pg-featured-main .pg-article-thumb {
            height: 350px;
        }

        .pg-featured-main .pg-article-content {
            padding: 2rem;
        }

        .pg-featured-main h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .pg-featured-main:hover h3 {
            color: var(--primary);
        }

        .pg-featured-main p {
            color: var(--text-muted);
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .pg-featured-sidebar {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .pg-featured-small {
            background: var(--bg-card);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s;
            text-decoration: none;
            color: var(--text);
            flex: 1;
            display: flex;
        }

        .pg-featured-small:hover {
            border-color: var(--primary);
        }

        .pg-featured-small .pg-thumb-small {
            width: 120px;
            min-height: 100%;
            object-fit: cover;
        }

        .pg-featured-small .pg-content-small {
            padding: 1rem;
            flex: 1;
        }

        .pg-featured-small h4 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .pg-featured-small:hover h4 {
            color: var(--primary);
        }

        .pg-featured-small .pg-meta-small {
            font-size: 0.8rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Newsletter */
        .pg-newsletter {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin: 4rem 2rem;
        }

        .pg-newsletter::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 0, 85, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
        }

        .pg-newsletter-content {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .pg-newsletter h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .pg-newsletter p {
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        .pg-newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .pg-newsletter-form input {
            flex: 1;
            padding: 1rem 1.5rem;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.05);
            color: var(--text);
            font-size: 1rem;
        }

        .pg-newsletter-form input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .pg-newsletter-form button {
            padding: 1rem 2rem;
            border-radius: 8px;
            background: var(--gradient);
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .pg-newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 0, 85, 0.4);
        }

        /* Footer */
        .pg-footer {
            background: var(--bg-card);
            border-top: 1px solid rgba(255,255,255,0.05);
            margin-top: 4rem;
        }

        .pg-footer-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem 2rem;
        }

        .pg-footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .pg-footer-brand .pg-logo {
            display: inline-block;
            margin-bottom: 1rem;
        }

        .pg-footer-brand p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .pg-social-links {
            display: flex;
            gap: 1rem;
        }

        .pg-social-links a {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s;
        }

        .pg-social-links a:hover {
            background: var(--primary);
            color: white;
        }

        .pg-footer-column h4 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--text);
        }

        .pg-footer-column ul {
            list-style: none;
        }

        .pg-footer-column li {
            margin-bottom: 0.8rem;
        }

        .pg-footer-column a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .pg-footer-column a:hover {
            color: var(--primary);
        }

        .pg-footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .pg-footer-bottom p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .pg-footer-bottom-links {
            display: flex;
            gap: 2rem;
        }

        .pg-footer-bottom-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .pg-footer-bottom-links a:hover {
            color: var(--text);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .pg-featured {
                grid-template-columns: 1fr;
            }

            .pg-featured-sidebar {
                flex-direction: row;
            }

            .pg-footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .pg-hero h1 {
                font-size: 2.5rem;
            }

            .pg-nav {
                display: none;
            }

            .pg-articles-grid {
                grid-template-columns: 1fr;
            }

            .pg-featured-sidebar {
                flex-direction: column;
            }

            .pg-featured-small {
                flex-direction: column;
            }

            .pg-featured-small .pg-thumb-small {
                width: 100%;
                height: 150px;
            }

            .pg-newsletter-form {
                flex-direction: column;
            }

            .pg-footer-grid {
                grid-template-columns: 1fr;
            }

            .pg-footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* ==================== POST SINGLE ==================== */
        .pg-post-hero {
            position: relative;
            height: 60vh;
            min-height: 420px;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
        }

        .pg-post-hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            filter: brightness(0.35);
        }

        .pg-post-hero-content {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem 3rem;
            width: 100%;
        }

        .pg-post-hero-meta {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .pg-post-cat {
            background: var(--gradient);
            padding: 0.35rem 1rem;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #fff;
            text-decoration: none;
        }

        .pg-post-meta-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .pg-post-hero-content h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.15;
            max-width: 900px;
        }

        .pg-post-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        .pg-post-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 3rem;
        }

        .pg-post-article {
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 16px;
            padding: 2rem;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .pg-post-article h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .pg-post-article h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }

        .pg-post-article p {
            margin-bottom: 1.2rem;
            color: #d0d0e0;
        }

        .pg-post-article a {
            color: var(--secondary);
        }

        .pg-post-article ul,
        .pg-post-article ol {
            margin: 0 0 1.2rem 1.5rem;
            color: #d0d0e0;
        }

        .pg-post-article blockquote {
            border-left: 4px solid var(--primary);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            background: var(--bg-card-hover);
            border-radius: 0 12px 12px 0;
            color: var(--text);
            font-style: italic;
        }

        .pg-post-article img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 1.5rem 0;
        }

        .pg-post-tags {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .pg-tag {
            display: inline-block;
            background: var(--bg-card-hover);
            color: var(--secondary);
            padding: 0.3rem 0.9rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin: 0.3rem 0.3rem 0 0;
            text-decoration: none;
        }

        .pg-post-pagination {
            margin: 1.5rem 0;
        }

        .pg-related {
            margin-top: 3rem;
        }

        .pg-related .pg-section-title {
            margin-bottom: 1.5rem;
        }

        /* Sidebar */
        .pg-post-sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .pg-sidebar-widget {
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 16px;
            padding: 1.5rem;
        }

        .pg-sidebar-widget h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .pg-sidebar-post {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
            text-decoration: none;
            color: var(--text);
        }

        .pg-sidebar-post:hover span {
            color: var(--primary);
        }

        .pg-sidebar-post img {
            width: 50px;
            height: 50px;
            object-fit: cover;
            border-radius: 8px;
            flex-shrink: 0;
        }

        .pg-sidebar-post span {
            font-size: 0.9rem;
            line-height: 1.3;
            transition: color 0.3s;
        }

        .pg-sidebar-cats {
            list-style: none;
        }

        .pg-sidebar-cats li {
            margin: 0.4rem 0;
        }

        .pg-sidebar-cats a {
            color: var(--text-muted);
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            transition: color 0.3s;
        }

        .pg-sidebar-cats a:hover {
            color: var(--secondary);
        }

        /* ==================== ARCHIVE / PAGE HERO ==================== */
        .pg-archive-hero,
        .pg-page-hero {
            background:
                radial-gradient(ellipse at 20% 50%, rgba(255, 0, 85, 0.25) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.25) 0%, transparent 50%),
                var(--bg-dark);
            padding: 5rem 2rem;
            text-align: center;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .pg-archive-hero-content,
        .pg-page-hero-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .pg-archive-badge {
            display: inline-block;
            background: var(--gradient);
            padding: 0.4rem 1.4rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .pg-archive-hero h1,
        .pg-page-hero h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8rem;
            font-weight: 900;
        }

        .pg-archive-hero p {
            color: var(--text-muted);
            margin-top: 1rem;
            font-size: 1.1rem;
        }

        .pg-page-content {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.05rem;
            line-height: 1.8;
            color: #d0d0e0;
        }

        .pg-page-content h2,
        .pg-page-content h3 {
            font-family: 'Orbitron', sans-serif;
            margin: 1.5rem 0 1rem;
        }

        .pg-page-content a {
            color: var(--secondary);
        }

        .pg-page-content img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 1.5rem 0;
        }

        /* Pagination */
        .pg-pagination {
            margin-top: 3rem;
            text-align: center;
        }

        .pg-pagination .nav-links {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .pg-pagination .page-numbers {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 0.8rem;
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s;
        }

        .pg-pagination .page-numbers:hover,
        .pg-pagination .page-numbers.current {
            background: var(--gradient);
            border-color: transparent;
        }

        /* Comments */
        .comments-area {
            margin-top: 3rem;
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 16px;
            padding: 2rem;
        }

        .comments-area .comment-list {
            list-style: none;
        }

        .comments-area .comment-body {
            background: var(--bg-card-hover);
            border-radius: 12px;
            padding: 1.2rem;
            margin: 1rem 0;
        }

        .comments-area .comment-meta {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }

        .comments-area .comment-form input[type="text"],
        .comments-area .comment-form input[type="email"],
        .comments-area .comment-form input[type="url"],
        .comments-area .comment-form textarea {
            width: 100%;
            background: var(--bg-card-hover);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            color: var(--text);
            padding: 0.8rem 1rem;
            margin: 0.3rem 0 1rem;
            font-family: 'Inter', sans-serif;
        }

        .comments-area .comment-form .submit {
            background: var(--gradient);
            color: #fff;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
        }

        @media (max-width: 900px) {
            .pg-post-layout {
                grid-template-columns: 1fr;
            }

            .pg-post-hero {
                height: 45vh;
                min-height: 340px;
            }

            .pg-post-hero-content h1 {
                font-size: 2rem;
            }

            .pg-archive-hero h1,
            .pg-page-hero h1 {
                font-size: 2.2rem;
            }
        }

        /* Language toggle as link */
        a.pg-lang-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            text-decoration: none;
            font-weight: 600;
            white-space: nowrap;
        }

        a.pg-lang-toggle:hover {
            border-color: var(--primary);
            color: var(--text);
        }
