/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #dc2626;
  --primary-light: #fca5a5;
  --primary-dark: #b91c1c;
  --bg: #ffffff;
  --bg-gray: #f9fafb;
  --bg-card: #ffffff;
  --text: #111827;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --border: #f3f4f6;
  --shadow: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.10);
  --radius: 14px;
  --radius-sm: 10px;
  --max-width: 1200px;
  --header-height: 68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

.Poki_h5_container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ===== Header ===== */
.Poki_h5_site-header {
  background: var(--bg);
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  box-shadow: 0 2px 8px rgba(220,38,38,0.08);
}

.Poki_h5_header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.Poki_h5_logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
}
.Poki_h5_logo:hover { color: var(--primary); }
.Poki_h5_logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}
.Poki_h5_logo-text { color: var(--primary); font-weight: 800; }

.Poki_h5_main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.Poki_h5_main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.Poki_h5_main-nav a:hover, .Poki_h5_main-nav a.Poki_h5_active {
  background: var(--primary);
  color: #fff;
}

.Poki_h5_nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.Poki_h5_nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Hero ===== */
.Poki_h5_hero {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}
.Poki_h5_hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}
.Poki_h5_hero h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 16px auto 0;
}
.Poki_h5_hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Featured Banner ===== */
.Poki_h5_featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding-top: 24px;
}
.Poki_h5_featured-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  color: #fff;
  transition: transform 0.3s;
}
.Poki_h5_featured-card:hover { transform: translateY(-3px); color: #fff; }
.Poki_h5_featured-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.Poki_h5_featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.Poki_h5_featured-card:hover .Poki_h5_featured-img img { transform: scale(1.05); }
.Poki_h5_featured-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.Poki_h5_featured-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.Poki_h5_featured-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.Poki_h5_featured-play-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 18px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s;
  width: fit-content;
}
.Poki_h5_featured-card:hover .Poki_h5_featured-play-btn {
  background: var(--primary-dark);
}

/* ===== Category Pills ===== */
.Poki_h5_category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  padding: 24px 0 0;
}
.Poki_h5_pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-gray);
  border: 1px solid var(--border);
  transition: all 0.2s;
  white-space: nowrap;
}
.Poki_h5_pill:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===== Sections ===== */
.Poki_h5_section { margin-bottom: 48px; }

.Poki_h5_section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
}
.Poki_h5_section-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}
.Poki_h5_view-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}
.Poki_h5_view-all:hover { color: var(--primary-dark); }

.Poki_h5_section-desc {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 1rem;
}

/* ===== Game Grid ===== */
.Poki_h5_game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ===== Game Card ===== */
.Poki_h5_game-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--text);
}
.Poki_h5_game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(220,38,38,0.12);
  border-color: var(--primary-light);
  color: var(--text);
}

.Poki_h5_game-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 12px;
}
.Poki_h5_game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.Poki_h5_game-card:hover .Poki_h5_game-card-img img { transform: scale(1.05); }

.Poki_h5_game-card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.Poki_h5_game-card-info {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.Poki_h5_game-card-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.Poki_h5_game-card-info p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.Poki_h5_game-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.Poki_h5_game-rating {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
}
.Poki_h5_game-category {
  background: #fef2f2;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ===== Game Detail ===== */
.Poki_h5_game-detail { margin-bottom: 48px; }

.Poki_h5_game-detail-header { margin-bottom: 24px; }
.Poki_h5_game-detail-header h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.Poki_h5_game-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.Poki_h5_game-detail-top {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 32px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 24px;
}
.Poki_h5_game-detail-cover {
  border-radius: 12px;
  overflow: hidden;
  background: #f0f0f0;
}
.Poki_h5_game-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}
.Poki_h5_game-detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.Poki_h5_game-detail-info h1 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}
.Poki_h5_game-detail-desc {
  color: var(--text-light);
  line-height: 1.7;
  margin: 16px 0 20px;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.Poki_h5_game-date {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.Poki_h5_play-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 50px;
  transition: all 0.3s;
  text-align: center;
  width: fit-content;
  box-shadow: 0 4px 16px rgba(220,38,38,0.3);
}
.Poki_h5_play-now-btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(220,38,38,0.4);
}
.Poki_h5_game-detail-tags {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.Poki_h5_game-detail-tags span {
  background: #fef2f2;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--primary-light);
}

/* Play page */
.Poki_h5_play-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.Poki_h5_play-header h1 { font-size: 1.4rem; font-weight: 700; }
.Poki_h5_back-to-detail {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--primary);
  transition: all 0.2s;
}
.Poki_h5_back-to-detail:hover {
  background: var(--primary);
  color: #fff;
}

.Poki_h5_game-frame-wrapper {
  position: relative;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}
.Poki_h5_game-frame-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}
.Poki_h5_fullscreen-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s;
  z-index: 10;
}
.Poki_h5_fullscreen-btn:hover { background: var(--primary); }

.Poki_h5_game-detail-content {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.Poki_h5_game-detail-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.Poki_h5_game-detail-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--text);
}
.Poki_h5_game-detail-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.Poki_h5_game-detail-content ul {
  padding-left: 24px;
  margin-bottom: 12px;
}
.Poki_h5_game-detail-content li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 6px;
}

/* ===== Breadcrumb ===== */
.Poki_h5_breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.Poki_h5_breadcrumb a { color: var(--text-light); }
.Poki_h5_breadcrumb a:hover { color: var(--primary); }
.Poki_h5_breadcrumb span { margin: 0 6px; }

/* ===== Page Content ===== */
.Poki_h5_page-content {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.Poki_h5_page-content h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}
.Poki_h5_page-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text);
}
.Poki_h5_page-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 20px 0 8px;
  color: var(--text);
}
.Poki_h5_page-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.Poki_h5_page-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}
.Poki_h5_page-content li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 6px;
}
.Poki_h5_last-updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

/* ===== Contact Cards ===== */
.Poki_h5_contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.Poki_h5_contact-card {
  background: #fef2f2;
  border-radius: var(--radius-sm);
  padding: 24px;
  border: 1px solid var(--primary-light);
}
.Poki_h5_contact-card h3 { margin-top: 0; }
.Poki_h5_contact-email {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 1rem;
}

/* ===== FAQ ===== */
.Poki_h5_faq { margin-top: 16px; }
.Poki_h5_faq-item {
  background: #fef2f2;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 12px;
  border: 1px solid var(--primary-light);
}
.Poki_h5_faq-item h3 { margin: 0 0 8px; font-size: 1rem; }
.Poki_h5_faq-item p { margin: 0; font-size: 0.9rem; }

/* ===== SEO Content ===== */
.Poki_h5_seo-content {
  background: #fef2f2;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--primary-light);
}
.Poki_h5_seo-content h2 { margin-top: 0; color: var(--primary-dark); }

/* ===== Footer ===== */
.Poki_h5_site-footer {
  background: #1a1a2e;
  color: #d1d5db;
  padding: 48px 0 0;
  margin-top: 60px;
}
.Poki_h5_footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.Poki_h5_footer-col h3 { color: #fff; font-size: 1.2rem; margin-bottom: 12px; }
.Poki_h5_footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.Poki_h5_footer-brand h3 { margin-bottom: 0; }
.Poki_h5_footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.Poki_h5_footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 12px; }
.Poki_h5_footer-col p { font-size: 0.85rem; line-height: 1.7; }
.Poki_h5_footer-col ul { list-style: none; }
.Poki_h5_footer-col li { margin-bottom: 8px; }
.Poki_h5_footer-col a { color: #d1d5db; font-size: 0.85rem; }
.Poki_h5_footer-col a:hover { color: var(--primary-light); }

.Poki_h5_footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
}

/* ===== 404 Page ===== */
.Poki_h5_page-404 {
  text-align: center;
  padding: 60px 20px 80px;
  max-width: 700px;
  margin: 0 auto;
}
.Poki_h5_404-visual {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}
.Poki_h5_404-icon {
  font-size: 3rem;
  margin-bottom: 8px;
  animation: Poki_h5_bounce 1.5s infinite;
}
@keyframes Poki_h5_bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.Poki_h5_404-number {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0;
}
.Poki_h5_404-digit {
  font-size: 8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  text-shadow: 4px 4px 0 rgba(220,38,38,0.15);
}
.Poki_h5_404-spin {
  color: #fff;
  -webkit-text-stroke: 3px var(--primary);
  animation: Poki_h5_wobble 2s ease-in-out infinite;
}
@keyframes Poki_h5_wobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(8deg); }
  75% { transform: rotate(-8deg); }
}
.Poki_h5_page-404 h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}
.Poki_h5_404-subtitle {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}
.Poki_h5_404-desc {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
}
.Poki_h5_404-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.Poki_h5_404-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s;
  text-decoration: none;
}
.Poki_h5_404-btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(220,38,38,0.3);
}
.Poki_h5_404-btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220,38,38,0.4);
}
.Poki_h5_404-btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.Poki_h5_404-btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.Poki_h5_404-suggest {
  margin-bottom: 48px;
}
.Poki_h5_404-suggest h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.Poki_h5_404-games {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.Poki_h5_404-game-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s;
}
.Poki_h5_404-game-card:hover { transform: translateY(-3px); color: var(--text); }
.Poki_h5_404-game-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.Poki_h5_404-game-card span {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.Poki_h5_404-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.Poki_h5_404-hint a { color: var(--primary); font-weight: 500; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .Poki_h5_main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 16px;
    border-bottom: 3px solid var(--primary);
    box-shadow: var(--shadow-md);
  }
  .Poki_h5_main-nav.Poki_h5_open { display: flex; }
  .Poki_h5_nav-toggle { display: flex; }

  .Poki_h5_hero h1 { font-size: 1.6rem; }
  .Poki_h5_hero p { font-size: 0.95rem; }

  .Poki_h5_game-grid { gap: 12px; }

  .Poki_h5_footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .Poki_h5_game-frame-wrapper iframe { height: 400px; }

  .Poki_h5_page-content { padding: 24px; }
  .Poki_h5_game-detail-content { padding: 20px; }

  .Poki_h5_404-number { font-size: 5rem; }
  .Poki_h5_404-digit { font-size: 6rem; }
  .Poki_h5_page-404 { padding: 40px 20px 60px; }
  .Poki_h5_page-404 h1 { font-size: 1.5rem; }
  .Poki_h5_404-games { grid-template-columns: repeat(2, 1fr); }

  .Poki_h5_game-detail-top {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  .Poki_h5_game-detail-cover img { aspect-ratio: 16/9; }

  .Poki_h5_featured { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .Poki_h5_featured-name { font-size: 0.8rem; }
  .Poki_h5_featured-desc { font-size: 0.7rem; }
}

@media (max-width: 480px) {
  .Poki_h5_featured { grid-template-columns: 1fr; gap: 12px; }
  .Poki_h5_game-grid { gap: 10px; }
  .Poki_h5_game-card-info { padding: 10px; }
  .Poki_h5_game-card-info h3 { font-size: 0.85rem; }
  .Poki_h5_game-card-info p { display: none; }
  .Poki_h5_game-frame-wrapper iframe { height: 300px; }
}
