/* ========================================
   ESPORTESKN WORDPRESS THEME
   Complete Responsive CSS
   ======================================== */

/* --- CSS Variables --- */
:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #0f3460;
  --accent-bright: #e94560;
  --accent-green: #00c853;
  --text-primary: #1a1a2e;
  --text-secondary: #555;
  --text-light: #888;
  --bg-white: #ffffff;
  --bg-light: #f5f7fa;
  --bg-card: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --max-width: 800px;
  --header-height: 60px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { 
  scroll-behavior: smooth; 
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Prevent horizontal overflow globally */
.site-header, 
.main-content, 
.site-footer,
.featured-topics-section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-bright); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.5em; }

/* --- Loading Bar --- */
.loading-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-bright), var(--accent-green), var(--accent-bright));
  background-size: 200% 100%;
  animation: loadingSlide 1.5s ease-in-out infinite;
  z-index: 9999;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.loading-bar.active { opacity: 1; }

@keyframes loadingSlide {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: var(--header-height);
  width: 100%;
  box-sizing: border-box;
}

.site-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.25rem;
  color: var(--primary); text-decoration: none;
}
.site-logo img { height: 32px; width: auto; }
.site-logo .logo-text,
.site-logo .custom-logo-link { display: inline-flex; align-items: center; }
.site-logo .logo-text {
  background: linear-gradient(135deg, var(--accent-bright), #ff6b6b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900; letter-spacing: -0.5px;
}

/* Custom logo from WP */
.custom-logo-link { display: inline-flex !important; }
.custom-logo { height: 36px; width: auto; }

.header-right {
  display: flex; align-items: center; gap: 8px;
}

/* Language Switcher */
.lang-switcher {
  display: flex; gap: 0;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  overflow: hidden;
}
.lang-btn {
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-main);
  border: none;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--accent-bright);
  color: #fff;
}
.lang-btn:hover:not(.active) {
  background: var(--bg-light);
  color: var(--text-primary);
}

/* Desktop Nav */
.nav-menu {
  display: flex; list-style: none; gap: 0;
  padding: 0; margin: 0;
}
.nav-menu li {
  position: relative;
}
.nav-menu li a {
  display: block; padding: 0 16px;
  height: var(--header-height); line-height: var(--header-height);
  color: var(--text-primary); font-weight: 500; font-size: 0.95rem;
  transition: all 0.2s; position: relative;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.current_page_item > a,
.nav-menu li a.active {
  color: var(--accent-bright);
}
.nav-menu li.current-menu-item > a::after,
.nav-menu li.current_page_item > a::after,
.nav-menu li a.active::after {
  content: '';
  position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 3px; background: var(--accent-bright);
  border-radius: 3px 3px 0 0;
}

/* Dropdown Menu */
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  z-index: 1000;
}
.nav-menu .sub-menu li a {
  height: auto;
  line-height: 1.4;
  padding: 10px 16px;
  font-size: 0.9rem;
  white-space: nowrap;
}
.nav-menu .sub-menu li a::after {
  display: none;
}
.nav-menu .sub-menu li a:hover {
  background: var(--bg-light);
}
.nav-menu li:hover > .sub-menu {
  display: block;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px; transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 16px;
  width: 100%;
  box-sizing: border-box;
}

/* Ensure all content inside main-content is responsive */
.main-content img,
.main-content iframe,
.main-content video,
.main-content embed,
.main-content object {
  max-width: 100%;
  height: auto;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(233,69,96,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  font-size: 2rem; font-weight: 800; line-height: 1.3;
  margin-bottom: 12px; position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hero .subtitle {
  font-size: 1.05rem; opacity: 0.9;
  margin-bottom: 24px; position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hero .cta-text {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  padding: 8px 24px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; position: relative;
  word-wrap: break-word;
  max-width: 100%;
}

/* ========================================
   NAV CARDS
   ======================================== */
.nav-cards {
  display: grid; grid-template-columns: 1fr;
  gap: 12px; margin-bottom: 32px;
  width: 100%;
  max-width: 100%;
}
.nav-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: var(--radius-md);
  color: #fff; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: all 0.3s;
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
  max-width: 100%;
  word-wrap: break-word;
}
.nav-card::after {
  content: '\2192'; margin-left: auto;
  font-size: 1.2rem; opacity: 0.7; transition: transform 0.3s;
}
.nav-card:hover::after { transform: translateX(4px); }
.nav-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: #fff; }
.nav-card.blue { background: linear-gradient(135deg, #1565c0, #1e88e5); }
.nav-card.red { background: linear-gradient(135deg, #c62828, #e53935); }
.nav-card.green { background: linear-gradient(135deg, #2e7d32, #43a047); }
.nav-card .card-icon { font-size: 1.5rem; flex-shrink: 0; }

/* ========================================
   AD BLOCK - Clean Container (Ad Inserter Style)
   ======================================== */

/* Clean wrapper - only for positioning, zero styling on ad */
.ad-block {
  margin: 32px 0;
  text-align: center;
  clear: both;
}

/* Hide if empty */
.ad-block:empty,
.ad-block .ad-container:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
}

/* Ad container - passthrough only */
.ad-container {
  display: block;
  margin: 0 auto;
  /* No width/height restrictions - let ad decide */
}

/* Position variants - only spacing */
.ad-block.ad-top { margin-top: 0; margin-bottom: 24px; }

.ad-block.ad-in-content,
.ad-block.ad-after-intro,
.ad-block.ad-mid-article,
.ad-block.ad-between-methods,
.ad-block.ad-mid-methods,
.ad-block.ad-before-last-method,
.ad-block.ad-between-stores,
.ad-block.ad-between-platforms,
.ad-block.ad-after-types,
.ad-block.ad-after-requirements,
.ad-block.ad-before-troubleshoot { margin: 32px 0; }

.ad-block.ad-between-sections,
.ad-block.ad-before-nav,
.ad-block.ad-related,
.ad-block.ad-before-footer,
.ad-block.ad-bottom-content,
.ad-block.ad-before-conclusion,
.ad-block.ad-after-steps { margin: 40px 0; }

.ad-block.ad-before-cta,
.ad-block.ad-before-conclusion { margin: 32px 0 24px; }

/* Mobile spacing only */
@media (max-width: 767px) {
  .ad-block { margin: 24px 0; }
  .ad-block.ad-between-sections,
  .ad-block.ad-before-nav,
  .ad-block.ad-related,
  .ad-block.ad-before-footer { margin: 28px 0; }
}

/* ========================================
   ARTICLE CONTENT
   ======================================== */
.article-content {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

/* Prevent long URLs from breaking layout */
.article-content a {
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Ensure all media is responsive */
.article-content iframe,
.article-content embed,
.article-content video,
.article-content audio {
  max-width: 100%;
  width: 100%;
}
.article-content h1 { font-size: 1.7rem; font-weight: 800; margin-bottom: 16px; line-height: 1.3; }
.article-content h2 { font-size: 1.5rem; font-weight: 800; margin: 32px 0 16px; line-height: 1.3; }
.article-content h2:first-child { margin-top: 0; }
.article-content h3 { font-size: 1.2rem; font-weight: 700; margin: 24px 0 12px; }
.article-content p { margin-bottom: 16px; color: var(--text-secondary); line-height: 1.8; }
.article-content ul, .article-content ol { margin-bottom: 16px; }
.article-content li { margin-bottom: 8px; color: var(--text-secondary); line-height: 1.7; }
.article-content img { border-radius: var(--radius-sm); margin: 16px 0; }

/* Single title */
.single-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; line-height: 1.3; }

/* WP block styles */
.article-content .wp-block-image { margin: 20px 0; }
.article-content .wp-block-image img { border-radius: var(--radius-sm); }
.article-content blockquote,
.article-content .wp-block-quote {
  border-left: 4px solid var(--accent-bright);
  padding: 12px 20px; margin: 20px 0;
  background: var(--bg-light); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-content .wp-block-table table { width: 100%; border-collapse: collapse; }
.article-content .wp-block-table td,
.article-content .wp-block-table th {
  padding: 10px 14px; border-bottom: 1px solid var(--border-color);
  text-align: left;
}

/* Entry content (for WP the_content) */
.entry-content p { margin-bottom: 16px; color: var(--text-secondary); line-height: 1.8; }
.entry-content h2 { font-size: 1.5rem; font-weight: 800; margin: 32px 0 16px; }
.entry-content h3 { font-size: 1.2rem; font-weight: 700; margin: 24px 0 12px; }
.entry-content ul, .entry-content ol { margin-bottom: 16px; padding-left: 1.5em; }
.entry-content li { margin-bottom: 8px; color: var(--text-secondary); }
.entry-content img { border-radius: var(--radius-sm); margin: 16px 0; }

/* ========================================
   FEATURED IMAGE
   ======================================== */
.featured-image {
  width: 100%; 
  max-width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 24px; 
  overflow: hidden;
}
.featured-image img { 
  width: 100%; 
  max-width: 100%;
  height: auto; 
  object-fit: cover;
  display: block;
}

/* ========================================
   APP INFO CARD
   ======================================== */
.app-card {
  background: var(--bg-white); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 20px;
  display: flex; gap: 16px; align-items: center;
  margin: 24px 0; box-shadow: var(--shadow-sm);
}
.app-card .app-icon {
  width: 64px; height: 64px; border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a1a2e, #e94560);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.app-card .app-info { flex: 1; min-width: 0; }
.app-card .app-name { font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.app-card .app-meta { display: flex; gap: 12px; font-size: 0.8rem; color: var(--text-light); flex-wrap: wrap; }
.app-card .app-meta span { display: flex; align-items: center; gap: 4px; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: all 0.3s;
  border: none; cursor: pointer; text-align: center;
  font-family: var(--font-main);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-bright), #ff6b6b);
  color: #fff; box-shadow: 0 4px 15px rgba(233,69,96,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(233,69,96,0.4); color: #fff; }

.btn-download {
  background: linear-gradient(135deg, #2e7d32, #43a047);
  color: #fff; box-shadow: 0 4px 15px rgba(46,125,50,0.3);
}
.btn-download:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,125,50,0.4); color: #fff; }

.btn-play {
  background: linear-gradient(135deg, #1565c0, #1e88e5);
  color: #fff; box-shadow: 0 4px 15px rgba(21,101,192,0.3);
}
.btn-play:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(21,101,192,0.4); color: #fff; }

.btn-block { display: flex; width: 100%; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0; }
.btn-small-text { display: block; font-size: 0.7rem; font-weight: 400; opacity: 0.8; margin-top: 2px; }

/* ========================================
   PROMO CARD
   ======================================== */
.promo-card {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: var(--radius-lg); padding: 24px;
  color: #fff; margin: 24px 0;
  position: relative; overflow: hidden;
}
.promo-card::before {
  content: '';
  position: absolute; bottom: -30%; right: -20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(233,69,96,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.promo-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.promo-card .promo-stats { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.promo-card .stat { background: rgba(255,255,255,0.1); padding: 6px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }
.promo-card .security-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,200,83,0.2); border: 1px solid rgba(0,200,83,0.3);
  padding: 6px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 16px;
}

/* ========================================
   METHOD CARDS
   ======================================== */
.method-card {
  background: var(--bg-white); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 24px;
  margin: 16px 0; transition: all 0.3s;
}
.method-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent-bright); }
.method-card .method-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent-bright); color: #fff;
  font-weight: 800; font-size: 0.85rem; margin-bottom: 12px;
}
.method-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.method-card p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 12px; }
.method-card ul { list-style: none; padding: 0; }
.method-card ul li { padding: 4px 0 4px 24px; position: relative; color: var(--text-secondary); font-size: 0.9rem; }
.method-card ul li::before { content: '\2713'; position: absolute; left: 0; color: var(--accent-green); font-weight: 700; }

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-section { margin: 32px 0; }
.faq-item {
  background: var(--bg-white); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); margin-bottom: 12px;
  overflow: hidden; transition: box-shadow 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer;
  font-size: 0.95rem; font-weight: 600; color: var(--text-primary);
  text-align: left; font-family: var(--font-main); gap: 12px;
}
.faq-question .faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
.faq-item.open .faq-answer { padding: 0 20px 16px; max-height: 500px; }
.faq-answer p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ========================================
   TIPS LIST
   ======================================== */
.tips-list { list-style: none; padding: 0; }
.tips-list li {
  padding: 12px 16px 12px 44px; position: relative;
  background: var(--bg-white); border: 1px solid var(--border-color);
  border-radius: var(--radius-sm); margin-bottom: 10px;
  font-size: 0.9rem; color: var(--text-secondary); transition: all 0.2s;
}
.tips-list li:hover { border-color: var(--accent-bright); box-shadow: var(--shadow-sm); }
.tips-list li .tip-icon { position: absolute; left: 14px; top: 12px; font-size: 1.1rem; }

/* ========================================
   BENEFITS GRID
   ======================================== */
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0; }
.benefit-item { background: var(--bg-light); border-radius: var(--radius-sm); padding: 16px; text-align: center; }
.benefit-item .benefit-icon { font-size: 1.5rem; margin-bottom: 8px; }
.benefit-item .benefit-text { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }

/* ========================================
   WARNING BOX
   ======================================== */
.warning-box {
  background: #fff3e0; border-left: 4px solid #ff9800;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px; margin: 20px 0;
  font-size: 0.9rem; color: #e65100;
}
.warning-box strong { display: block; margin-bottom: 4px; }

/* ========================================
   SPEC TABLE
   ======================================== */
.spec-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.9rem; }
.spec-table th, .spec-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border-color); }
.spec-table th { background: var(--bg-light); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.spec-table td { color: var(--text-secondary); }
.spec-table tr:hover td { background: var(--bg-light); }

/* ========================================
   STEP LIST
   ======================================== */
.step-list { counter-reset: steps; list-style: none; padding: 0; }
.step-list li {
  counter-increment: steps;
  padding: 16px 16px 16px 56px; position: relative;
  background: var(--bg-white); border: 1px solid var(--border-color);
  border-radius: var(--radius-sm); margin-bottom: 12px;
  color: var(--text-secondary); font-size: 0.95rem;
}
.step-list li::before {
  content: counter(steps);
  position: absolute; left: 16px; top: 14px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent-bright); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.8rem;
}

/* ========================================
   RELATED POSTS
   ======================================== */
.related-posts { margin: 32px 0; }
.related-posts h2 { font-size: 1.2rem; font-weight: 800; margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.related-item {
  display: flex; gap: 14px; padding: 16px;
  background: var(--bg-white); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); text-decoration: none; transition: all 0.3s;
}
.related-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.related-item .related-thumb {
  width: 80px; height: 80px; border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; overflow: hidden; color: #fff;
}
.related-item .related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-item .related-info { flex: 1; min-width: 0; }
.related-item .related-title {
  font-weight: 700; font-size: 0.9rem; color: var(--text-primary);
  margin-bottom: 6px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.related-item .related-category {
  font-size: 0.75rem; color: var(--accent-bright);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}

/* ========================================
   POSTS GRID (Blog Archive)
   ======================================== */
.posts-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.post-card {
  background: var(--bg-white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: all 0.3s;
}
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post-card-link { display: block; text-decoration: none; color: inherit; }
.post-card-thumb { height: 200px; overflow: hidden; background: var(--bg-light); }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--text-light); background: linear-gradient(135deg, var(--primary), var(--accent));
}
.post-card-body { padding: 20px; }
.post-card-cat {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--accent-bright); margin-bottom: 8px;
}
.post-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; color: var(--text-primary); }
.post-card-excerpt { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.6; }
.post-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--text-light);
}
.post-card-meta span:last-child { color: var(--accent-bright); font-weight: 600; }

/* ========================================
   PAGINATION
   ======================================== */
.posts-pagination { margin: 32px 0; text-align: center; }
.posts-pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.posts-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border-radius: var(--radius-sm); border: 1px solid var(--border-color);
  font-size: 0.9rem; font-weight: 600; color: var(--text-primary);
  text-decoration: none; transition: all 0.2s;
}
.posts-pagination .page-numbers:hover,
.posts-pagination .page-numbers.current {
  background: var(--accent-bright); color: #fff; border-color: var(--accent-bright);
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-light);
  margin-bottom: 16px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--accent-bright); }
.breadcrumb .sep { opacity: 0.4; }

/* Article Meta */
.article-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 0.8rem; color: var(--text-light);
  margin-bottom: 20px; flex-wrap: wrap;
}
.article-meta .tag {
  background: var(--bg-light); padding: 4px 10px;
  border-radius: 50px; font-weight: 600;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px;
}

/* ========================================
   PAGE HEADER (Static Pages)
   ======================================== */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff; padding: 40px 20px;
  text-align: center; margin-bottom: 32px; border-radius: var(--radius-lg);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.page-header h1 { font-size: 1.8rem; font-weight: 800; }
.page-header p { opacity: 0.8; margin-top: 8px; }
.page-header .breadcrumb { 
  justify-content: center; 
  margin-bottom: 16px; 
  color: rgba(255,255,255,0.7);
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.9); }
.page-header .breadcrumb a:hover { color: #fff; }

.static-content {
  background: var(--bg-white); border-radius: var(--radius-lg);
  padding: 32px 24px; box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.static-content h2 { font-size: 1.3rem; font-weight: 700; margin: 28px 0 12px; }
.static-content h2:first-child { margin-top: 0; }
.static-content p { color: var(--text-secondary); margin-bottom: 14px; line-height: 1.8; font-size: 0.95rem; }
.static-content ul { margin-bottom: 14px; }
.static-content li { margin-bottom: 6px; color: var(--text-secondary); }

/* Ensure static content media is responsive */
.static-content img,
.static-content iframe,
.static-content video {
  max-width: 100%;
  height: auto;
}

/* ========================================
   PAGE NAVIGATION (Quick Links)
   ======================================== */
.page-navigation { margin: 32px 0; }
.page-navigation h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; text-align: center; }
.page-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.page-nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s;
}
.page-nav-card:hover {
  border-color: var(--accent-bright);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.page-nav-card .icon { font-size: 1.8rem; }
.page-nav-card .text { font-size: 0.85rem; font-weight: 600; }

@media (min-width: 768px) {
  .page-nav-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-form { 
  max-width: 500px; 
  width: 100%;
}

@media (max-width: 480px) {
  .contact-form {
    max-width: 100%;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--text-primary); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 10px 14px;
  border: 1px solid var(--border-color); border-radius: var(--radius-sm);
  font-family: var(--font-main); font-size: 0.9rem;
  transition: border-color 0.2s; background: var(--bg-white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-message { padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 0.9rem; }
.form-message.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-message.error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

/* ========================================
   SEARCH FORM
   ======================================== */
.search-form-inner {
  display: flex; gap: 8px; max-width: 500px; margin: 0 auto;
}
.search-field {
  flex: 1; padding: 10px 16px;
  border: 1px solid var(--border-color); border-radius: 50px;
  font-family: var(--font-main); font-size: 0.9rem;
}
.search-field:focus { outline: none; border-color: var(--accent-bright); }
.search-submit { white-space: nowrap; }

/* ========================================
   COMMENTS
   ======================================== */
.comments-area { margin-top: 24px; }
.comments-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }
.comment-list { list-style: none; padding: 0; }
.comment-list li.comment { padding: 16px 0; border-bottom: 1px solid var(--border-color); }
.comment-list .comment-body { display: flex; gap: 12px; }
.comment-list .comment-body .avatar { border-radius: 50%; flex-shrink: 0; }
.comment-list .comment-author { font-weight: 700; font-size: 0.9rem; }
.comment-list .comment-meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 8px; }
.comment-list .comment-content p { font-size: 0.9rem; }
.comment-form { margin-top: 24px; }
.comment-form .form-submit { margin-top: 12px; }

/* ========================================
   WIDGETS
   ======================================== */
.widget { margin-bottom: 24px; }
.widget-title { font-size: 1rem; font-weight: 700; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--accent-bright); }
.top-topics-list { list-style: none; padding: 0; }
.top-topics-list li { border-bottom: 1px solid var(--border-color); }
.top-topics-list li a { display: flex; justify-content: space-between; padding: 10px 0; color: var(--text-primary); font-size: 0.9rem; }
.top-topics-list li a:hover { color: var(--accent-bright); }
.top-topics-list .topic-title { font-weight: 500; flex: 1; }
.top-topics-list .topic-date { font-size: 0.8rem; color: var(--text-light); flex-shrink: 0; margin-left: 12px; }

/* ========================================
   FEATURED TOPICS SECTION (Above Footer)
   ======================================== */
.featured-topics-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
  padding: 48px 0 32px;
  margin-top: 48px;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
.featured-topics-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .featured-topics-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Featured Section Title */
.featured-section-title {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

/* Featured Widget Styling */
.featured-widget {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.featured-widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-bright);
  color: var(--text-primary);
}

/* Featured Posts List */
.featured-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.featured-posts-list li {
  border-bottom: 1px solid var(--border-color);
}
.featured-posts-list li:last-child {
  border-bottom: none;
}
.featured-posts-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text-primary);
  transition: all 0.2s;
}
.featured-posts-list li a:hover {
  color: var(--accent-bright);
}
.featured-post-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  overflow: hidden;
  flex-shrink: 0;
}
.featured-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-post-info {
  flex: 1;
  min-width: 0;
}
.featured-post-title {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-post-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
.footer-inner { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 40px 20px 24px;
  width: 100%;
  box-sizing: border-box;
}
.footer-nav {
  display: flex; gap: 20px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 24px;
  padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1);
  list-style: none;
}
.footer-nav a,
.footer-nav li a { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.footer-nav a:hover,
.footer-nav li a:hover { color: #fff; }
/* WP nav menu in footer generates li elements */
.footer-nav li { list-style: none; }

.footer-disclaimers { max-width: 700px; margin: 0 auto 24px; }
.footer-disclaimer { margin-bottom: 16px; }
.footer-disclaimer h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.footer-disclaimer p { font-size: 0.8rem; line-height: 1.6; color: rgba(255,255,255,0.5); }

.footer-company { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-company .company-name { font-weight: 700; color: rgba(255,255,255,0.8); margin-bottom: 4px; font-size: 0.9rem; }
.footer-company .company-details { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-company .company-pride { margin-top: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-bright); color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(10px);
  transition: all 0.3s; z-index: 100;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: #d63551; transform: translateY(-2px); }

/* ========================================
   RESPONSIVE: TABLET (>=768px)
   ======================================== */
@media (min-width: 768px) {
  .nav-cards { grid-template-columns: repeat(3, 1fr); }
  .hero h1 { font-size: 2.4rem; }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
  .related-item { flex-direction: column; }
  .related-item .related-thumb { width: 100%; height: 120px; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-group { flex-wrap: nowrap; }
}

/* ========================================
   RESPONSIVE: MOBILE (<=767px)
   ======================================== */
@media (max-width: 767px) {
  .menu-toggle { display: flex; }

  .nav-menu {
    position: fixed; top: var(--header-height); left: 0; right: 0;
    background: var(--bg-white); flex-direction: column;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%); opacity: 0;
    pointer-events: none; transition: all 0.3s; z-index: 999;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    width: 100%;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu li { position: static; }
  .nav-menu li a { height: auto; line-height: 1; padding: 16px 20px; border-bottom: 1px solid var(--border-color); }
  .nav-menu li.current-menu-item > a::after,
  .nav-menu li.current_page_item > a::after,
  .nav-menu li a.active::after { display: none; }
  
  /* Mobile Dropdown */
  .nav-menu .sub-menu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--accent-bright);
    border-radius: 0;
    padding-left: 16px;
    background: var(--bg-light);
    width: 100%;
  }
  .nav-menu .sub-menu.open { display: block; }
  .nav-menu .sub-menu li a {
    padding: 12px 20px;
    border-bottom: none;
  }

  /* Header adjustments */
  .header-inner {
    padding: 0 12px;
  }

  .hero { padding: 32px 16px; }
  .hero h1 { font-size: 1.5rem; }
  .hero .subtitle { font-size: 0.9rem; }
  
  /* Main content padding reduction */
  .main-content { padding: 16px 12px; }
  
  .article-content { 
    padding: 20px 16px;
    border-radius: var(--radius-md);
  }
  
  /* Prevent overflow in article content */
  .article-content pre,
  .article-content code,
  .article-content table {
    max-width: 100%;
    overflow-x: auto;
  }
  
  .benefits-grid { grid-template-columns: 1fr; }
  .app-card { flex-direction: column; text-align: center; }
  .app-card .app-meta { justify-content: center; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
  .page-header { padding: 32px 16px; }
  .page-header h1 { font-size: 1.4rem; }
  .footer-inner { padding: 32px 16px 20px; }
  .footer-nav { flex-direction: column; align-items: center; gap: 12px; }
  
  /* Featured topics mobile */
  .featured-topics-section { padding: 32px 0 24px; }
  .featured-topics-inner { padding: 0 12px; }
  
  /* Nav cards mobile */
  .nav-cards { gap: 10px; }
  .nav-card { padding: 14px 16px; font-size: 0.9rem; }
  
  /* Method cards mobile */
  .method-card { padding: 20px 16px; }
  
  /* Promo card mobile */
  .promo-card { padding: 20px 16px; }
  
  /* Related posts mobile */
  .related-item { padding: 14px; }
  .related-item .related-thumb { width: 70px; height: 70px; }
}

/* ========================================
   RESPONSIVE: SMALL PHONES (<=374px)
   ======================================== */
@media (max-width: 374px) {
  :root {
    --header-height: 56px;
  }
  
  body { font-size: 14px; }
  
  .header-inner { padding: 0 10px; }
  .site-logo { font-size: 1.1rem; }
  .site-logo img, .custom-logo { height: 28px; }
  
  .main-content { padding: 12px 10px; }
  
  .hero { padding: 24px 12px; }
  .hero h1 { font-size: 1.25rem; }
  .hero .subtitle { font-size: 0.85rem; }
  
  .nav-card { padding: 12px 14px; font-size: 0.85rem; }
  .nav-card .card-icon { font-size: 1.25rem; }
  
  .article-content { padding: 18px 12px; }
  .article-content h1 { font-size: 1.5rem; }
  .article-content h2 { font-size: 1.2rem; }
  .article-content h3 { font-size: 1.05rem; }
  
  .promo-card { padding: 16px 14px; }
  .promo-card h3 { font-size: 1.1rem; }
  
  .method-card { padding: 16px 14px; }
  .method-card h3 { font-size: 1rem; }
  
  .static-content { padding: 20px 14px; }
  
  .btn { padding: 10px 20px; font-size: 0.9rem; }
  
  .lang-btn { padding: 4px 8px; font-size: 0.7rem; }
  
  .footer-inner { padding: 24px 12px 16px; }
  
  /* Ad container on very small screens */
  .ad-container {
    min-height: 50px;
    padding: 0;
  }
  
  /* Ensure tables don't break layout */
  .spec-table-wrapper {
    margin: 16px -4px;
    width: calc(100% + 8px);
  }
}

/* ========================================
   TEMPLATE: ROBUX GUIDE, GIFT CARD, PLAY MOBILE
   ======================================== */

/* Download Section */
.download-section {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  margin: 32px 0;
  text-align: center;
  color: #fff;
}
.download-section h2 {
  color: #fff;
  margin-bottom: 20px;
}
.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.download-buttons .btn {
  padding: 14px 28px;
  min-width: 180px;
}
.download-buttons .btn .icon { font-size: 1.5rem; }
.download-buttons .btn .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.download-buttons .btn .small {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.download-buttons .btn .big {
  font-size: 1.1rem;
  font-weight: 700;
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* Platform Card */
.platform-card {
  position: relative;
  padding-left: 24px;
}
.platform-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  opacity: 0.2;
}

/* Step List (Numbered) */
.step-list { 
  list-style: none; 
  padding: 0;
  counter-reset: step-counter;
}
.step-list li {
  counter-increment: step-counter;
  padding: 12px 0 12px 48px;
  position: relative;
  border-bottom: 1px dashed var(--border-color);
}
.step-list li:last-child { border-bottom: none; }
.step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 10px;
  width: 32px;
  height: 32px;
  background: var(--accent-bright);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Step Item (Alternate Style) */
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.step-number {
  width: 36px;
  height: 36px;
  background: var(--accent-bright);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step-content { flex: 1; }
.step-content p { margin-bottom: 0; }

/* Info Box */
.info-box {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.info-box p { margin-bottom: 8px; }
.info-box p:last-child { margin-bottom: 0; }

/* Promo Highlight */
.promo-highlight {
  background: linear-gradient(135deg, #fff8e1, #ffecb3);
  border: 1px solid #ffc107;
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
}
.promo-highlight h3 { color: #f57c00; margin-bottom: 12px; }

/* Gift Card Types */
.gift-card-types { display: grid; gap: 16px; margin: 20px 0; }
.gift-card-type {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
}
.gift-card-type h3 { margin-bottom: 12px; color: var(--primary); }
@media (min-width: 768px) {
  .gift-card-types { grid-template-columns: repeat(2, 1fr); }
}

/* Store Section */
.store-section { margin: 20px 0; padding: 20px; background: var(--bg-light); border-radius: var(--radius-sm); }
.store-section h3 { margin-bottom: 12px; }

/* Spec Table */
.spec-table-wrapper { 
  overflow-x: auto; 
  margin: 20px 0;
  width: 100%;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}
.spec-table { 
  width: 100%; 
  border-collapse: collapse; 
  min-width: auto;
}
.spec-table th {
  background: var(--primary);
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
}
.spec-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-white);
}
.spec-table tr:nth-child(even) td { background: var(--bg-light); }

@media (max-width: 480px) {
  .spec-table th,
  .spec-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

/* Tips Grid */
.tips-grid { display: grid; gap: 16px; margin: 24px 0; }
.tip-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
}
.tip-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tip-card .tip-icon { font-size: 2rem; margin-bottom: 12px; }
.tip-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--primary); }
.tip-card p { font-size: 0.9rem; margin-bottom: 0; color: var(--text-secondary); }
@media (min-width: 768px) {
  .tips-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Games List */
.games-list { display: grid; gap: 16px; margin: 24px 0; }
.game-card {
  background: linear-gradient(135deg, var(--bg-white), var(--bg-light));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  border-left: 4px solid var(--accent-bright);
}
.game-card h3 { margin-bottom: 8px; color: var(--primary); }
.game-card p { margin-bottom: 0; font-size: 0.95rem; }
@media (min-width: 768px) {
  .games-list { grid-template-columns: repeat(2, 1fr); }
}

/* Troubleshoot Section */
.troubleshoot-section { margin: 24px 0; }
.trouble-item {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 16px;
}
.trouble-item h3 { margin-bottom: 12px; color: var(--primary); }
.trouble-item ul { margin-bottom: 0; }

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, var(--accent-bright), #ff6b6b);
  color: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 32px 0;
}
.cta-box h2 { color: #fff; margin-bottom: 16px; }
.cta-box p { color: rgba(255,255,255,0.95); margin-bottom: 12px; }
.cta-box p:last-child { margin-bottom: 0; }
.cta-box strong { color: #fff; }

/* ========================================
   UTILITY / HELPER CLASSES
   ======================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
