    /* ============================================
       IPTV BRAZIL - BLOGS PAGE STYLES
       ============================================ */

    :root {
      --primary: #e50914;
      --primary-hover: #f40612;
      --secondary: #ff3b6b;
      --accent: #00ff88;
      --accent-hover: #00e67a;
      --dark: #0b0b0f;
      --darker: #0a0a0f;
      --card-bg: rgba(255, 255, 255, 0.05);
      --text-primary: #ffffff;
      --text-secondary: #cccccc;
      --text-muted: #888888;
      --border-color: rgba(255, 255, 255, 0.1);
      --gradient-btn: linear-gradient(135deg, #e50914, #ff3b6b);
      --font-head: 'Plus Jakarta Sans', sans-serif;
      --font-body: 'Inter', sans-serif;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--dark);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    a {
      color: var(--accent);
      text-decoration: none;
    }

    a:hover {
      color: var(--accent-hover);
    }

    /* ── CONTAINER ───────────────────────────── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ── HEADER ───────────────────────────── */
    .header {
      background: rgba(0, 0, 0, 0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-color);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 15px 0;
    }

    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header__logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 24px;
      font-weight: 800;
      text-decoration: none;
      color: var(--text-primary);
    }

    .header__logo-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .header__logo-text span:first-child {
      color: var(--accent);
    }

    .header__nav {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .header__links {
      display: flex;
      list-style: none;
      gap: 25px;
    }

    .header__links a {
      color: var(--text-secondary);
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .header__links a:hover,
    .header__links a.active {
      color: var(--accent);
    }

    .header__cta {
      display: flex;
      gap: 15px;
    }

    /* ── HERO ───────────────────────────── */
    .hero {
      background: linear-gradient(135deg, #0b0b0f 0%, #1a1a2e 100%);
      padding: 120px 0 80px;
      text-align: center;
    }

    .hero__title {
      font-size: 48px;
      font-weight: 800;
      font-family: var(--font-head);
      margin-bottom: 20px;
      background: linear-gradient(135deg, #ffffff, #00ff88);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero__subtitle {
      font-size: 20px;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto;
    }

    /* ── BLOG GRID ───────────────────────────── */
    .blog-grid {
      padding: 80px 0;
    }

    .blog-grid__title {
      text-align: center;
      font-size: 36px;
      font-weight: 700;
      font-family: var(--font-head);
      margin-bottom: 20px;
    }

    .blog-grid__subtitle {
      text-align: center;
      color: var(--text-secondary);
      font-size: 18px;
      margin-bottom: 50px;
    }

    .blog-posts {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }

    .blog-post {
      background: var(--card-bg);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      border: 1px solid var(--border-color);
    }

    .blog-post:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .blog-post__image {
      position: relative;
      height: 200px;
      overflow: hidden;
    }

    .blog-post__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .blog-post:hover .blog-post__image img {
      transform: scale(1.05);
    }

    .blog-post__category {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--gradient-btn);
      color: white;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .blog-post__content {
      padding: 25px;
    }

    .blog-post__title {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .blog-post__excerpt {
      color: var(--text-secondary);
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .blog-post__meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .blog-post__link {
      color: var(--accent);
      font-weight: 600;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .blog-post__link:hover {
      color: var(--accent-hover);
    }

    /* ── BLOG DETAIL ───────────────────────────── */
    .blog-detail {
      padding: 80px 0;
    }

    .blog-detail__back {
      margin-bottom: 30px;
    }

    .blog-detail__back a {
      color: var(--text-secondary);
      font-size: 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .blog-detail__header {
      text-align: center;
      margin-bottom: 40px;
    }

    .blog-detail__category {
      display: inline-block;
      background: var(--gradient-btn);
      color: white;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 15px;
    }

    .blog-detail__title {
      font-size: 42px;
      font-weight: 800;
      font-family: var(--font-head);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .blog-detail__meta {
      display: flex;
      justify-content: center;
      gap: 30px;
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 30px;
    }

    .blog-detail__image {
      max-width: 800px;
      margin: 0 auto 40px;
      border-radius: 16px;
      overflow: hidden;
    }

    .blog-detail__image img {
      width: 100%;
      height: auto;
    }

    .blog-detail__content {
      max-width: 800px;
      margin: 0 auto;
      font-size: 18px;
      line-height: 1.8;
    }

    .blog-detail__content h2 {
      font-size: 28px;
      font-weight: 700;
      margin: 40px 0 20px;
      color: var(--accent);
    }

    .blog-detail__content h3 {
      font-size: 24px;
      font-weight: 600;
      margin: 30px 0 15px;
    }

    .blog-detail__content p {
      margin-bottom: 20px;
    }

    .blog-detail__content ul,
    .blog-detail__content ol {
      margin-bottom: 20px;
      padding-left: 30px;
    }

    .blog-detail__content li {
      margin-bottom: 10px;
    }

    /* ── FOOTER ───────────────────────────── */
    .footer {
      background: var(--darker);
      border-top: 1px solid var(--border-color);
      padding: 60px 0 30px;
    }

    .footer__inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .footer__brand {
      text-align: center;
      margin-bottom: 30px;
    }

    .footer__logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 15px;
    }

    .footer__logo-icon {
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer__logo-name span:first-child {
      color: var(--accent);
    }

    .footer__tagline {
      color: var(--text-secondary);
      font-size: 14px;
      max-width: 400px;
      margin: 0 auto;
    }

    .footer__social {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .footer__social-btn {
      width: 40px;
      height: 40px;
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-secondary);
      font-size: 18px;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .footer__social-btn:hover {
      background: var(--gradient-btn);
      color: white;
      transform: translateY(-2px);
    }

    .footer__bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid var(--border-color);
      color: var(--text-muted);
      font-size: 14px;
    }

    /* ── RESPONSIVE ───────────────────────────── */
    @media (max-width: 768px) {
      .header__nav {
        display: none;
      }

      .hero__title {
        font-size: 36px;
      }

      .blog-posts {
        grid-template-columns: 1fr;
      }

      .blog-detail__title {
        font-size: 32px;
      }

      .blog-detail__content {
        font-size: 16px;
      }
    }

/* ── Added for WordPress pagination & comments (not in original static design) ── */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--bg-card, #14141c);
  border: 1px solid var(--border-color, #24242e);
  color: var(--text-secondary, #b8b8c8);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--accent-green, #00ff88);
  color: #06110c;
  border-color: var(--accent-green, #00ff88);
}
.comments-area {
  max-width: 800px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--border-color, #24242e);
}
.comments-area .comment-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
.comments-area textarea,
.comments-area input[type="text"],
.comments-area input[type="email"],
.comments-area input[type="url"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-color, #24242e);
  background: var(--bg-card, #14141c);
  color: var(--text-primary, #fff);
  margin-bottom: 14px;
  font-family: inherit;
}
.comments-area .form-submit input {
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  background: var(--accent-green, #00ff88);
  color: #06110c;
  font-weight: 700;
  cursor: pointer;
}
