/*
Theme Name: Super Hero Brasil
Theme URI: https://superherobrasil.com.br
Author: Rhanslei Neves e Luan Pierucci
Author URI: https://superherobrasil.com.br
Description: Tema oficial do Super Hero Brasil - O melhor portal de cultura pop geek do Brasil. Otimizado para performance, SEO e monetizacao com AdSense.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: superhero
Tags: news, magazine, responsive, dark-mode, adsense-ready, seo-friendly
*/

/* ========================================
   GOOGLE FONTS
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --shb-gold: #FFB800;
  --shb-gold-light: #FFD700;
  --shb-dark: #0D1117;
  --shb-darker: #080A0F;
  --shb-card: #161B22;
  --shb-border: #21262D;
  --shb-text: #E6EDF3;
  --shb-muted: #8B949E;
  --shb-blue: #3B82F6;
  --shb-purple: #A855F7;
  --shb-green: #22C55E;
  --shb-pink: #EC4899;
  --shb-yellow: #EAB308;
  --shb-red: #EF4444;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--shb-dark);
  color: var(--shb-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ========================================
   CONTAINER
   ======================================== */
.shb-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .shb-container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .shb-container {
    padding: 0 32px;
  }
}

/* ========================================
   NEWS TICKER
   ======================================== */
.news-ticker {
  background: var(--shb-darker);
  border-bottom: 1px solid var(--shb-border);
  padding: 8px 0;
}

.news-ticker-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.news-ticker-label {
  color: var(--shb-gold);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.news-ticker-text {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.news-ticker-text span {
  color: var(--shb-muted);
  font-size: 14px;
}

.news-ticker-social {
  display: none;
  align-items: center;
  gap: 12px;
}

.news-ticker-social a {
  color: var(--shb-muted);
}

.news-ticker-social a:hover {
  color: var(--shb-gold);
}

@media (min-width: 768px) {
  .news-ticker-social {
    display: flex;
  }
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: relative;
  z-index: 100;
}

.site-header.has-background {
  background-image: url('images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.site-header.has-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 17, 23, 0.8), rgba(13, 17, 23, 0.6), var(--shb-dark));
}

.header-main {
  position: relative;
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.site-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo:hover img {
  transform: rotate(360deg) scale(1.05);
}

/* Search */
.header-search {
  display: none;
  flex: 1;
  max-width: 576px;
}

@media (min-width: 768px) {
  .header-search {
    display: block;
  }
}

.search-form {
  position: relative;
  width: 100%;
}

.search-form input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  background: var(--shb-card);
  border: 1px solid var(--shb-border);
  border-radius: 8px;
  color: var(--shb-text);
  font-size: 14px;
}

.search-form input::placeholder {
  color: var(--shb-muted);
}

.search-form input:focus {
  outline: none;
  border-color: var(--shb-gold);
  box-shadow: 0 0 0 1px var(--shb-gold);
}

.search-form svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--shb-muted);
  width: 18px;
  height: 18px;
}

/* Navigation */
.header-nav {
  display: none;
  align-items: center;
  gap: 24px;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  font-size: 14px;
  color: var(--shb-text);
  position: relative;
}

.header-nav a:hover {
  color: var(--shb-gold);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: var(--shb-gold);
  color: var(--shb-dark);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--shb-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.4);
}

/* Category Nav */
.category-nav {
  position: relative;
  border-top: 1px solid rgba(33, 38, 45, 0.5);
  padding: 12px 0;
}

.category-nav ul {
  display: none;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .category-nav ul {
    display: flex;
  }
}

.category-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--shb-text);
  position: relative;
}

.category-nav a:hover {
  color: var(--shb-gold);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: flex;
  padding: 8px;
  background: none;
  border: none;
  color: var(--shb-text);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 60px;
  background: rgba(13, 17, 23, 0.98);
  backdrop-filter: blur(10px);
  z-index: 99;
  padding: 16px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu a {
  padding: 12px 16px;
  color: var(--shb-text);
  border-radius: 8px;
}

.mobile-menu a:hover {
  background: var(--shb-card);
  color: var(--shb-gold);
}

/* ========================================
   SECTION TITLES
   ======================================== */
.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--shb-text);
  margin-bottom: 24px;
}

.section-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--shb-gold);
  border-radius: 2px;
}

/* ========================================
   CARDS
   ======================================== */
.shb-card {
  background: var(--shb-card);
  border: 1px solid var(--shb-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.shb-card:hover {
  border-color: rgba(255, 184, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255, 184, 0, 0.1);
}

/* ========================================
   BADGES
   ======================================== */
.shb-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
}

.badge-filmes { background: rgba(59, 130, 246, 0.2); color: #60A5FA; }
.badge-series { background: rgba(168, 85, 247, 0.2); color: #C084FC; }
.badge-games { background: rgba(34, 197, 94, 0.2); color: #4ADE80; }
.badge-animes { background: rgba(236, 72, 153, 0.2); color: #F472B6; }
.badge-quadrinhos { background: rgba(234, 179, 8, 0.2); color: #FACC15; }
.badge-hqs { background: rgba(239, 68, 68, 0.2); color: #F87171; }

/* ========================================
   FEATURED NEWS
   ======================================== */
.featured-section {
  padding: 32px 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .featured-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* Main Featured */
.featured-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--shb-card);
  border: 1px solid var(--shb-border);
}

.featured-main-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .featured-main-image {
    height: 500px;
  }
}

.featured-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.featured-main:hover .featured-main-image img {
  transform: scale(1.05);
}

.featured-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--shb-dark), rgba(13, 17, 23, 0.5), transparent);
}

.featured-main-badge {
  position: absolute;
  top: 16px;
  left: 16px;
}

.featured-main-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.featured-main-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .featured-main-title {
    font-size: 36px;
  }
}

.featured-main:hover .featured-main-title {
  color: var(--shb-gold);
}

.featured-main-excerpt {
  color: var(--shb-muted);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .featured-main-excerpt {
    font-size: 16px;
  }
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--shb-muted);
}

.featured-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.featured-meta .author {
  color: var(--shb-gold);
}

/* Side News */
.side-news {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-news-item {
  display: flex;
  flex-direction: column;
  background: var(--shb-card);
  border: 1px solid var(--shb-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.side-news-item:hover {
  border-color: rgba(255, 184, 0, 0.3);
  transform: translateY(-2px);
}

.side-news-image {
  position: relative;
  height: 128px;
  overflow: hidden;
}

.side-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.side-news-item:hover .side-news-image img {
  transform: scale(1.1);
}

.side-news-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--shb-card), transparent);
}

.side-news-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
}

.side-news-content {
  padding: 12px;
}

.side-news-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--shb-text);
  line-height: 1.4;
}

.side-news-item:hover .side-news-title {
  color: var(--shb-gold);
}

.side-news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--shb-muted);
}

/* ========================================
   NEWS GRID
   ======================================== */
.news-grid-section {
  padding: 32px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.news-card {
  background: var(--shb-card);
  border: 1px solid var(--shb-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-card:hover {
  border-color: rgba(255, 184, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255, 184, 0, 0.1);
}

.news-card-image {
  position: relative;
  height: 192px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.1);
}

.news-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--shb-card), transparent 60%);
  opacity: 0.6;
}

.news-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
}

.news-card-content {
  padding: 16px;
}

.news-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--shb-text);
  line-height: 1.4;
  margin-bottom: 8px;
}

.news-card:hover .news-card-title {
  color: var(--shb-gold);
}

.news-card-excerpt {
  font-size: 14px;
  color: var(--shb-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--shb-muted);
}

.news-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========================================
   CATEGORIES
   ======================================== */
.categories-section {
  padding: 32px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--shb-card);
  border: 1px solid var(--shb-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.category-item:hover {
  border-color: rgba(255, 184, 0, 0.5);
  transform: scale(1.05);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.category-icon.blue { background: rgba(59, 130, 246, 0.2); }
.category-icon.purple { background: rgba(168, 85, 247, 0.2); }
.category-icon.green { background: rgba(34, 197, 94, 0.2); }
.category-icon.pink { background: rgba(236, 72, 153, 0.2); }
.category-icon.yellow { background: rgba(234, 179, 8, 0.2); }
.category-icon.red { background: rgba(239, 68, 68, 0.2); }

.category-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--shb-text);
  text-align: center;
}

.category-item:hover .category-name {
  color: var(--shb-gold);
}

.category-count {
  font-size: 12px;
  color: var(--shb-muted);
}

/* ========================================
   LATEST NEWS & SIDEBAR
   ======================================== */
.latest-news-section {
  padding: 32px 0;
}

.content-sidebar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .content-sidebar-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* Filters */
.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-btn {
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid var(--shb-border);
  background: var(--shb-card);
  color: var(--shb-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--shb-gold);
  border-color: var(--shb-gold);
  color: var(--shb-dark);
}

/* News List */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-list-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--shb-card);
  border: 1px solid var(--shb-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.news-list-item:hover {
  border-color: rgba(255, 184, 0, 0.3);
  box-shadow: 0 4px 20px rgba(255, 184, 0, 0.08);
}

.news-list-image {
  position: relative;
  width: 128px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.news-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-list-item:hover .news-list-image img {
  transform: scale(1.1);
}

.news-list-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: 10px;
  padding: 2px 6px;
}

.news-list-content {
  flex: 1;
  min-width: 0;
}

.news-list-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--shb-text);
  line-height: 1.4;
  margin-bottom: 4px;
}

.news-list-item:hover .news-list-title {
  color: var(--shb-gold);
}

.news-list-excerpt {
  font-size: 14px;
  color: var(--shb-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.news-list-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--shb-muted);
}

.news-list-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========================================
   SIDEBAR WIDGETS
   ======================================== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.widget {
  background: var(--shb-card);
  border: 1px solid var(--shb-border);
  border-radius: 12px;
  padding: 16px;
}

/* Podcast Widget */
.podcast-widget-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.podcast-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--shb-gold), #FF6B00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--shb-dark);
}

.podcast-title {
  font-weight: 700;
  color: var(--shb-text);
}

.podcast-subtitle {
  font-size: 12px;
  color: var(--shb-muted);
}

.podcast-player {
  background: var(--shb-dark);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
}

.podcast-current {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.podcast-current img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
}

.podcast-current-info {
  flex: 1;
  min-width: 0;
}

.podcast-current-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--shb-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.podcast-current-guest {
  font-size: 12px;
  color: var(--shb-muted);
}

.podcast-current-role {
  font-size: 12px;
  color: var(--shb-gold);
}

.podcast-progress {
  margin-bottom: 12px;
}

.podcast-progress-bar {
  height: 4px;
  background: var(--shb-border);
  border-radius: 2px;
  overflow: hidden;
}

.podcast-progress-fill {
  height: 100%;
  width: 35%;
  background: linear-gradient(90deg, var(--shb-gold), #FF6B00);
  border-radius: 2px;
}

.podcast-progress-time {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--shb-muted);
  margin-top: 4px;
}

.podcast-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.podcast-btn {
  background: none;
  border: none;
  color: var(--shb-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px;
}

.podcast-btn:hover {
  color: var(--shb-gold);
}

.podcast-btn.play {
  width: 48px;
  height: 48px;
  background: var(--shb-gold);
  color: var(--shb-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-btn.play:hover {
  background: var(--shb-gold-light);
}

.podcast-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.podcast-volume svg {
  color: var(--shb-muted);
  width: 16px;
  height: 16px;
}

.podcast-volume-bar {
  flex: 1;
  height: 4px;
  background: var(--shb-border);
  border-radius: 2px;
  overflow: hidden;
}

.podcast-volume-fill {
  height: 100%;
  width: 75%;
  background: var(--shb-muted);
  border-radius: 2px;
}

.podcast-episodes-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--shb-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.podcast-episodes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.podcast-episode {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.podcast-episode:hover,
.podcast-episode.active {
  background: rgba(255, 184, 0, 0.2);
}

.podcast-episode-number {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--shb-border);
  color: var(--shb-muted);
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-episode.active .podcast-episode-number {
  background: var(--shb-gold);
  color: var(--shb-dark);
}

.podcast-episode-title {
  font-size: 14px;
  color: var(--shb-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.podcast-episode.active .podcast-episode-title {
  color: var(--shb-gold);
}

.podcast-spotify {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  background: #1DB954;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.podcast-spotify:hover {
  background: #1ed760;
}

/* ========================================
   AD BANNERS
   ======================================== */
.ad-banner {
  background: var(--shb-card);
  border: 1px solid var(--shb-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  margin: 0 auto;
}

.ad-banner-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--shb-muted);
}

.ad-banner-size {
  font-size: 12px;
  color: var(--shb-muted);
  opacity: 0.7;
}

.ad-banner-placeholder {
  background: var(--shb-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.ad-banner-placeholder span {
  font-size: 24px;
  font-weight: 700;
  color: rgba(255, 184, 0, 0.3);
}

/* Ad Sizes */
.ad-leaderboard { max-width: 728px; min-height: 90px; }
.ad-leaderboard .ad-banner-placeholder { width: 582px; height: 54px; }

.ad-medium-rectangle { max-width: 300px; min-height: 250px; }
.ad-medium-rectangle .ad-banner-placeholder { width: 240px; height: 150px; }

.ad-banner-small { max-width: 468px; min-height: 60px; }
.ad-banner-small .ad-banner-placeholder { width: 374px; height: 36px; }

.ad-half-page { max-width: 300px; min-height: 600px; }
.ad-half-page .ad-banner-placeholder { width: 240px; height: 360px; }

.ad-large-leaderboard { max-width: 970px; min-height: 90px; }
.ad-large-leaderboard .ad-banner-placeholder { width: 776px; height: 54px; }

/* ========================================
   ABOUT & STATS
   ======================================== */
.about-section {
  padding: 32px 0;
}

.about-card {
  background: var(--shb-card);
  border: 1px solid var(--shb-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.about-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--shb-gold), #FF6B00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--shb-dark);
  flex-shrink: 0;
}

.about-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--shb-text);
  margin-bottom: 4px;
}

.about-since {
  font-size: 14px;
  font-weight: 400;
  color: var(--shb-gold);
  margin-left: 8px;
}

.about-description {
  font-size: 14px;
  color: var(--shb-muted);
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--shb-card);
  border: 1px solid var(--shb-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(255, 184, 0, 0.3);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--shb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: rgba(255, 184, 0, 0.2);
}

.stat-icon svg {
  width: 24px;
  height: 24px;
}

.stat-icon.blue { color: #60A5FA; }
.stat-icon.green { color: #4ADE80; }
.stat-icon.pink { color: #F472B6; }
.stat-icon.yellow { color: #FACC15; }

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--shb-text);
}

.stat-label {
  font-size: 12px;
  color: var(--shb-muted);
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--shb-border);
  border-radius: 12px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: var(--shb-card);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: #1c2128;
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--shb-text);
}

.accordion-title svg {
  color: var(--shb-gold);
  width: 20px;
  height: 20px;
}

.accordion-icon {
  color: var(--shb-muted);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-body {
  padding: 16px;
  background: var(--shb-dark);
  font-size: 14px;
  color: var(--shb-muted);
  line-height: 1.6;
  white-space: pre-line;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border: 2px solid var(--shb-gold);
  color: var(--shb-gold);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--shb-gold);
  color: var(--shb-dark);
}

/* ========================================
   GAMIFICATION
   ======================================== */
.gamification-section {
  padding: 32px 0;
}

.gamification-header {
  text-align: center;
  margin-bottom: 32px;
}

.gamification-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 184, 0, 0.1);
  border-radius: 9999px;
  margin-bottom: 16px;
}

.gamification-badge svg {
  color: var(--shb-gold);
  width: 20px;
  height: 20px;
}

.gamification-badge span {
  font-size: 14px;
  font-weight: 600;
  color: var(--shb-gold);
}

.gamification-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--shb-text);
  margin-bottom: 8px;
}

.gamification-title span {
  background: linear-gradient(90deg, var(--shb-gold), var(--shb-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gamification-description {
  color: var(--shb-muted);
  max-width: 576px;
  margin: 0 auto;
}

/* Badges Grid */
.badges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .badges-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .badges-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: var(--shb-card);
  border: 1px solid var(--shb-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.badge-item:hover {
  border-color: rgba(255, 184, 0, 0.5);
  transform: translateY(-4px);
}

.badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.badge-item:hover .badge-icon {
  transform: scale(1.1);
}

.badge-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.badge-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--shb-text);
  text-align: center;
}

.badge-requirement {
  font-size: 12px;
  color: var(--shb-muted);
  text-align: center;
}

/* Badge Colors */
.badge-gray { background: linear-gradient(135deg, #9CA3AF, #4B5563); }
.badge-bronze { background: linear-gradient(135deg, #B45309, #78350F); }
.badge-silver { background: linear-gradient(135deg, #CBD5E1, #64748B); }
.badge-gold { background: linear-gradient(135deg, #FACC15, #CA8A04); }
.badge-purple { background: linear-gradient(135deg, #C084FC, #9333EA); }
.badge-orange { background: linear-gradient(135deg, #FB923C, #DC2626); }
.badge-pink { background: linear-gradient(135deg, #F472B6, #E11D48); }
.badge-blue { background: linear-gradient(135deg, #60A5FA, #06B6D4); }

/* Gamification Grid */
.gamification-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .gamification-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gamification-card {
  background: var(--shb-card);
  border: 1px solid var(--shb-border);
  border-radius: 12px;
  padding: 24px;
}

.gamification-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.gamification-card-header svg {
  color: var(--shb-gold);
  width: 20px;
  height: 20px;
}

.gamification-card-title {
  font-weight: 700;
  color: var(--shb-text);
}

/* Top Commenters */
.top-commenters {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top-commenter {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--shb-card);
  border: 1px solid var(--shb-border);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.top-commenter:hover {
  border-color: rgba(255, 184, 0, 0.3);
}

.top-commenter-rank {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--shb-border);
  color: var(--shb-muted);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-commenter-info {
  flex: 1;
}

.top-commenter-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--shb-text);
}

.top-commenter-count {
  font-size: 12px;
  color: var(--shb-muted);
}

.top-commenter-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: white;
}

/* Steps */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.step-item:hover {
  background: rgba(255, 184, 0, 0.1);
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--shb-border);
  color: var(--shb-muted);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-item:hover .step-number {
  background: var(--shb-gold);
  color: var(--shb-dark);
}

.step-text {
  font-size: 14px;
  color: var(--shb-text);
  transition: all 0.3s ease;
}

.step-item:hover .step-text {
  color: var(--shb-gold);
}

.step-check {
  margin-left: auto;
  color: var(--shb-gold);
  opacity: 0;
  transition: all 0.3s ease;
}

.step-item:hover .step-check {
  opacity: 1;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--shb-darker);
  border-top: 1px solid var(--shb-border);
}

.footer-ad {
  padding: 24px 0;
  border-bottom: 1px solid var(--shb-border);
}

.footer-main {
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Footer Brand */
.footer-brand img {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
}

.footer-description {
  font-size: 14px;
  color: var(--shb-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--shb-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shb-muted);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--shb-gold);
  color: var(--shb-dark);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* Footer Links */
.footer-title {
  font-weight: 700;
  color: var(--shb-text);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  color: var(--shb-muted);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--shb-gold);
}

/* Footer Contact */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--shb-muted);
}

.footer-contact a:hover {
  color: var(--shb-gold);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--shb-border);
  padding: 16px 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 12px;
  color: var(--shb-muted);
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom a {
  color: var(--shb-gold);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ========================================
   ANTI-ADBLOCK MODAL
   ======================================== */
.adblock-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(8px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.adblock-modal.active {
  display: flex;
}

.adblock-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  background: var(--shb-card);
  border: 1px solid var(--shb-border);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  overflow: hidden;
}

.adblock-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--shb-gold), #FF6B00, var(--shb-gold));
}

.adblock-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--shb-muted);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.adblock-close:hover {
  color: var(--shb-text);
}

.adblock-icon {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.adblock-shield {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--shb-gold), #FF6B00);
  display: flex;
  align-items: center;
  justify-content: center;
}

.adblock-shield svg {
  width: 48px;
  height: 48px;
  color: var(--shb-dark);
}

.adblock-bolt {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--shb-card);
  border: 2px solid var(--shb-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.adblock-bolt svg {
  width: 20px;
  height: 20px;
  color: var(--shb-gold);
}

.adblock-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--shb-text);
  margin-bottom: 16px;
}

.adblock-title span {
  background: linear-gradient(90deg, var(--shb-gold), var(--shb-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.adblock-message {
  color: var(--shb-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.adblock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.adblock-stat {
  background: var(--shb-dark);
  padding: 12px;
  border-radius: 8px;
}

.adblock-stat-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--shb-gold);
}

.adblock-stat-label {
  font-size: 12px;
  color: var(--shb-muted);
}

.adblock-cta {
  width: 100%;
  padding: 14px;
  background: var(--shb-gold);
  color: var(--shb-dark);
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.adblock-cta:hover {
  background: var(--shb-gold-light);
}

.adblock-dismiss {
  background: none;
  border: none;
  color: var(--shb-muted);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.adblock-dismiss:hover {
  color: var(--shb-text);
}

.adblock-footer {
  margin-top: 16px;
  font-size: 12px;
  color: var(--shb-muted);
}

.adblock-footer span {
  color: var(--shb-gold);
}

/* ========================================
   READING PROGRESS
   ======================================== */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--shb-gold), var(--shb-gold-light));
  z-index: 9999;
  transition: width 0.1s ease-out, opacity 0.3s ease;
}

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--shb-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--shb-border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--shb-gold);
}

/* ========================================
   WORDPRESS DEFAULTS
   ======================================== */
.alignleft {
  float: left;
  margin-right: 24px;
  margin-bottom: 16px;
}

.alignright {
  float: right;
  margin-left: 24px;
  margin-bottom: 16px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 14px;
  color: var(--shb-muted);
  text-align: center;
  margin-top: 8px;
}

/* ========================================
   PAGINATION
   ======================================== */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.pagination ul {
  display: flex;
  list-style: none;
  gap: 8px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: var(--shb-card);
  border: 1px solid var(--shb-border);
  border-radius: 8px;
  color: var(--shb-text);
  font-size: 14px;
  transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .current {
  background: var(--shb-gold);
  border-color: var(--shb-gold);
  color: var(--shb-dark);
}

/* ========================================
   BREADCRUMBS
   ======================================== */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--shb-muted);
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--shb-muted);
}

.breadcrumbs a:hover {
  color: var(--shb-gold);
}

.breadcrumbs .sep {
  color: var(--shb-border);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .show-mobile {
    display: none !important;
  }
}
