/* All Yono World - Custom Stylesheet
   Orange + White theme, mobile-first, no external framework */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Poppins', Roboto, sans-serif;
  background: #fff;
  color: #1f2937;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 16px; }
.container-md { max-width: 960px; margin: 0 auto; padding: 0 16px; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  border-bottom: 1px solid #ffedd5;
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #ef4444);
  color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 2px #fed7aa;
}
.logo-text { line-height: 1.1; }
.logo-name { font-weight: 800; font-size: 18px; color: #111827; }
.logo-sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: #6b7280; }

.nav { display: none; gap: 24px; align-items: center; }
.nav a { font-size: 14px; color: #374151; font-weight: 500; transition: color .2s; }
.nav a:hover, .nav a.active { color: #ea580c; }

.menu-btn { display: flex; width: 40px; height: 40px; border: 1px solid #e5e7eb; border-radius: 6px; align-items: center; justify-content: center; }
.mobile-nav { display: none; background: #fff; border-top: 1px solid #f3f4f6; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 12px 16px; font-size: 14px; color: #374151; border-bottom: 1px solid #f3f4f6; }
.mobile-nav a.active { color: #ea580c; }

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

/* Hero Ticker */
.hero {
  background: linear-gradient(90deg, #f97316, #ef4444, #f97316);
  color: #fff; padding: 32px 0;
}
.hero-title { font-size: 24px; font-weight: 800; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.hero-title-icon { color: #fef08a; }
.hero-text { font-size: 14px; color: #fff7ed; line-height: 1.6; }
@media (min-width: 768px) { .hero { padding: 40px 0; } .hero-title { font-size: 30px; } .hero-text { font-size: 16px; } }

/* Section common */
.section { padding: 40px 0; }
.section-orange-bg { background: #fff7ed; }
.section-white { background: #fff; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-badge {
  display: inline-block; background: #ffedd5; color: #c2410c;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
}
.section-badge.red { background: #fee2e2; color: #b91c1c; }
.section-title { font-size: 24px; font-weight: 800; color: #111827; }
.section-underline { width: 56px; height: 4px; background: #f97316; border-radius: 2px; margin: 12px auto 0; }
@media (min-width: 768px) { .section-title { font-size: 30px; } }

/* Top 3 Podium */
.podium-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  align-items: end; padding-top: 24px;
}
.podium-card {
  position: relative; background: #fff; border-radius: 12px;
  border: 1px solid #ffedd5; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all .3s; margin-top: 14px;
}
.podium-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.1); transform: translateY(-4px); }
.podium-card.rank-1 { border-color: #fcd34d; box-shadow: 0 0 0 2px rgba(252,211,77,0.6), 0 10px 20px rgba(0,0,0,0.1); transform: translateY(-12px); }
.podium-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  color: #fff; font-weight: 800; font-size: 11px; line-height: 1;
  padding: 5px 12px; border-radius: 999px; z-index: 5; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 4px; box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.podium-badge.rank-1 { background: linear-gradient(135deg, #facc15, #f59e0b); box-shadow: 0 0 0 2px #fcd34d; }
.podium-badge.rank-2 { background: linear-gradient(135deg, #cbd5e1, #94a3b8); box-shadow: 0 0 0 2px #cbd5e1; }
.podium-badge.rank-3 { background: linear-gradient(135deg, #fb923c, #ea580c); box-shadow: 0 0 0 2px #fb923c; }
.podium-img { aspect-ratio: 1; background: linear-gradient(135deg, #ffedd5, #fefce8); overflow: hidden; border-radius: 12px 12px 0 0; }
.podium-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.podium-card:hover .podium-img img { transform: scale(1.05); }
.podium-body { padding: 8px; text-align: center; }
.podium-name { font-weight: 800; color: #111827; margin-bottom: 8px; font-size: 12px; line-height: 1.2; }
.podium-card.rank-1 .podium-name { font-size: 14px; }
.podium-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  background: #f97316; color: #fff; font-weight: 600; font-size: 11px;
  padding: 6px 10px; border-radius: 999px; width: 100%; transition: background .2s;
}
.podium-btn:hover { background: #ea580c; }
.podium-card.rank-1 .podium-btn { background: #f59e0b; }
.podium-card.rank-1 .podium-btn:hover { background: #d97706; }
@media (min-width: 768px) {
  .podium-grid { gap: 20px; padding-top: 32px; }
  .podium-body { padding: 16px; }
  .podium-name { font-size: 14px; margin-bottom: 12px; }
  .podium-card.rank-1 .podium-name { font-size: 20px; }
  .podium-btn { font-size: 14px; padding: 10px 20px; }
  .podium-card.rank-1 { transform: translateY(-24px); }
}

/* Telegram Banner */
.tg-wrap { padding: 24px 0 16px; background: #fff; }
.tg-banner {
  max-width: 576px; margin: 0 auto; position: relative; overflow: hidden;
  background: linear-gradient(90deg, #0ea5e9, #2563eb);
  border-radius: 16px; padding: 16px 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.tg-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.tg-icon { width: 44px; height: 44px; border-radius: 50%; background: #fff; color: #0ea5e9; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.tg-text { color: #fff; min-width: 0; }
.tg-title { font-size: 14px; font-weight: 800; margin-bottom: 2px; }
.tg-sub { font-size: 11px; color: #e0f2fe; }
.tg-btn {
  flex-shrink: 0; background: #fff; color: #0284c7; font-weight: 700; font-size: 13px;
  padding: 8px 14px; border-radius: 999px; box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: inline-flex; align-items: center; gap: 6px; transition: transform .2s;
}
.tg-btn:hover { transform: scale(1.02); }

/* App List (77 apps) */
.applist-wrap { background: linear-gradient(to bottom, #fff, #fff7ed); }
.search-box { max-width: 400px; margin: 0 auto 32px; position: relative; }
.search-box input {
  width: 100%; padding: 12px 16px 12px 44px; border-radius: 999px;
  border: 1px solid #fed7aa; background: #fff; font-size: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05); outline: none;
  transition: border-color .2s;
}
.search-box input:focus { border-color: transparent; box-shadow: 0 0 0 2px #fb923c; }
.search-box .search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #9ca3af; }

.app-item {
  background: #fff; border-radius: 12px; border: 1px solid #ffedd5;
  padding: 10px; margin-bottom: 12px; display: flex; align-items: center; gap: 12px;
  transition: all .3s;
}
.app-item:hover { border-color: #fdba74; box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.app-icon-wrap { position: relative; flex-shrink: 0; }
.app-icon {
  width: 64px; height: 64px; border-radius: 8px; overflow: hidden;
  background: #fff7ed; border: 1px solid #ffedd5;
}
.app-icon img { width: 100%; height: 100%; object-fit: cover; }
.app-rank-badge {
  position: absolute; top: -8px; left: -8px; width: 20px; height: 20px;
  background: #f97316; color: #fff; border-radius: 50%; font-weight: 700; font-size: 10px;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.app-info { flex: 1; min-width: 0; }
.app-name { font-weight: 800; color: #111827; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-meta { margin-top: 4px; display: flex; flex-direction: column; font-size: 11px; gap: 2px; }
.app-meta-item { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.app-meta-item.green { color: #047857; }
.app-meta-item.gray { color: #4b5563; }
.app-btn {
  flex-shrink: 0; background: #f97316; color: #fff; font-weight: 600;
  font-size: 12px; padding: 8px 14px; border-radius: 999px; display: inline-flex;
  align-items: center; gap: 6px; transition: background .2s;
}
.app-btn:hover { background: #ea580c; }
.app-btn.warning { background: #ef4444; }
.app-btn.warning:hover { background: #dc2626; }
@media (min-width: 768px) {
  .app-item { padding: 16px; gap: 16px; }
  .app-icon { width: 96px; height: 96px; }
  .app-rank-badge { width: 24px; height: 24px; font-size: 12px; }
  .app-name { font-size: 18px; }
  .app-meta { flex-direction: row; gap: 16px; font-size: 12px; }
  .app-btn { font-size: 15px; padding: 12px 20px; }
}

/* App Detail Page */
.breadcrumb { padding: 24px 0 0; font-size: 14px; color: #6b7280; display: flex; align-items: center; gap: 8px; }
.breadcrumb a:hover { color: #ea580c; }
.breadcrumb-current { color: #111827; font-weight: 500; }

.detail-hero { padding: 32px 0; }
.detail-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: flex-start; }
@media (min-width: 768px) { .detail-grid { grid-template-columns: 200px 1fr; gap: 40px; } }
.detail-icon-wrap { max-width: 160px; margin: 0 auto; }
@media (min-width: 768px) { .detail-icon-wrap { max-width: 200px; margin: 0; } }
.detail-icon {
  aspect-ratio: 1; border-radius: 16px; overflow: hidden;
  border: 1px solid #ffedd5; background: linear-gradient(135deg, #ffedd5, #fefce8);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.detail-badge { display: inline-block; background: #ef4444; color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 4px 8px; border-radius: 4px; margin-bottom: 12px; }
.detail-title { font-size: 28px; font-weight: 800; color: #111827; line-height: 1.2; }
@media (min-width: 768px) { .detail-title { font-size: 36px; } }
.detail-desc { color: #4b5563; margin-top: 8px; font-size: 14px; }

.detail-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.stat-card { padding: 16px; border-radius: 12px; }
.stat-card.green { background: #ecfdf5; border: 1px solid #a7f3d0; }
.stat-card.orange { background: #fff7ed; border: 1px solid #fed7aa; }
.stat-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; display: flex; align-items: center; gap: 6px; }
.stat-card.green .stat-label { color: #047857; }
.stat-card.orange .stat-label { color: #c2410c; }
.stat-value { font-size: 24px; font-weight: 800; margin-top: 4px; }
.stat-card.green .stat-value { color: #065f46; }
.stat-card.orange .stat-value { color: #9a3412; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; padding: 12px 24px; border-radius: 999px; transition: all .2s; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.btn:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.btn-primary { background: #f97316; color: #fff; }
.btn-primary:hover { background: #ea580c; }
.btn-sky { background: #0ea5e9; color: #fff; }
.btn-sky:hover { background: #0284c7; }
.btn-lg { font-size: 16px; padding: 14px 32px; }
.btn-block { width: 100%; }
@media (min-width: 768px) { .btn-block { width: auto; } }

.warning-box { margin-top: 16px; padding: 12px; border-radius: 8px; background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; font-size: 12px; display: flex; gap: 8px; align-items: flex-start; }

/* Features grid */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 16px 0; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.feature-card { padding: 16px; background: #fff; border: 1px solid #f3f4f6; border-radius: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); transition: box-shadow .3s; }
.feature-card:hover { box-shadow: 0 4px 10px rgba(0,0,0,0.08); }
.feature-icon { width: 40px; height: 40px; border-radius: 8px; background: #ffedd5; color: #ea580c; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.feature-title { font-weight: 700; font-size: 14px; color: #111827; }
.feature-text { font-size: 12px; color: #4b5563; margin-top: 2px; }

/* Related games */
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .related-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.related-card {
  background: #fff; border-radius: 12px; border: 1px solid #ffedd5;
  overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all .3s; text-align: left; display: block;
}
.related-card:hover { border-color: #fdba74; box-shadow: 0 10px 20px rgba(0,0,0,0.08); transform: translateY(-4px); }
.related-img { aspect-ratio: 1; background: linear-gradient(135deg, #ffedd5, #fefce8); overflow: hidden; }
.related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.related-card:hover .related-img img { transform: scale(1.05); }
.related-body { padding: 12px; }
.related-name { font-weight: 700; color: #111827; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.related-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; font-size: 11px; }
.related-bonus { color: #047857; display: inline-flex; align-items: center; gap: 4px; }
.related-view { color: #ea580c; font-weight: 700; }

/* Content blocks */
.content-block { max-width: 800px; margin: 0 auto; padding: 40px 16px; }
.content-block h2 { font-size: 24px; font-weight: 800; color: #111827; margin-bottom: 12px; }
.content-block p { color: #374151; margin-bottom: 12px; line-height: 1.7; font-size: 15px; }
@media (min-width: 768px) { .content-block h2 { font-size: 28px; } }

.content-2col { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .content-2col { grid-template-columns: 1fr 1fr; } }

.pros-box, .cons-box { padding: 20px; border-radius: 12px; }
.pros-box { background: #ecfdf5; border: 1px solid #a7f3d0; }
.cons-box { background: #fef2f2; border: 1px solid #fecaca; }
.pros-box .box-title { color: #065f46; font-weight: 800; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.cons-box .box-title { color: #991b1b; font-weight: 800; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.pros-box ul, .cons-box ul { list-style: none; }
.pros-box li, .cons-box li { display: flex; gap: 8px; padding: 4px 0; font-size: 14px; }
.pros-box li { color: #065f46; }
.cons-box li { color: #7f1d1d; }
.pros-box li:before { content: "✓"; color: #10b981; font-weight: 700; }
.cons-box li:before { content: "✕"; color: #ef4444; font-weight: 700; }

/* Steps */
.step-item { display: flex; gap: 16px; padding: 16px; background: #fff; border: 1px solid #f3f4f6; border-radius: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); margin-bottom: 12px; }
.step-num { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: #f97316; color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.step-title { font-weight: 700; color: #111827; }
.step-text { font-size: 14px; color: #4b5563; margin-top: 2px; }

/* Reviews */
.review-card { padding: 20px; background: #fff; border: 1px solid #ffedd5; border-radius: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.review-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.reviewer { display: flex; align-items: center; gap: 8px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: #ffedd5; color: #ea580c; display: flex; align-items: center; justify-content: center; }
.review-name { font-weight: 700; font-size: 14px; color: #111827; }
.review-when { font-size: 11px; color: #6b7280; }
.review-stars { display: flex; gap: 2px; color: #d1d5db; }
.review-stars .filled { color: #facc15; }
.review-text { font-size: 14px; color: #374151; line-height: 1.6; }

/* FAQ */
.faq-item { background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; overflow: hidden; margin-bottom: 12px; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; text-align: left; font-weight: 600; color: #111827; font-size: 15px; background: transparent; }
.faq-q:hover { background: #fff7ed; }
.faq-toggle { color: #f97316; font-size: 22px; font-weight: 700; transition: transform .3s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 16px 16px; color: #374151; font-size: 14px; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* Disclaimer box */
.disclaimer-box { background: #fef2f2; border: 1px solid #fecaca; border-radius: 12px; padding: 20px; display: flex; gap: 12px; }
.disclaimer-title { color: #b91c1c; font-weight: 700; margin-bottom: 4px; }
.disclaimer-text { font-size: 13px; color: #b91c1c; line-height: 1.6; }

/* Footer */
.footer { background: #111827; color: #d1d5db; padding: 40px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer h4 { color: #fff; font-weight: 700; margin-bottom: 12px; }
.footer p { font-size: 14px; color: #9ca3af; line-height: 1.6; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; font-size: 14px; }
.footer li a:hover { color: #fb923c; }
.footer-alert { margin-top: 12px; padding: 12px; background: rgba(127,29,29,0.4); border: 1px solid #7f1d1d; border-radius: 8px; color: #fecaca; font-size: 12px; }
.footer-bottom { border-top: 1px solid #1f2937; margin-top: 40px; padding: 16px 0; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-copy { font-size: 12px; color: #6b7280; }
.back-top { background: #f97316; color: #fff; font-weight: 600; font-size: 12px; padding: 6px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 4px; }
.back-top:hover { background: #ea580c; }

/* Hero pages (About / Privacy / Disclaimer / Contact) */
.page-hero { color: #fff; padding: 56px 0; text-align: center; }
.page-hero.orange { background: linear-gradient(90deg, #f97316, #ef4444, #f97316); }
.page-hero.red { background: linear-gradient(90deg, #ef4444, #f97316, #ef4444); }
.page-hero-badge { display: inline-block; background: rgba(255,255,255,0.2); backdrop-filter: blur(6px); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; padding: 4px 12px; border-radius: 999px; margin-bottom: 16px; }
.page-hero h1 { font-size: 32px; font-weight: 800; line-height: 1.2; }
.page-hero p { font-size: 16px; color: #fff7ed; margin-top: 16px; max-width: 640px; margin-left: auto; margin-right: auto; }
.page-hero small { font-size: 11px; color: #fed7aa; display: block; margin-top: 16px; }
@media (min-width: 768px) { .page-hero h1 { font-size: 44px; } .page-hero { padding: 80px 0; } }

.policy-section { padding: 20px; margin-bottom: 16px; background: #fff; border: 1px solid #ffedd5; border-radius: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.03); }
.policy-section h2 { font-size: 18px; font-weight: 800; color: #111827; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.policy-section h2 .num { color: #f97316; }
.policy-section p { font-size: 14px; color: #374151; line-height: 1.7; margin-bottom: 8px; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 320px; } }
.contact-form-card { padding: 24px; background: #fff; border: 1px solid #ffedd5; border-radius: 16px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: #374151; margin-bottom: 4px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 10px 16px; border-radius: 8px; border: 1px solid #e5e7eb;
  background: #fff; font-size: 14px; font-family: inherit; outline: none;
  transition: box-shadow .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  box-shadow: 0 0 0 2px #fb923c; border-color: transparent;
}
.form-group textarea { resize: vertical; }
.alert { padding: 10px 14px; border-radius: 8px; font-size: 14px; margin-bottom: 16px; }
.alert-success { background: #d1fae5; border: 1px solid #10b981; color: #065f46; }
.alert-error { background: #fee2e2; border: 1px solid #ef4444; color: #7f1d1d; }

.channels-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .channels-grid { grid-template-columns: repeat(3, 1fr); } }
.channel-card { padding: 20px; background: #fff; border: 1px solid #ffedd5; border-radius: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); display: block; transition: all .2s; }
.channel-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); transform: translateY(-2px); }
.channel-icon { width: 44px; height: 44px; border-radius: 8px; color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.channel-icon.orange { background: #f97316; }
.channel-icon.sky { background: #0ea5e9; }
.channel-icon.green { background: #10b981; }

/* Info cards */
.info-card { padding: 20px; background: #fff7ed; border: 1px solid #ffedd5; border-radius: 12px; margin-bottom: 16px; }
.info-card h3 { display: flex; align-items: center; gap: 8px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.info-card p { font-size: 14px; color: #374151; line-height: 1.6; }

/* Icons via unicode/svg lite */
.icon-svg { display: inline-block; vertical-align: middle; }

/* Utils */
.text-center { text-align: center; }
.mt-6 { margin-top: 24px; }
.mb-4 { margin-bottom: 16px; }
.hidden { display: none; }

/* Categories */
.categories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .categories-grid { grid-template-columns: repeat(5, 1fr); } }
.category-card { padding: 20px; background: #fff; border: 1px solid #f3f4f6; border-radius: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); transition: all .3s; }
.category-card:hover { box-shadow: 0 8px 16px rgba(0,0,0,0.08); transform: translateY(-4px); }
.category-icon { width: 48px; height: 48px; border-radius: 8px; background: linear-gradient(135deg, #ffedd5, #fed7aa); color: #ea580c; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.category-title { font-weight: 700; color: #111827; margin-bottom: 4px; }
.category-desc { font-size: 12px; color: #4b5563; line-height: 1.6; }

.reasons-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
@media (min-width: 768px) { .reasons-grid { grid-template-columns: 1fr 1fr; } }
.reason-card { display: flex; gap: 16px; padding: 20px; background: #fff7ed; border: 1px solid #ffedd5; border-radius: 12px; transition: box-shadow .2s; }
.reason-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.reason-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 8px; background: #fff; border: 1px solid #fed7aa; color: #ea580c; display: flex; align-items: center; justify-content: center; }
.reason-title { font-weight: 700; color: #111827; margin-bottom: 4px; }
.reason-text { font-size: 14px; color: #4b5563; line-height: 1.6; }

/* Restricted states */
.states-box { background: linear-gradient(135deg, #ef4444, #f97316); color: #fff; padding: 24px; border-radius: 16px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); margin: 32px 0; }
.states-box h2 { font-size: 20px; font-weight: 800; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.states-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 16px; }
@media (min-width: 768px) { .states-list { grid-template-columns: repeat(4, 1fr); } }
.state-chip { background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); border-radius: 8px; padding: 8px 12px; text-align: center; font-size: 14px; font-weight: 600; }
