/* ============================================
   MODILIMITADO - Softonic-Style Theme
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; color: #1a1a2e; background: #f5f6fa; line-height: 1.6; }
a { color: #0066ff; text-decoration: none; transition: color .2s; }
a:hover { color: #0044cc; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* --- CSS Variables --- */
:root {
  --primary: #0066ff;
  --primary-dark: #0044cc;
  --secondary: #00c853;
  --secondary-dark: #00a844;
  --dark: #1a1a2e;
  --dark-light: #16213e;
  --gray-100: #f5f6fa;
  --gray-200: #e8e9ed;
  --gray-300: #d1d3d8;
  --gray-400: #9a9caa;
  --gray-500: #6b6d7b;
  --gray-600: #4a4c5a;
  --white: #ffffff;
  --danger: #ff3b5c;
  --warning: #ffb800;
  --success: #00c853;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.16);
  --max-width: 1280px;
  --header-h: 64px;
}

/* --- RTL Support --- */
[dir="rtl"] { direction: rtl; text-align: right; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.flex { display: flex; align-items: center; gap: 12px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

/* ============================================
   HEADER
   ============================================ */
.site-header { background: var(--dark); height: var(--header-h); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,.3); }
.site-header .container { display: flex; align-items: center; height: 100%; gap: 24px; }
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.site-logo svg { width: 36px; height: 36px; }
.site-logo span { font-size: 1.3rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.site-logo .logo-accent { color: var(--secondary); }

/* Search */
.header-search { flex: 1; max-width: 560px; position: relative; }
.header-search input { width: 100%; height: 42px; padding: 0 44px 0 16px; border-radius: 24px; border: 2px solid transparent; background: rgba(255,255,255,.12); color: var(--white); font-size: .95rem; transition: all .3s; }
.header-search input::placeholder { color: rgba(255,255,255,.5); }
.header-search input:focus { outline: none; background: rgba(255,255,255,.18); border-color: var(--primary); }
.header-search button { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border: none; background: var(--primary); color: var(--white); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.header-search button:hover { background: var(--primary-dark); }

/* Nav */
.header-nav { display: flex; align-items: center; gap: 8px; }
.header-nav a { color: rgba(255,255,255,.75); padding: 8px 14px; border-radius: var(--radius-sm); font-size: .875rem; font-weight: 500; transition: all .2s; white-space: nowrap; }
.header-nav a:hover, .header-nav a.active { color: var(--white); background: rgba(255,255,255,.1); }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-switcher-btn { display: flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm); color: var(--white); cursor: pointer; font-size: .8rem; font-weight: 500; transition: all .2s; }
.lang-switcher-btn:hover { background: rgba(255,255,255,.18); }
.lang-switcher-btn .flag { font-size: 1.1rem; }
.lang-dropdown { position: absolute; top: 100%; right: 0; margin-top: 8px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px; min-width: 180px; display: none; z-index: 100; }
.lang-dropdown.open { display: block; }
.lang-dropdown a { display: flex; align-items: center; gap: 10px; padding: 8px 12px; color: var(--dark); border-radius: 6px; font-size: .85rem; }
.lang-dropdown a:hover { background: var(--gray-100); }
.lang-dropdown a .flag { font-size: 1.1rem; }
.lang-dropdown a.active { background: #e8f0fe; color: var(--primary); font-weight: 600; }

[dir="rtl"] .lang-dropdown { right: auto; left: 0; }

/* ============================================
   PLATFORM TABS BAR
   ============================================ */
.platform-bar { background: var(--white); border-bottom: 1px solid var(--gray-200); }
.platform-bar .container { display: flex; align-items: center; gap: 0; overflow-x: auto; }
.platform-tab { display: flex; align-items: center; gap: 6px; padding: 12px 20px; color: var(--gray-500); font-size: .875rem; font-weight: 500; border-bottom: 3px solid transparent; transition: all .2s; white-space: nowrap; cursor: pointer; }
.platform-tab:hover { color: var(--dark); }
.platform-tab.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 600; }
.platform-tab svg { width: 18px; height: 18px; }

/* ============================================
   HERO / SEARCH SECTION
   ============================================ */
.hero { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); padding: 60px 0 50px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 50%, rgba(0,102,255,.15) 0%, transparent 50%); }
.hero h1 { color: var(--white); font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; position: relative; }
.hero p { color: rgba(255,255,255,.65); font-size: 1.1rem; margin-bottom: 28px; position: relative; }
.hero-search { max-width: 600px; margin: 0 auto; position: relative; }
.hero-search input { width: 100%; height: 56px; padding: 0 60px 0 24px; border-radius: 28px; border: none; font-size: 1.05rem; box-shadow: var(--shadow-lg); }
.hero-search input:focus { outline: none; box-shadow: 0 0 0 3px rgba(0,102,255,.3), var(--shadow-lg); }
.hero-search button { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border: none; background: var(--primary); color: var(--white); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: background .2s; }
.hero-search button:hover { background: var(--primary-dark); }
.hero-stats { display: flex; justify-content: center; gap: 40px; margin-top: 28px; position: relative; }
.hero-stat { text-align: center; }
.hero-stat .num { color: var(--white); font-size: 1.5rem; font-weight: 800; }
.hero-stat .label { color: rgba(255,255,255,.5); font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================
   SECTION TITLES
   ============================================ */
.section { padding: 40px 0; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.section-title { font-size: 1.4rem; font-weight: 700; color: var(--dark); }
.section-link { color: var(--primary); font-size: .875rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.section-link:hover { gap: 8px; }

/* ============================================
   APP CARDS
   ============================================ */
.app-card { background: var(--white); border-radius: var(--radius); padding: 20px; transition: all .3s; border: 1px solid var(--gray-200); position: relative; overflow: hidden; }
.app-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.app-card-header { display: flex; gap: 14px; margin-bottom: 14px; }
.app-icon { width: 64px; height: 64px; border-radius: 14px; flex-shrink: 0; object-fit: cover; background: var(--gray-100); }
.app-icon-sm { width: 48px; height: 48px; border-radius: 10px; }
.app-icon-lg { width: 80px; height: 80px; border-radius: 18px; }
.app-info { flex: 1; min-width: 0; }
.app-name { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-name a { color: inherit; }
.app-name a:hover { color: var(--primary); }
.app-developer { font-size: .8rem; color: var(--gray-400); }
.app-meta { display: flex; align-items: center; gap: 12px; margin-top: 6px; flex-wrap: wrap; }
.app-rating { display: flex; align-items: center; gap: 4px; }
.app-rating .stars { color: var(--warning); font-size: .85rem; letter-spacing: 1px; }
.app-rating .score { font-size: .8rem; font-weight: 700; color: var(--dark); }
.app-badge { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 4px; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.badge-free { background: #e8f5e9; color: #2e7d32; }
.badge-paid { background: #e3f2fd; color: #1565c0; }
.badge-freemium { background: #fff3e0; color: #e65100; }
.badge-mod { background: #fce4ec; color: #c62828; }
.app-desc { font-size: .85rem; color: var(--gray-500); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-top: 8px; }
.app-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gray-200); }
.app-size { font-size: .8rem; color: var(--gray-400); }
.app-downloads { font-size: .8rem; color: var(--gray-400); }
.app-platform-icons { display: flex; gap: 6px; }
.app-platform-icons span { font-size: .75rem; padding: 2px 6px; background: var(--gray-100); border-radius: 4px; color: var(--gray-500); }

/* Download Button */
.btn-download { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; background: var(--secondary); color: var(--white); border: none; border-radius: var(--radius-sm); font-weight: 700; font-size: .9rem; cursor: pointer; transition: all .2s; }
.btn-download:hover { background: var(--secondary-dark); color: var(--white); transform: scale(1.02); }
.btn-download svg { width: 18px; height: 18px; }
.btn-download-sm { padding: 6px 16px; font-size: .8rem; border-radius: 6px; }
.btn-download-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius); }

/* ============================================
   TOP DOWNLOADS LIST
   ============================================ */
.top-list { counter-reset: top-counter; }
.top-item { display: flex; align-items: center; gap: 16px; padding: 14px 16px; background: var(--white); border-radius: var(--radius-sm); margin-bottom: 8px; border: 1px solid var(--gray-200); transition: all .2s; }
.top-item:hover { border-color: var(--gray-300); box-shadow: var(--shadow); }
.top-rank { counter-increment: top-counter; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .9rem; border-radius: 8px; flex-shrink: 0; }
.top-item:nth-child(1) .top-rank { background: linear-gradient(135deg, #ffd700, #ffaa00); color: #fff; }
.top-item:nth-child(2) .top-rank { background: linear-gradient(135deg, #c0c0c0, #a0a0a0); color: #fff; }
.top-item:nth-child(3) .top-rank { background: linear-gradient(135deg, #cd7f32, #b5651d); color: #fff; }
.top-item:nth-child(n+4) .top-rank { background: var(--gray-100); color: var(--gray-500); }
.top-item .app-info { flex: 1; }
.top-item .app-name { font-size: .95rem; }
.top-item .app-meta { margin-top: 4px; }

/* ============================================
   CATEGORIES GRID
   ============================================ */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.cat-card { background: var(--white); border-radius: var(--radius); padding: 20px; text-align: center; border: 1px solid var(--gray-200); transition: all .3s; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.cat-card .cat-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.cat-card .cat-name { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.cat-card .cat-count { font-size: .8rem; color: var(--gray-400); }

/* ============================================
   SINGLE APP PAGE
   ============================================ */
.app-single-hero { background: var(--white); padding: 32px 0; border-bottom: 1px solid var(--gray-200); }
.app-single-header { display: flex; gap: 24px; align-items: flex-start; }
.app-single-header .app-icon-lg { box-shadow: var(--shadow-md); }
.app-single-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 4px; }
.app-single-dev { color: var(--gray-500); font-size: .95rem; margin-bottom: 12px; }
.app-single-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.app-stat { text-align: center; padding: 8px 16px; }
.app-stat .val { font-size: 1.2rem; font-weight: 800; color: var(--dark); }
.app-stat .lbl { font-size: .75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .5px; }
.app-single-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

.app-single-body { display: grid; grid-template-columns: 1fr 340px; gap: 32px; padding: 40px 0; }
.app-content h2 { font-size: 1.3rem; font-weight: 700; margin: 28px 0 12px; color: var(--dark); }
.app-content h2:first-child { margin-top: 0; }
.app-content p { color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.app-content ul { padding-left: 20px; margin-bottom: 16px; }
.app-content ul li { color: var(--gray-600); margin-bottom: 8px; position: relative; padding-left: 16px; }
.app-content ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }

/* Screenshots */
.screenshots { display: flex; gap: 12px; overflow-x: auto; padding: 12px 0; scroll-snap-type: x mandatory; }
.screenshots img { height: 220px; width: auto; border-radius: var(--radius-sm); scroll-snap-align: start; box-shadow: var(--shadow); flex-shrink: 0; }

/* Sidebar */
.app-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--white); border-radius: var(--radius); padding: 20px; border: 1px solid var(--gray-200); }
.sidebar-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--dark); }
.info-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: .875rem; }
.info-row:last-child { border-bottom: none; }
.info-row .lbl { color: var(--gray-400); }
.info-row .val { color: var(--dark); font-weight: 600; }

/* Related Apps */
.related-app { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.related-app:last-child { border-bottom: none; }
.related-app .app-icon-sm { flex-shrink: 0; }
.related-app .app-name { font-size: .85rem; }
.related-app .app-rating { font-size: .75rem; }

/* ============================================
   ARCHIVE / LISTING
   ============================================ */
.archive-header { background: var(--white); padding: 32px 0; border-bottom: 1px solid var(--gray-200); }
.archive-header h1 { font-size: 1.6rem; font-weight: 800; }
.archive-header p { color: var(--gray-500); margin-top: 4px; }
.archive-body { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 32px 0; }
.archive-sidebar { display: flex; flex-direction: column; gap: 8px; }
.archive-sidebar a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); color: var(--gray-600); font-size: .9rem; transition: all .2s; }
.archive-sidebar a:hover, .archive-sidebar a.active { background: var(--primary); color: var(--white); }
.archive-sidebar a .cat-emoji { font-size: 1.1rem; }
.app-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

/* Filters */
.filters { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.filter-btn { padding: 6px 16px; border-radius: 20px; border: 1px solid var(--gray-300); background: var(--white); color: var(--gray-500); font-size: .8rem; font-weight: 500; cursor: pointer; transition: all .2s; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 48px 0 24px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-brand .site-logo { margin-bottom: 12px; }
.footer-brand p { font-size: .85rem; line-height: 1.6; color: rgba(255,255,255,.5); }
.footer-col h4 { color: var(--white); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.5); font-size: .85rem; padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs { padding: 12px 0; font-size: .8rem; }
.breadcrumbs a { color: var(--gray-400); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span { color: var(--gray-300); margin: 0 6px; }
.breadcrumbs .current { color: var(--gray-500); }

/* ============================================
   PAGINATION
   ============================================ */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600; border: 1px solid var(--gray-200); color: var(--gray-500); transition: all .2s; }
.pagination a:hover { background: var(--gray-100); color: var(--dark); }
.pagination .current { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ============================================
   SEARCH RESULTS
   ============================================ */
.search-results-header { background: var(--white); padding: 32px 0; border-bottom: 1px solid var(--gray-200); }
.search-results-header h1 { font-size: 1.4rem; }
.search-results-header .count { color: var(--gray-400); font-size: .9rem; }

/* ============================================
   404
   ============================================ */
.page-404 { text-align: center; padding: 80px 0; }
.page-404 .code { font-size: 8rem; font-weight: 900; color: var(--gray-200); line-height: 1; }
.page-404 h1 { font-size: 1.6rem; margin: 16px 0 8px; }
.page-404 p { color: var(--gray-500); margin-bottom: 24px; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter { background: linear-gradient(135deg, var(--primary), #0044cc); border-radius: var(--radius-lg); padding: 40px; text-align: center; color: var(--white); margin: 40px 0; }
.newsletter h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.newsletter p { opacity: .8; margin-bottom: 20px; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; gap: 8px; }
.newsletter-form input { flex: 1; height: 48px; padding: 0 20px; border-radius: 24px; border: none; font-size: .95rem; }
.newsletter-form input:focus { outline: none; box-shadow: 0 0 0 3px rgba(255,255,255,.3); }
.newsletter-form button { height: 48px; padding: 0 28px; border-radius: 24px; border: none; background: var(--dark); color: var(--white); font-weight: 700; cursor: pointer; white-space: nowrap; transition: background .2s; }
.newsletter-form button:hover { background: #000; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .app-single-body { grid-template-columns: 1fr; }
  .app-sidebar { flex-direction: row; overflow-x: auto; }
  .sidebar-card { min-width: 280px; }
  .archive-body { grid-template-columns: 1fr; }
  .archive-sidebar { flex-direction: row; overflow-x: auto; padding-bottom: 8px; }
}

@media (max-width: 768px) {
  :root { --header-h: 56px; }
  .header-nav { display: none; }
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: .95rem; }
  .hero-stats { gap: 20px; }
  .hero-stat .num { font-size: 1.2rem; }
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .app-single-header { flex-direction: column; align-items: center; text-align: center; }
  .app-single-stats { justify-content: center; }
  .app-single-actions { justify-content: center; }
  .newsletter-form { flex-direction: column; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .top-item { padding: 10px 12px; gap: 10px; }
  .app-list-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 40px 0 32px; }
  .hero-search input { height: 48px; }
  .app-card { padding: 16px; }
  .section { padding: 28px 0; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn .4s ease-out; }
.app-card { animation: fadeIn .4s ease-out; }

/* ============================================
   LOADING SKELETON
   ============================================ */
.skeleton { background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ============================================
   AD ZONES
   ============================================ */
.ad-zone { margin: 16px auto; text-align: center; overflow: hidden; }
.ad-header { max-width: 728px; margin: 16px auto; }
.ad-between { margin: 24px auto; max-width: var(--max-width); }
.ad-sidebar { margin: 16px 0; }
.ad-download { margin: 20px 0; border-radius: var(--radius); }
.ad-footer { max-width: 728px; margin: 24px auto; }
.ad-content { margin: 24px auto; }
.ad-native { margin: 20px 0; }
@media (max-width: 768px) {
  .ad-header, .ad-footer { max-width: 100%; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.hidden { display: none !important; }
.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; }
