/* Apps Manager Plugin Styles - Mobile Optimized with Green Buttons */

/* Mobile-First Responsive Design */
.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }
  .mobile-ad-space,
  .mobile-latest-apps {
    display: none;
  }
}

/* Latest Reviews Section - Fixed Pinned Bar */
.latest-reviews-section {
  margin: 20px 0;
  padding: 0;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

/* Pinned Apps Bar - Manual Scroll Without Visible Scrollbar */
.apps-pinned-bar {
  position: relative;
  margin: 20px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .apps-pinned-bar {
    padding: 20px;
  }
}

.apps-pinned-bar.carousel .apps-container {
  display: flex;
  gap: 15px;
  padding: 10px 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  -webkit-overflow-scrolling: touch;
}

.apps-pinned-bar.carousel .apps-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

@media (min-width: 768px) {
  .apps-pinned-bar.carousel .apps-container {
    gap: 25px;
  }
}

.app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 140px;
  padding: 15px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .app-item {
    min-width: 180px;
    padding: 20px;
  }
}

.app-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.app-icon-large img {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .app-icon-large img {
    width: 90px;
    height: 90px;
    border-radius: 18px;
  }
}

.app-icon-placeholder-large {
  width: 70px;
  height: 70px;
  background: #e9ecef;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .app-icon-placeholder-large {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    font-size: 36px;
  }
}

.app-info {
  margin-top: 12px;
}

@media (min-width: 768px) {
  .app-info {
    margin-top: 15px;
  }
}

.app-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #333;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .app-title {
    font-size: 16px;
    margin: 0 0 10px 0;
  }
}

.app-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

@media (min-width: 768px) {
  .app-rating {
    gap: 8px;
  }
}

.stars {
  display: flex;
  gap: 1px;
}

@media (min-width: 768px) {
  .stars {
    gap: 2px;
  }
}

.star {
  font-size: 14px;
  color: #ffc107;
}

@media (min-width: 768px) {
  .star {
    font-size: 16px;
  }
}

.star.empty {
  color: #e9ecef;
}

.star.half {
  background: linear-gradient(90deg, #ffc107 50%, #e9ecef 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating-number {
  font-size: 12px;
  font-weight: 600;
  color: #666;
}

@media (min-width: 768px) {
  .rating-number {
    font-size: 14px;
  }
}

/* Featured Apps Boxes Shortcode Styles - Fixed Design */
.apps-grid {
  width: calc(100% + 24px);
  margin: -20px -12px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  box-sizing: border-box;
  padding: 0;
}

@media (max-width: 1024px) {
  .apps-grid {
    width: calc(100% + 20px);
    margin: -20px -10px;
  }
}

@media (max-width: 580px) {
  .apps-grid {
    width: 100%;
    margin: -20px 0px;
  }
}

.apps-grid .app-item {
  width: 50%;
  padding: 20px 12px;
  box-sizing: border-box;
}

@media (max-width: 590px) {
  .apps-grid .app-item {
    width: 100%;
  }
}

@media (max-width: 580px) {
  .apps-grid .app-item {
    width: 100%;
    padding: 20px 0px;
  }
}

.apps-grid .app-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0px 24px 20px;
  overflow: visible;
  border-radius: 6px;
  box-shadow: rgba(43, 64, 115, 0.12) 0px 4px 20px;
  background: rgb(255, 255, 255);
  color: rgb(0, 188, 235);
  transition: 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
  box-sizing: border-box;
  text-decoration: none;
}

.apps-grid .app-link:hover {
  text-decoration: none;
  outline: none;
  color: rgb(46, 49, 146);
  transform: translateY(-5px);
  box-shadow: rgba(43, 64, 115, 0.2) 0px 8px 30px;
}

@media (max-width: 1024px) {
  .apps-grid .app-link {
    padding: 0px 20px 20px;
  }
}

@media (max-width: 767px) {
  .apps-grid .app-link {
    padding: 0px 15px 15px;
  }
}

.apps-grid .app-header {
  display: flex;
  align-items: flex-end;
  margin-top: -20px;
  margin-bottom: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(43, 64, 115, 0.12);
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .apps-grid .app-header {
    margin-top: -26px;
    margin-bottom: 10px;
  }
}

@media (max-width: 1024px) {
  .apps-grid .app-header {
    margin-bottom: 40px;
  }
}

.apps-grid .app-icon {
  width: 100px;
  height: 100px;
  display: block;
  box-sizing: border-box;
}

.apps-grid .app-image {
  border-radius: 4px;
  box-shadow: rgba(43, 64, 115, 0.18) 0px 12px 10px -6px;
  opacity: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
  box-sizing: border-box;
}

.apps-grid .app-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 4px;
  box-shadow: rgba(43, 64, 115, 0.18) 0px 12px 10px -6px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #999;
}

.apps-grid .app-info {
  display: flex;
  flex-direction: column;
  width: calc(100% - 100px);
  padding: 0px 0px 6px 24px;
  background: rgb(255, 255, 255);
  border-radius: 5px;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .apps-grid .app-info {
    padding: 0px 0px 0px 14px;
  }
}

.apps-grid .app-name {
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: rgb(11, 17, 31);
  transition: 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
  text-wrap: nowrap;
  white-space-collapse: collapse;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.apps-grid .app-description {
  font-size: 15px;
  line-height: 24px;
  color: rgba(11, 17, 31, 0.72);
  width: 100%;
  text-align: justify;
  -webkit-line-clamp: 3;
  max-width: 450px;
  margin: 0px auto;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .apps-grid .app-description {
    font-size: 14px;
  }
}

.apps-grid .app-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(43, 64, 115, 0.12);
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .apps-grid .app-footer {
    margin-top: 14px;
  }
}

@media (max-width: 767px) {
  .apps-grid .app-footer {
    margin-top: 10px;
  }
}

.apps-grid .app-rating {
  line-height: 15px;
  box-sizing: border-box;
}

.apps-grid .rating-stars {
  display: inline-flex;
  height: 15px;
  width: 92px;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

.apps-grid .rating-stars .star {
  font-size: 12px;
  color: #ffc107;
}

.apps-grid .rating-stars .star.empty {
  color: #e9ecef;
}

.apps-grid .read-more {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  transition: 0.3s cubic-bezier(0.2, 0.57, 0.36, 0.8);
  box-sizing: border-box;
}

.apps-grid .read-more:hover {
  text-decoration: underline;
}

/* Mobile Ad Spaces */
.mobile-ad-space {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mobile-latest-apps {
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
}

.mobile-latest-apps h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  text-align: center;
}

.mobile-apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.mobile-app-item {
  background: white;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.mobile-app-item:hover {
  transform: translateY(-2px);
}

.mobile-app-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  text-align: center;
}

.mobile-app-icon img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 8px;
}

.mobile-app-info h4 {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.mobile-app-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.rating-stars {
  color: #ffc107;
  font-size: 10px;
}

.rating-num {
  font-size: 10px;
  color: #666;
  font-weight: 500;
}

/* Single App Page - Mobile Optimized */
.single-app-layout {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

@media (min-width: 768px) {
  .single-app-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 20px;
  }
}

.app-main-content {
  background: white;
}

.app-header-clean {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .app-header-clean {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    padding: 30px 0;
    margin-bottom: 30px;
    text-align: left;
  }
}

.app-icon-section img {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .app-icon-section img {
    width: 120px;
    height: 120px;
    border-radius: 24px;
  }
}

.app-icon-placeholder-clean {
  width: 100px;
  height: 100px;
  background: #f0f0f0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

@media (min-width: 768px) {
  .app-icon-placeholder-clean {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    font-size: 48px;
  }
}

.app-header-info {
  flex: 1;
}

.app-title-clean {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .app-title-clean {
    font-size: 32px;
    margin: 0 0 15px 0;
  }
}

.app-rating-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .app-rating-header {
    justify-content: flex-start;
    gap: 10px;
  }
}

.app-rating-header .stars .star {
  font-size: 18px;
}

@media (min-width: 768px) {
  .app-rating-header .stars .star {
    font-size: 20px;
  }
}

.app-rating-header .rating-number {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

@media (min-width: 768px) {
  .app-rating-header .rating-number {
    font-size: 18px;
  }
}

.app-get-button-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .app-get-button-header {
    gap: 10px;
  }
}

/* Green Buttons with Shake Animation */
.get-app-btn-header-new,
.get-app-btn-final-new,
.get-app-btn-header-big,
.get-app-btn-final-big {
  display: inline-block;
  width: 248px;
  padding: 12px 24px;
  line-height: 1.15;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  background-color: #4ac754;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
  justify-content: center;
}

.get-app-btn-header-new:hover,
.get-app-btn-final-new:hover,
.get-app-btn-header-big:hover,
.get-app-btn-final-big:hover {
  background-color: #0056b3;
  color: #ffffff;
  transform: none;
  box-shadow: none;
}

.get-app-btn-final-new {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  min-width: 200px;
  justify-content: center;
  position: relative;
}

@media (min-width: 768px) {
  .get-app-btn-final-new {
    padding: 20px 50px;
    font-size: 20px;
    min-width: 250px;
  }
}

.get-app-btn-header-new:hover,
.get-app-btn-final-new:hover {
  color: white;
  text-decoration: none;
}

/* Shake Animation */
.shake-animation {
  animation: shake 2s infinite;
}

@keyframes shake {
  0%,
  100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-3px);
  }
  75% {
    transform: translateY(3px);
  }
}

.btn-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (min-width: 768px) {
  .btn-icon {
    width: 24px;
    height: 24px;
  }
}

.trademark-notice {
  font-size: 10px;
  color: #999;
  margin: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .trademark-notice {
    font-size: 11px;
  }
}

.download-notice {
  font-size: 12px;
  color: #666;
  margin: 10px 0 0 0;
  text-align: center;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .download-notice {
    font-size: 13px;
  }
}

.app-article-content {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .app-article-content {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
  }
}

.app-screenshots-section {
  margin: 30px 0;
}

@media (min-width: 768px) {
  .app-screenshots-section {
    margin: 40px 0;
  }
}

.screenshots-gallery-new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 15px 0;
}

@media (min-width: 480px) {
  .screenshots-gallery-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .screenshots-gallery-new {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
  }
}

.screenshot-item-new img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .screenshot-item-new img {
    border-radius: 12px;
  }
}

.screenshot-item-new img:hover {
  transform: scale(1.05);
}

.app-get-section-final {
  text-align: center;
  padding: 30px 0;
  border-top: 2px solid #f0f0f0;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .app-get-section-final {
    padding: 40px 0;
    margin-top: 40px;
  }
}

/* Green Progress Bar */
.progress-bar-green {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0 0 12px 12px;
}

.progress-fill-green {
  height: 100%;
  background: #fff;
  border-radius: 0 0 12px 12px;
  width: 0;
}

@keyframes progressAnimationGreen {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* Comments Section */
.comments-section {
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

@media (min-width: 768px) {
  .comments-section {
    margin: 60px 0;
    padding: 30px 0;
  }
}

/* Related Posts */
.related-posts-section {
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

@media (min-width: 768px) {
  .related-posts-section {
    margin: 60px 0;
    padding: 30px 0;
  }
}

.related-posts-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

@media (min-width: 768px) {
  .related-posts-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

@media (min-width: 480px) {
  .related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .related-posts-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
}

.related-post-item {
  text-align: center;
}

.related-post-item a {
  text-decoration: none;
  color: #333;
}

.related-post-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .related-post-item img {
    height: 100px;
    margin-bottom: 10px;
  }
}

.related-post-item h4 {
  font-size: 12px;
  margin: 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .related-post-item h4 {
    font-size: 14px;
  }
}

/* Right Sidebar - Desktop Only */
.app-sidebar,
.getapps-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-ad-space {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-placeholder {
  color: #999;
  font-style: italic;
}

.latest-apps-sidebar h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.latest-apps-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.latest-app-item {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.latest-app-item:hover {
  transform: translateY(-2px);
}

.latest-app-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #333;
}

.latest-app-icon img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
}

.latest-app-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.latest-app-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rating-stars {
  color: #ffc107;
  font-size: 12px;
}

.rating-num {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

/* GetApps Page Layout - Mobile Optimized */
.getapps-layout {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
  min-height: 70vh;
}

@media (min-width: 768px) {
  .getapps-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 20px;
  }
}

.getapps-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .getapps-main {
    flex-direction: row;
  }
}

.getapps-content {
  max-width: 500px;
  width: 100%;
  text-align: center;
}

/* GetApps Header - Same Style as Single App */
.app-info-section-getapps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .app-info-section-getapps {
    flex-direction: row;
    gap: 20px;
    text-align: left;
  }
}

.app-icon-getapps img {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .app-icon-getapps img {
    width: 120px;
    height: 120px;
    border-radius: 24px;
  }
}

.app-header-info-getapps {
  flex: 1;
}

.app-title-getapps {
  color: rgb(11, 17, 31);
  font-size: 28.9px; /* Reduced by 15% from 34px for desktop */
  font-weight: 600;
  line-height: 38px;
  margin-bottom: 3px;
  margin-top: 0px;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .app-title-getapps {
    font-size: 17px; /* Reduced by 50% from 34px for mobile */
    line-height: 22px;
  }
}

.app-rating-getapps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .app-rating-getapps {
    justify-content: flex-start;
    gap: 10px;
  }
}

.app-rating-getapps .stars .star {
  font-size: 18px;
}

@media (min-width: 768px) {
  .app-rating-getapps .stars .star {
    font-size: 20px;
  }
}

.app-rating-getapps .rating-number {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

@media (min-width: 768px) {
  .app-rating-getapps .rating-number {
    font-size: 18px;
  }
}

.store-buttons h2 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #555;
}

@media (min-width: 768px) {
  .store-buttons h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.store-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  margin-bottom: 12px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  overflow: hidden;
}

@media (min-width: 768px) {
  .store-btn {
    gap: 15px;
    padding: 15px 20px;
    margin-bottom: 15px;
  }
}

.store-btn:hover {
  border-color: #28a745;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #333;
}

.store-icon-svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .store-icon-svg {
    width: 32px;
    height: 32px;
  }
}

.store-info {
  text-align: left;
  flex: 1;
}

.store-label {
  display: block;
  font-size: 11px;
  color: #666;
}

@media (min-width: 768px) {
  .store-label {
    font-size: 12px;
  }
}

.store-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

@media (min-width: 768px) {
  .store-name {
    font-size: 16px;
  }
}

.play-store:hover {
  border-color: #34a853;
}

.app-store:hover {
  border-color: #007aff;
}

.steam-store:hover {
  border-color: #1b2838;
}

.epic-store:hover {
  border-color: #0078f2;
}

.custom-store:hover {
  border-color: #6c757d;
}

.countdown-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.countdown-text {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .countdown-text {
    font-size: 16px;
  }
}

.countdown-progress {
  width: 0%;
  height: 3px;
  background: #28a745;
  border-radius: 2px;
  transition: width 1s linear;
}

/* Summary Section */
.app-summary-section {
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.app-summary-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  text-align: center;
}

@media (min-width: 768px) {
  .app-summary-section h3 {
    font-size: 20px;
  }
}

.summary-content {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  text-align: center;
}

@media (min-width: 768px) {
  .summary-content {
    font-size: 15px;
    line-height: 1.7;
  }
}

.back-link {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
  text-align: center;
}

@media (min-width: 768px) {
  .back-link {
    margin-top: 30px;
    padding-top: 20px;
  }
}

.back-link a {
  color: #28a745;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

@media (min-width: 768px) {
  .back-link a {
    font-size: 16px;
  }
}

.back-link a:hover {
  text-decoration: underline;
}

/* Enhanced Modal Styles for Mobile */
.screenshot-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.screenshot-modal .modal-content {
  position: relative;
  margin: 5% auto;
  max-width: 95%;
  max-height: 95%;
  text-align: center;
  animation: modalZoom 0.3s ease;
}

@media (min-width: 768px) {
  .screenshot-modal .modal-content {
    margin: 2% auto;
  }
}

@keyframes modalZoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.screenshot-modal img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .screenshot-modal img {
    max-height: 90vh;
    border-radius: 15px;
  }
}

.screenshot-modal .close {
  position: absolute;
  top: -35px;
  right: 0;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .screenshot-modal .close {
    top: -50px;
    font-size: 40px;
  }
}

.screenshot-modal .close:hover {
  opacity: 0.7;
}

/* Touch-friendly improvements */
@media (max-width: 767px) {
  .app-item,
  .mobile-app-item,
  .latest-app-item,
  .store-btn {
    min-height: 44px; /* iOS recommended touch target */
  }

  .get-app-btn-header-new,
  .get-app-btn-final-new {
    min-height: 44px;
    touch-action: manipulation;
  }

  /* Prevent zoom on input focus */
  input,
  select,
  textarea {
    font-size: 16px;
  }

  /* Better spacing for mobile */
  .single-app-layout,
  .getapps-layout {
    padding: 10px;
  }

  .app-header-clean {
    padding: 15px 0;
  }

  .app-get-section-final {
    padding: 25px 0;
  }
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .shake-animation {
    animation: none;
  }

  .app-item,
  .mobile-app-item,
  .latest-app-item {
    transition: none;
  }

  .screenshot-item-new img:hover {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .get-app-btn-header-new,
  .get-app-btn-final-new {
    border: 2px solid white;
  }

  .store-btn {
    border-width: 3px;
  }
}

/* Centered Get App Section */
.app-get-section-final-center {
  text-align: center;
  padding: 40px 0;
  border-top: 2px solid #f0f0f0;
  margin: 40px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.get-app-button-container-center {
  max-width: 400px;
  width: 100%;
}

.get-app-btn-final-center {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  border: none;
  padding: 20px 50px;
  border-radius: 15px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
  display: block;
  width: 100%;
  margin: 0 auto 15px auto;
  position: relative;
  min-height: 60px;
}

.get-app-btn-final-center:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.loading-text {
  font-size: 18px;
  font-weight: 600;
  color: white;
}

/* Remove icons from header buttons */
.get-app-btn-header-new {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  cursor: pointer;
}

/* Pros and Cons Section */
.pros-cons-section {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pros-section,
.cons-section {
  margin-bottom: 20px;
}

.pros-section:last-child,
.cons-section:last-child {
  margin-bottom: 0;
}

.pros-section h3 {
  color: #28a745;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-section h3:before {
  content: "✓";
  background: #28a745;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.cons-section h3 {
  color: #dc3545;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cons-section h3:before {
  content: "✗";
  background: #dc3545;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.pros-list,
.cons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-list li,
.cons-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  padding-left: 25px;
}

.pros-list li:last-child,
.cons-list li:last-child {
  border-bottom: none;
}

.pros-list li:before {
  content: "•";
  color: #28a745;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 8px;
}

.cons-list li:before {
  content: "•";
  color: #dc3545;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 8px;
}

/* Green Store Buttons for GetApps Page */
.store-btn-green {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border: none;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.store-btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  text-decoration: none;
  color: white;
}

.store-name-green {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

/* Screenshots Section Styling */
.app-screenshots-section {
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.app-screenshots-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

/* Mobile Responsive Updates */
@media (max-width: 767px) {
  .get-app-btn-final-center {
    padding: 18px 30px;
    font-size: 18px;
  }

  .loading-text {
    font-size: 16px;
  }

  .pros-cons-section {
    padding: 15px;
    margin-bottom: 20px;
  }

  .pros-section h3,
  .cons-section h3 {
    font-size: 16px;
  }

  .store-btn-green {
    padding: 12px 15px;
  }

  .store-name-green {
    font-size: 16px;
  }

  .app-screenshots-section h3 {
    font-size: 20px;
  }
  .app-title-getapps {
    font-size: 18.2px; /* Reduced by 30% from 26px */
    line-height: 24px;
  }
}

/* New GetApps Page Layout */
.getapps-new-layout {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
  min-height: 70vh;
}

@media (min-width: 768px) {
  .getapps-new-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 20px;
  }
}

.getapps-new-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* App Header Section */
.getapps-app-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 2px solid #f0f0f0;
  text-align: center;
}

@media (min-width: 768px) {
  .getapps-app-header {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}

.getapps-app-icon img {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .getapps-app-icon img {
    width: 140px;
    height: 140px;
    border-radius: 28px;
  }
}

.getapps-app-info {
  flex: 1;
}

.getapps-app-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .getapps-app-title {
    font-size: 36px;
    margin: 0 0 20px 0;
  }
}

.getapps-app-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .getapps-app-rating {
    justify-content: flex-start;
    gap: 12px;
  }
}

.getapps-app-rating .stars .star {
  font-size: 20px;
}

@media (min-width: 768px) {
  .getapps-app-rating .stars .star {
    font-size: 24px;
  }
}

.getapps-app-rating .rating-number {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

@media (min-width: 768px) {
  .getapps-app-rating .rating-number {
    font-size: 20px;
  }
}

/* Platform Links Section */
.platform-links-section {
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.platform-links-section h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #333;
  text-align: center;
}

@media (min-width: 768px) {
  .platform-links-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

.platform-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

@media (min-width: 480px) {
  .platform-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .platform-links-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }
}

.platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .platform-link {
    padding: 25px 20px;
  }
}

.platform-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: #333;
}

.platform-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: white;
}

@media (min-width: 768px) {
  .platform-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
}

.platform-icon svg {
  width: 30px;
  height: 30px;
}

@media (min-width: 768px) {
  .platform-icon svg {
    width: 36px;
    height: 36px;
  }
}

.platform-name {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .platform-name {
    font-size: 16px;
  }
}

/* Platform-specific colors */
.android-link .platform-icon {
  background: #3ddc84;
}

.android-link:hover {
  border-color: #3ddc84;
}

.ios-link .platform-icon {
  background: #007aff;
}

.ios-link:hover {
  border-color: #007aff;
}

.steam-link .platform-icon {
  background: #1b2838;
}

.steam-link:hover {
  border-color: #1b2838;
}

.epic-link .platform-icon {
  background: #0078f2;
}

.epic-link:hover {
  border-color: #0078f2;
}

.custom-link .platform-icon {
  background: #6c757d;
}

.custom-link:hover {
  border-color: #6c757d;
}

/* Screenshots Slider Section */
.getapps-screenshots-section {
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.getapps-screenshots-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #333;
  text-align: center;
}

@media (min-width: 768px) {
  .getapps-screenshots-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

.screenshots-slider-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.screenshots-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.screenshot-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f9fa;
}

.screenshot-slide img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}

.slider-btn-new {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn-new:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn-new {
  left: 15px;
}

.next-btn-new {
  right: 15px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: rgba(248, 249, 250, 0.9);
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #28a745;
  transform: scale(1.2);
}

.slider-dot:hover {
  background: #28a745;
}

/* App Description Section */
.getapps-description-section {
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}

.getapps-description-section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

@media (min-width: 768px) {
  .getapps-description-section h3 {
    font-size: 28px;
    margin-bottom: 25px;
  }
}

.description-content {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  text-align: left;
}

@media (min-width: 768px) {
  .description-content {
    font-size: 17px;
    line-height: 1.8;
  }
}

.description-content p {
  margin-bottom: 15px;
}

.description-content h1,
.description-content h2,
.description-content h3,
.description-content h4 {
  color: #333;
  margin-top: 25px;
  margin-bottom: 15px;
}

.description-content ul,
.description-content ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.description-content li {
  margin-bottom: 8px;
}

/* Mobile Responsive Updates */
@media (max-width: 767px) {
  .getapps-new-layout {
    padding: 10px;
  }

  .getapps-new-main {
    gap: 20px;
  }

  .getapps-app-header {
    padding: 20px 0;
  }

  .getapps-app-icon img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
  }

  .getapps-app-title {
    font-size: 24px;
  }

  .platform-links-section,
  .getapps-screenshots-section,
  .getapps-description-section {
    padding: 20px 0;
  }

  .platform-links-section h2,
  .getapps-screenshots-section h3,
  .getapps-description-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .platform-link {
    padding: 15px 10px;
  }

  .platform-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .platform-icon svg {
    width: 24px;
    height: 24px;
  }

  .platform-name {
    font-size: 12px;
  }

  .slider-btn-new {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .prev-btn-new {
    left: 10px;
  }

  .next-btn-new {
    right: 10px;
  }

  .slider-dots {
    padding: 15px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .description-content {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Touch improvements for mobile */
@media (max-width: 767px) {
  .platform-link {
    min-height: 44px;
    touch-action: manipulation;
  }

  .slider-btn-new {
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
  }

  .slider-dot {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slider-dot::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    transition: all 0.3s ease;
  }

  .slider-dot.active::before {
    background: #28a745;
    transform: scale(1.2);
  }
}

/* New Single App Page Styles with Poppins Font */
body,
.single-app-new-layout {
  font-family: "Poppins", sans-serif;
}

.mobile-only {
  display: block;
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

.single-app-new-layout {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

@media (min-width: 768px) {
  .single-app-new-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 20px;
  }
}

/* Games Carousel */
.games-carousel-section {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 15px;
  background: #f8f9fa;
  padding: 15px;
}

.games-carousel-container {
  position: relative;
}

.games-carousel-slider {
  display: flex;
  gap: 15px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 10px 0;
}

.game-carousel-item {
  flex-shrink: 0;
}

.game-carousel-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.game-carousel-icon:hover {
  transform: scale(1.1);
}

.game-carousel-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* App Header */
.app-header-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .app-header-new {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}

.app-icon-section-new img {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.app-icon-placeholder-new {
  width: 120px;
  height: 120px;
  background: #f0f0f0;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.app-header-info-new {
  flex: 1;
}

.app-title-new {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin: 0 0 15px 0;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
}

.app-rating-header-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .app-rating-header-new {
    justify-content: flex-start;
  }
}

.stars-new .star {
  font-size: 24px;
  color: #ffa300;
}

.stars-new .star.empty {
  color: #e9ecef;
}

.rating-number-new {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}

.trademark-notice-new {
  font-size: 12px;
  color: #999;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* Big Buttons with Zoom Animation */
.get-app-btn-header-big,
.get-app-btn-final-big {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 20px 40px;
  border: none;
  border-radius: 15px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.get-app-btn-final-big {
  padding: 25px 50px;
  font-size: 22px;
  min-width: 300px;
  position: relative;
}

/* Replace the zoom animation with the pulse animation from the example */
.zoom-animation {
  animation: pulse 2s infinite;
}

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

.get-app-btn-header-big:hover,
.get-app-btn-final-big:hover {
  color: white;
  text-decoration: none;
}

/* Read More Button Centered */
.read-more-container {
  text-align: center;
  margin: 20px 0;
}

.read-more-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background: #218838;
}

/* Balanced Layout Constraints - Prevent expansion while maintaining normal width */
.single-app-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
}

.single-app-layout {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

@media (min-width: 768px) {
  .single-app-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 20px;
    max-width: 1200px;
  }

  .single-app-main {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .single-app-sidebar {
    width: 300px;
    flex-shrink: 0;
  }
}

/* Prevent content overflow without restricting normal width */
.article-text,
.tab-content {
  overflow-wrap: break-word;
  word-break: break-word;
}

.article-text img,
.tab-content img {
  max-width: 100%;
  height: auto;
}

/* Ensure apps grid doesn't cause expansion */
.apps-grid {
  max-width: 100%;
  overflow: hidden;
}

.apps-grid .app-item {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* Container constraints for getapps page */
.getapps-layout,
.getapps-new-layout {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

@media (min-width: 768px) {
  .getapps-layout,
  .getapps-new-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    max-width: 1200px;
  }

  .getapps-main,
  .getapps-new-main {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .getapps-sidebar,
  .app-sidebar {
    width: 300px;
    flex-shrink: 0;
  }
}

/* Updates */

.featured-app-title {
  font-size: 25.5px !important; /* Reduced by 25% from 34px for mobile */
  font-weight: 600;
  line-height: 34px; /* Adjusted proportionally */
  margin: 0 0 8px 0;
  color: rgb(11, 17, 31);
}

@media (min-width: 768px) {
  .featured-app-title {
    font-size: 28.9px !important; /* Reduced by 15% from 34px for desktop */
    line-height: 38px;
  }
}

.app-title-getapps {
  color: rgb(11, 17, 31);
  font-size: 24.6px; /* Reduced by 15% from 28.9px for desktop */
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 3px;
  margin-top: 0px;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .app-title-getapps {
    font-size: 13.7px; /* Reduced by 25% from original mobile size */
    line-height: 18px;
  }
}
