* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  display: block;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  padding: 0;
  touch-action: pan-y; /* केवल वर्टिकल स्क्रॉलिंग की अनुमति देता है */
}

.game-wrapper {
  width: 100%;
  max-width: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.game-container {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  background: linear-gradient(180deg, #64b3f4 0%, #c2e59c 100%);
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  touch-action: manipulation; /* टच हैंडलिंग के लिए महत्वपूर्ण */
}

.fullscreen-mode .game-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100% !important;
  max-width: 100% !important;
}

#game-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  touch-action: manipulation; /* टच हैंडलिंग को बेहतर बनाता है */
}

.ui-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 20px 20px;
  z-index: 5;
}

.score-container {
  padding: 10px 15px;
  color: white;
  font-weight: 700;
  font-size: 20px;
  position: absolute;
  top: 70px;
  left: 20px;
  height: 40px;
  line-height: 20px;
  background: none;
  backdrop-filter: none;
  border-radius: 0;
  box-shadow: none;
  border: none;
  display: flex;
  align-items: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* बेहतर दृश्यता के लिए */
}

.pause-btn, .mute-btn, .fullscreen-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  pointer-events: auto;
  z-index: 25;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: white;
  touch-action: manipulation; /* टच हैंडलिंग बेहतर बनाने के लिए */
  transition: all 0.2s ease;
}

.pause-btn:active, .mute-btn:active, .fullscreen-btn:active {
  transform: scale(0.95);
  background: rgba(255, 255, 255, 0.4);
}

.pause-btn {
  top: 70px;
  right: 20px;
}

.pause-btn::after {
  content: "P";
}

.pause-btn.paused::after {
  content: "R";
}

.mute-btn {
  top: 70px;
  right: 70px;
}

.fullscreen-btn {
  top: 70px;
  right: 120px;
  font-size: 16px;
}

.audio-controls {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.control-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 0 5px;
  font-size: 18px;
  color: #333;
  transition: all 0.2s ease;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 10;
}

.menu-content {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  opacity: 0;
  animation: popIn 0.4s ease forwards;
}

h1 {
  color: #333;
  margin-bottom: 20px;
  font-size: 28px;
}

.menu-btn {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 12px 24px;
  margin-top: 15px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s;
  pointer-events: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  touch-action: manipulation; /* बटन को बेहतर टच करने के लिए */
}

.menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.game-over-content h2 {
  color: #333;
  font-size: 32px;
  margin-bottom: 10px;
}

.final-score {
  font-size: 48px;
  color: #4CAF50;
  margin-bottom: 20px;
}

.start-text {
  position: absolute;
  color: white;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: pulse 1.5s infinite;
}

.countdown {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 72px;
  font-weight: bold;
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  animation: scale 1s infinite;
}

.power-up-text {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  padding: 8px 12px;
  color: white;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 20;
  max-width: 80%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* प्रोग्रेस बार कंटेनर */
#power-up-progress {
  height: 4px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin-top: 5px;
  overflow: hidden; /* ओवरफ्लो रोकने के लिए महत्वपूर्ण */
  position: relative; /* फिल के लिए पोजिशनिंग कॉन्टेक्स्ट */
}

/* प्रोग्रेस बार फिल */
#power-up-progress-fill {
  height: 100%;
  background-color: white;
  border-radius: 2px;
  transition: width 0.1s linear;
  max-width: 100%; /* यह महत्वपूर्ण है - कभी भी 100% से अधिक न हो */
  width: 100%; /* शुरू में पूरा भरा हुआ */
  position: absolute; /* पेरेंट के भीतर पोजिशन्ड */
  left: 0;
  top: 0;
}

/* पावर-अप के अनुसार पावर-अप टेक्स्ट का रंग */
.power-up-auto {
  background-color: rgba(255, 215, 0, 0.7);
}

.power-up-small {
  background-color: rgba(30, 144, 255, 0.7);
}

.power-up-wide {
  background-color: rgba(50, 205, 50, 0.7);
}

/* फुलस्क्रीन मोड में पावर-अप टेक्स्ट को अपडेट करें */
.fullscreen-mode .power-up-text {
  top: 100px;
  font-size: 16px;
}

/* मोबाइल पर पावर-अप टेक्स्ट को अपडेट करें */
@media (max-width: 767px) {
  .power-up-text {
    top: 70px;
    font-size: 12px;
    padding: 6px 10px;
  }
  
  #power-up-progress {
    height: 3px;
    margin-top: 4px;
  }
}

@keyframes scale {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hidden {
  display: none;
}

#countdown-screen {
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: none !important;
}

/* ऊपर बैनर */
.ad-banner-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.ad-468x60 {
  width: 100%;
  max-width: 468px;
  height: 60px;
  background: #f0f0f0;
  border: 1px dashed #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888;
  font-size: 12px;
}

/* साइड बैनर */
.ad-skyscraper {
  position: sticky;
  top: 10px;
  width: 300px;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 900;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 10px 0;
  height: calc(100vh - 20px);
}

.ad-left {
  left: 10px;
}

.ad-right {
  right: 10px;
}

.ad-300x600 {
  width: 300px;
  height: 100vh;
  background: #f0f0f0;
  border: 1px dashed #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888;
  font-size: 12px;
}

/* मोबाइल बॉटम एड्स */
.mobile-ads-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  padding-bottom: 20px;
}

.mobile-ad {
  width: 100%;
  height: 120px;
  background: #f0f0f0;
  border: 1px dashed #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888;
  border-radius: 10px;
}

/* रेस्पोंसिव लेआउट */
@media (min-width: 1300px) {
  .game-layout-container {
    max-width: 1280px;
  }

  .ad-skyscraper {
    display: flex;
    position: sticky;
    top: 10px;
    align-self: flex-start;
  }

  .game-wrapper {
    margin: 0 10px;
    max-width: 600px;
  }

  /* मोबाइल एड्स को डेस्कटॉप पर छिपाएं */
  .mobile-ads-container {
    display: none;
  }
}

/* मिडिल साइज स्क्रीन पर रेस्पोंसिव */
@media (max-width: 1299px) and (min-width: 768px) {
  .game-container {
    width: 480px;
    height: 100vh;
    max-height: none;
    border-radius: 0;
  }

  .game-wrapper {
    margin: 0;
  }

  /* मिडिल साइज पर मोबाइल एड्स दिखाएं */
  .mobile-ads-container {
    width: 480px;
  }
}

/* स्मॉल स्क्रीन (मोबाइल) */
@media (max-width: 767px) {
  .game-container {
    border-radius: 0;
    width: 90%; /* मोबाइल में 90% चौड़ाई */
    height: 80vh; /* मोबाइल में 80vh ऊंचाई */
    margin: 0 auto; /* सेंटर में रखें */
  }

  .fullscreen-mode .game-container {
    width: 100% !important; /* फुलस्क्रीन मोड में 100% चौड़ाई */
    height: 100vh !important; /* फुलस्क्रीन मोड में 100vh ऊंचाई */
  }

  .ad-banner-top {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }

  .mobile-ads-container {
    position: relative; /* absolute से relative में बदला */
    bottom: auto; /* bottom: 0 को हटाया */
    width: 90%; /* 90% चौड़ाई मोबाइल पर */
    z-index: 50;
    margin-top: 20px;
    padding: 0 10px;
  }
  
  .pause-btn {
    right: 15px;
  }
  
  .mute-btn {
    right: 65px;
  }
  
  .fullscreen-btn {
    right: 115px;
  }
}

/* SEO फ्रेंडली डिस्क्रिप्शन सेक्शन */
.game-description {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #333;
  line-height: 1.6;
}

.game-description h2 {
  color: #2E7D32;
  margin-bottom: 15px;
  text-align: center;
}

.game-description p {
  margin-bottom: 15px;
  text-align: justify;
}

.game-description ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.game-description li {
  margin-bottom: 5px;
}

.game-description .copyright {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-top: 30px;
}

/* मोबाइल के लिए स्टाइल */
@media (max-width: 767px) {
  .game-description {
    margin-top: 20px;
    border-radius: 0;
    width: 90%;
  }
}

/* गेम लेआउट कंटेनर - फ्लेक्स लेआउट */
.game-layout-container {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/* फुलस्क्रीन मोड में UI एलिमेंट को बेहतर पोजिशन देने के लिए */
.fullscreen-mode .score-container {
  top: 20px;
  left: 20px;
}

.fullscreen-mode .pause-btn {
  top: 20px;
  right: 20px;
}

.fullscreen-mode .mute-btn {
  top: 20px;
  right: 70px;
}

.fullscreen-mode .fullscreen-btn {
  top: 20px;
  right: 120px;
}

.fullscreen-mode .power-up-text {
  top: 30px;
}

/* गेम डिस्क्रिप्शन में ट्यूटोरियल सेक्शन के लिए CSS */
.tutorial-section {
  margin-top: 30px;
  padding: 20px;
  background-color: #f7f9f9;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.tutorial-section h3 {
  color: #2E7D32;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.4rem;
}

.tutorial-steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tutorial-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #4CAF50;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
}

.tutorial-step p {
  margin: 0;
  line-height: 1.5;
  flex-grow: 1;
}

/* हैशटैग्स सेक्शन */
.hashtags-section {
  margin-top: 25px;
  padding: 15px;
  background-color: #e8f5e9;
  border-radius: 8px;
  text-align: center;
}

.hashtags-section p {
  margin: 0;
  line-height: 1.6;
  color: #388E3C;
  font-size: 0.9rem;
  word-spacing: 5px;
}

/* मोबाइल डिवाइस पर ट्यूटोरियल स्टाइल्स */
@media (max-width: 767px) {
  .tutorial-section {
    padding: 15px;
  }
  
  .tutorial-step {
    flex-direction: column;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e0e0e0;
  }
  
  .tutorial-step:last-child {
    border-bottom: none;
  }
  
  .step-number {
    margin-bottom: 5px;
  }
  
  .hashtags-section p {
    font-size: 0.8rem;
    word-spacing: 3px;
  }
}

/* FAQ और रिलेटेड गेम्स सेक्शन के लिए CSS स्टाइल्स जोड़ें */
.faq-section {
  margin-top: 30px;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.faq-section h3 {
  color: #2E7D32;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.4rem;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px dashed #e0e0e0;
  padding-bottom: 15px;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-question {
  font-weight: bold;
  color: #1B5E20;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.faq-answer {
  color: #333;
}

.faq-answer ul {
  margin-top: 8px;
}

.related-games {
  margin-top: 30px;
  padding: 20px;
  background-color: #e8f5e9;
  border-radius: 10px;
}

.related-games h3 {
  color: #2E7D32;
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.4rem;
}

.related-games-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.related-games-list li {
  background: white;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .related-games-list {
    grid-template-columns: 1fr;
  }
  
  .faq-section, .related-games {
    padding: 15px;
  }
}

/* YouTube वीडियो सेक्शन स्टाइल्स */
.video-section {
  margin-top: 30px;
  padding: 20px;
  background-color: #f0f5ff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.video-section h3 {
  color: #2E7D32;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.4rem;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 आस्पेक्ट रेशो */
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.2rem;
  background-image: url('https://img.youtube.com/vi/fQoJZuBwrkU/maxresdefault.jpg');
  background-size: cover;
  background-position: center;
}

.placeholder-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.placeholder-icon:hover {
  background-color: rgba(255, 0, 0, 1);
  transform: scale(1.1);
}

.video-description {
  margin-top: 15px;
  color: #555;
  text-align: center;
  font-style: italic;
}

/* विस्तृत हैशटैग्स सेक्शन स्टाइल्स */
.hashtags-section.extended {
  margin-top: 30px;
  padding: 20px;
  background-color: #f5f8f5;
  border-radius: 10px;
}

.hashtags-section.extended h3 {
  color: #2E7D32;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.4rem;
}

.hashtags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.hashtag {
  display: inline-block;
  padding: 6px 12px;
  background-color: #e8f5e9;
  color: #2E7D32;
  border-radius: 30px;
  font-size: 0.9rem;
  margin: 0;
  transition: all 0.2s ease;
  border: 1px solid #c8e6c9;
}

.hashtag:hover {
  background-color: #c8e6c9;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* अतिरिक्त सामग्री स्टाइल्स */
.additional-content {
  margin-top: 30px;
  padding: 20px;
  background-color: #fafafa;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.additional-content h3 {
  color: #2E7D32;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.additional-content h4 {
  color: #1B5E20;
  margin: 20px 0 10px;
  font-size: 1.2rem;
}

.additional-content p {
  margin-bottom: 15px;
  text-align: justify;
}

/* मोबाइल डिवाइस के लिए अनुकूलित स्टाइल्स */
@media (max-width: 767px) {
  .video-section, .hashtags-section.extended, .additional-content {
    padding: 15px;
  }
  
  .hashtags-cloud {
    gap: 6px;
  }
  
  .hashtag {
    padding: 4px 10px;
    font-size: 0.8rem;
  }
  
  .placeholder-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .video-description {
    font-size: 0.9rem;
  }
  
  .additional-content h3 {
    font-size: 1.3rem;
  }
  
  .additional-content h4 {
    font-size: 1.1rem;
  }
}

/* लेज़ी लोडिंग एनिमेशन */
@keyframes pulse-bg {
  0% {
    background-color: rgba(0, 0, 0, 0.6);
  }
  50% {
    background-color: rgba(0, 0, 0, 0.8);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.6);
  }
}

.video-placeholder {
  animation: pulse-bg 2s infinite;
}

/* हैशटैग रंग बदलें - रंगों की किस्में */
.hashtag:nth-child(4n) {
  background-color: #e3f2fd;
  color: #1565C0;
  border-color: #bbdefb;
}

.hashtag:nth-child(4n):hover {
  background-color: #bbdefb;
}

.hashtag:nth-child(4n+1) {
  background-color: #f3e5f5;
  color: #7B1FA2;
  border-color: #e1bee7;
}

.hashtag:nth-child(4n+1):hover {
  background-color: #e1bee7;
}

.hashtag:nth-child(4n+2) {
  background-color: #fffde7;
  color: #F9A825;
  border-color: #fff9c4;
}

.hashtag:nth-child(4n+2):hover {
  background-color: #fff9c4;
}

/* अतिरिक्त SEO रिच कंटेंट स्टाइल्स */
.seo-rich-section {
  margin-top: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.seo-rich-section h3 {
  color: #2E7D32;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.4rem;
}

.seo-rich-section ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.seo-rich-section li {
  margin-bottom: 8px;
}

/* रेटिंग स्टार्स विजुअल */
.rating-stars {
  display: flex;
  justify-content: center;
  margin: 15px 0;
}

.star {
  color: #FFD700;
  font-size: 24px;
  margin: 0 2px;
}

.star-container {
  text-align: center;
  margin-bottom: 20px;
}

.star-container p {
  margin-top: 5px;
  color: #666;
  font-size: 14px;
  font-style: italic;
}

/* वीडियो सेक्शन के लिए अतिरिक्त स्टाइल्स */
.video-section::before {
  content: "🎮";
  font-size: 2rem;
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px dashed #ddd;
  font-size: 0.8rem;
  color: #777;
}

.video-views::before {
  content: "👁️ ";
}

.video-date::before {
  content: "📅 ";
}

/* अतिरिक्त इंटरैक्टिव हैशटैग स्टाइल्स */
.hashtags-cloud.interactive .hashtag {
  cursor: pointer;
}

.hashtags-cloud.interactive .hashtag:active {
  transform: scale(0.95);
}

/* हैशटैग्स लेआउट सुधार */
.hashtags-section.extended .hashtags-categories {
  margin-bottom: 15px;
}

.hashtags-section.extended .category-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #1B5E20;
}

.hashtags-section.extended .category-hashtags {
  margin-bottom: 15px;
}

/* प्रिंट स्टाइल्स (सीधे SEO को प्रभावित नहीं करता, लेकिन उपयोगकर्ता अनुभव सुधारता है) */
@media print {
  .hashtags-section, 
  .video-section, 
  .ad-skyscraper, 
  .ad-banner-top, 
  .mobile-ads-container,
  .pause-btn,
  .mute-btn,
  .fullscreen-btn {
    display: none !important;
  }
  
  .game-description {
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
  
  body {
    background: white;
    color: black;
  }
} 