/*************************************************
 * MOBILE-FIRST KIDS GAMES CSS
 * Simple, fun design for mobile and desktop
 *************************************************/

/* Import mobile-friendly fonts */
@import url("https://fonts.googleapis.com/css2?family=Fredoka+One:wght@400&family=Nunito:wght@400;600;700;800&display=swap");

/* 🎯 Mobile-First Color Palette */
:root {
  /* Fun, kid-friendly colors */
  --primary-pink: #ff6b9d;
  --primary-blue: #4ecdc4;
  --primary-yellow: #ffe66d;
  --primary-purple: #a8e6cf;
  --primary-orange: #ffb347;
  --primary-green: #96ceb4;

  /* Pastel backgrounds */
  --bg-pink: #ffd1dc;
  --bg-blue: #b5e2fa;
  --bg-yellow: #fff9c4;
  --bg-purple: #e6e6fa;
  --bg-green: #d4f1e8;

  /* Layout dimensions */
  --mobile-max-width: 375px;
  --content-padding: 16px;
  --border-radius: 20px;
  --card-radius: 16px;

  /* Touch-friendly sizes */
  --touch-min: 44px;
  --button-height: 56px;
}

/* 🌈 Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family:
    "Nunito",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: #000000; /* Solid black background */
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  background-position: 0 0;
  background-attachment: fixed;
  min-height: 100vh;
  color: #333;
  line-height: 1.6;
}

/* 📱 Mobile Container (Centered on Desktop) */
.mobile-wrapper {
  width: 100%;
  max-width: var(--mobile-max-width);
  margin: 0 auto;
  background: white;
  min-height: 100vh;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* 🎮 Fun Header */
.mobile-header {
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-yellow));
  padding: 20px var(--content-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mobile-header::before {
  content: "🎮🌟🎮🌟🎮";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
  opacity: 0.3;
  animation: float 3s ease-in-out infinite;
}

.mobile-logo {
  font-family: "Fredoka One", cursive;
  font-size: 24px;
  color: white;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: bounce 2s infinite;
}

.mobile-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 5px 0 0 0;
  font-weight: 600;
}

/* 📱 Mobile Content */
.mobile-content {
  flex: 1;
  padding: var(--content-padding);
  padding-bottom: 80px; /* Space for bottom nav */
}

/* AdSense Container Styles */
.ad-container {
  display: block;
  width: 100%;
  min-height: 100px; /* Reserve space for the ad to prevent layout shift */
  text-align: center;
  margin: 16px 0;
}

/* 🎯 Category Section */
.mobile-category-container {
  margin: 24px 0;
}

.mobile-category-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  text-align: center;
  font-family: "Fredoka One", cursive;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.mobile-category-buttons,
.tags-grid,
.pagination {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  padding-bottom: 10px;
}

.mobile-category-buttons::-webkit-scrollbar,
.tags-grid::-webkit-scrollbar,
.pagination::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.category-scroller,
.tags-scroller {
    display: flex;
    gap: 12px;
}

.category-scroller {
    animation: scroll 60s linear infinite; /* Slower animation */
}

.tags-scroller {
    animation: scroll 1000s linear infinite; /* Slower animation */
}

.category-scroller:hover,
.tags-scroller:hover {
    animation-play-state: paused;
}



.mobile-category-btn {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: white;
  border: none;
  border-radius: 25px;
  padding: 16px 24px;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: var(--button-height);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  flex-shrink: 0;
}

.mobile-category-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.pagination a {
  background: #f0f0f0;
  color: #333;
  padding: 10px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.pagination a:hover,
.pagination a.active {
  background: var(--primary-pink);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile-category-buttons::-webkit-scrollbar,
.tags-grid::-webkit-scrollbar,
.pagination::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.mobile-category-btn,
.tag-item,
.pagination a {
  flex-shrink: 0;
}

.tag-item {
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap; /* Prevent tags from wrapping */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  border: 1px solid #d0d0d0;
}

.tag-item:hover {
  background: linear-gradient(135deg, #e0e0e0, #d0d0d0);
  color: #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}


/* 🎮 Game Grid */
.mobile-game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.mobile-game-card {
  background: linear-gradient(135deg, var(--bg-pink), var(--bg-blue));
  border-radius: var(--card-radius);
  padding: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-game-card:nth-child(2n) {
  background: linear-gradient(135deg, var(--bg-yellow), var(--bg-green));
}

.mobile-game-card:nth-child(3n) {
  background: linear-gradient(135deg, var(--bg-purple), var(--bg-pink));
}

.mobile-game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.game-card-image {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.game-card-title {
  font-family: "Fredoka One", cursive;
  font-size: 14px;
  color: #333;
  margin: 8px 0;
  font-weight: 400;
  line-height: 1.2;
}

.game-card-rating {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

/* 🎮 Play Buttons */
.mobile-play-btn {
  background: linear-gradient(135deg, var(--primary-pink), var(--primary-yellow));
  color: var(--primary-yellow);
  border: none;
  border-radius: 20px;
  padding: 10px 16px;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
}

.mobile-play-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* 🚀 Enhanced Start Game Button */
.mobile-start-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 18px;
  font-weight: 800;
  padding: 18px 30px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  min-height: 60px;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-start-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a42a0 100%);
}

/* 🎯 Enhanced Action Buttons */
.enhanced-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 30px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.enhanced-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a42a0 100%);
}

/* 🎯 Section Headers */
.mobile-section {
  margin-bottom: 24px;
}

.mobile-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mobile-section-title {
  font-family: "Fredoka One", cursive;
  font-size: 20px;
  color: #333;
  margin: 0;
}

.mobile-section-decoration {
  font-size: 18px;
  animation: bounce 2s infinite;
}

/* 🏆 Achievement Section */
.mobile-success {
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  color: white;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  animation: bounce 0.6s ease;
  margin: 16px 0;
}

/* 📋 Description Cards */
.mobile-description-card {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 16px;
  padding: 20px;
  margin: 16px 0;
  border: 2px solid #2196f3;
}

.mobile-description-header {
  text-align: center;
  margin-bottom: 12px;
}

.mobile-description-title {
  font-family: "Fredoka One", cursive;
  font-size: 16px;
  color: #1976d2;
  margin: 0 0 4px 0;
}

.mobile-description-content {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* 📱 Bottom Navigation */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  display: flex;
  justify-content: space-around;
  padding: 6px 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.mobile-nav-item {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
  min-width: 60px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-icon {
  font-size: 20px;
}

.nav-text {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 🎮 Animations */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* 📱 Touch Enhancements */
.mobile-touch-enhanced {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: transform 0.1s ease;
}

.mobile-touch-enhanced:active {
  transform: scale(0.98);
}

.mobile-safe-touch {
  min-height: var(--touch-min);
  min-width: var(--touch-min);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 📱 Responsive Design */
@media screen and (max-width: 390px) {
  .mobile-wrapper {
    max-width: 100%;
  }
}

@media screen and (min-width: 768px) {
  body {
    padding: 20px;
    min-height: 100vh;
    background: #000000; /* Solid black background */
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    background-position: 0 0;
  }

  .mobile-wrapper {
    max-width: var(--mobile-max-width);
    min-height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin: 5vh auto;
  }

  .mobile-bottom-nav {
    position: relative;
    border-radius: 0;
  }
}

/* 🎮 Fun Elements */
.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.wiggle {
  animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
  0%,
  7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-5deg);
  }
  20% {
    transform: rotateZ(3deg);
  }
  25% {
    transform: rotateZ(-3deg);
  }
  30% {
    transform: rotateZ(2deg);
  }
  35% {
    transform: rotateZ(-1deg);
  }
  40%,
  100% {
    transform: rotateZ(0);
  }
}

/* Enhanced Game Page Styling */
.mobile-hero-section {
  margin: 20px 0 30px;
  text-align: center;
}

.mobile-game-showcase {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.game-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.game-image-wrapper:hover {
  transform: scale(1.02);
}

.mobile-hero-game-image {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.game-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 107, 157, 0.8), rgba(255, 168, 0, 0.8));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.game-image-wrapper:hover .game-image-overlay {
  opacity: 1;
}

.play-overlay-icon {
  font-size: 48px;
  margin-bottom: 10px;
  animation: pulse 2s infinite;
}

.play-overlay-text {
  font-size: 18px;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.mobile-cta-section {
  text-align: center;
  margin: 30px 0;
  padding: 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  color: white;
}

.game-ready-message {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 10px;
}

.ready-icon {
  font-size: 24px;
}

.ready-text {
  font-size: 20px;
  font-weight: 700;
}

.game-gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  padding-bottom: 10px;
  flex-wrap: nowrap; /* Added to prevent wrapping and enable horizontal scroll */
}

.game-gallery::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.gallery-image {
  min-width: 150px; /* Added to ensure images take up enough space to cause overflow */
  height: 150px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.mobile-game-stats {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

.mobile-stat-item {
  text-align: center;
}

.mobile-stat-icon {
  font-size: 24px;
}

.mobile-stat-text {
  font-size: 14px;
  font-weight: 600;
}

.enhanced-stats {
  margin: 30px 0;
}

.stat-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid #f0f0f0;
}

.stat-icon-wrapper {
  margin-bottom: 10px;
}

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #333;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.enhanced-about {
  margin: 30px 0;
}

.enhanced-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.header-icon {
  font-size: 24px;
}

.enhanced-content {
  line-height: 1.8;
  font-size: 16px;
}

.game-features {
  margin: 30px 0;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.feature-item {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 2px solid #f0f0f0;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.discover-section {
  text-align: center;
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  border-radius: 20px;
}

.section-intro {
  margin-bottom: 25px;
}

.intro-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: #333;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 0;
}

.enhanced-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 30px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.enhanced-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

@media (max-width: 480px) {
  .mobile-hero-game-image {
    width: 240px;
    height: 240px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}
/* Footer Styles */
.footer {
  background-color: #f8f9fa;
  padding: 40px 20px;
  border-top: 1px solid #e7e7e7;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 20px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.footer-section p,
.footer-section ul {
  font-size: 14px;
  color: #555;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #007bff;
}

/* Tag Cloud Styles */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.tag-cloud a {
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 15px;
  background-color: #eee;
  color: #333;
  transition: all 0.3s ease;
}

.tag-cloud a:hover {
  background-color: #007bff;
  color: #fff;
}

/* Accordion Styles */
.accordion summary {
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  padding: 10px 0;
  user-select: none;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary:before {
  content: '+';
  margin-right: 10px;
}

.accordion[open] summary:before {
  content: '-';
}

.accordion .tag-cloud {
  margin-top: 10px;
}

/* 🔍 Search Bar Styles */
.mobile-search-container {
  margin: 24px 0;
}

.mobile-search-form {
  display: flex;
  gap: 12px;
}

.mobile-search-input {
  flex-grow: 1;
  border: 2px solid #ddd;
  border-radius: 25px;
  padding: 12px 20px;
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  transition: all 0.3s ease;
}

.mobile-search-input:focus {
  outline: none;
  border-color: var(--primary-pink);
  box-shadow: 0 0 10px rgba(255, 107, 157, 0.2);
}

.mobile-search-btn {
  background: var(--primary-pink);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-search-btn:hover {
  background: #e65b8a;
}

/* Accordion Styles */
.accordion summary {
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  padding: 10px 0;
  user-select: none;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary:before {
  content: '+';
  margin-right: 10px;
}

.accordion[open] summary:before {
  content: '-';
}

.accordion .tag-cloud {
  margin-top: 10px;
}

/* Accordion Styles */
.accordion summary {
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  padding: 10px 0;
  user-select: none;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary:before {
  content: '+';
  margin-right: 10px;
}

.accordion[open] summary:before {
  content: '-';
}

.accordion .tag-cloud {
  margin-top: 10px;
}

/* Accordion Styles */
.accordion summary {
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  padding: 10px 0;
  user-select: none;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary:before {
  content: '+';
  margin-right: 10px;
}

.accordion[open] summary:before {
  content: '-';
}

.accordion .tag-cloud {
  margin-top: 10px;
}

/* Accordion Styles */
.accordion summary {
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  padding: 10px 0;
  user-select: none;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary:before {
  content: '+';
  margin-right: 10px;
}

.accordion[open] summary:before {
  content: '-';
}

.accordion .tag-cloud {
  margin-top: 10px;
}
