@charset "utf-8";

:root {
  --primary-blue: #1c1a7e;
  --primary-gradient: linear-gradient(180deg, #1c1a7e 0%, #283593 100%);
  --primary-orange: #ff9800;
  --accent-green: #4caf50;
  --accent-green-hover: #43a047;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f5f5f5;
  --card-bg: #ffffff;
  --font-main:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial,
    sans-serif;
}

blockquote,
body,
dd,
dl,
dt,
fieldset,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
html,
iframe,
legend,
li,
ol,
p,
pre,
textarea,
ul {
  margin: 0;
  padding: 0;
  border: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fluid base font size for responsive scaling; components use rem units */
html {
  font-size: clamp(14px, 1.2vw + 0.2rem, 18px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: bold;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.75rem, 1.8vw + 1rem, 2.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.2em;
  font-weight: 600;
  text-transform: none;
}

h2 {
  font-size: clamp(1.5rem, 1.4vw + 0.9rem, 2.125rem);
  margin-bottom: 1.25rem;
  line-height: 1.2em;
  font-weight: bold;
  text-transform: none;
}

h3 {
  font-size: clamp(1.25rem, 1.1vw + 0.8rem, 1.8rem);
  margin-bottom: 1.25rem;
  line-height: 1.2em;
  font-weight: 600;
  text-transform: none;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h4,
h5,
h6 {
  margin-bottom: 20px;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

#main-site {
  overflow: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.5;
  /* Base font-size now controlled by html; use rems for component scaling */
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
}

a {
  text-decoration: none;
  outline: none;
}

/* Header */
header {
  background: radial-gradient(
    circle at center,
    #9f0000 0%,
    #5d0b0b 40%,
    #3a0000 70%,
    #4c0000 100%
  );
  color: white;
  color: var(--text-light);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  min-height: fit-content;
}

.section {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  text-decoration: none;
}

.logo img {
  height: 40px; /* Adjust based on preference */
  width: auto;
}

.logo-text {
  margin-left: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-light);
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
}

/* Hero Section */
.hero {
  color: var(--text-light);
  padding: 30px 0;
  text-align: center;
  margin: 0 auto;
  max-width: 1200px;
}

.hero-block {
  background: radial-gradient(
    circle at center,
    #ff1a1a 0%,
    #b30000 40%,
    #3a0000 70%,
    #000 100%
  );
  color: white;
  max-width: 1200px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero .version-info {
  font-size: 0.9rem;
  margin-top: 20px;
  opacity: 0.8;
}

.btn-download {
  display: inline-block;
  background-color: var(--accent-green);
  color: var(--text-light);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.2s,
    background-color 0.2s;
}

.btn-download:hover {
  background-color: var(--accent-green-hover);
  transform: translateY(-2px);
}

/* App Grid Section */
.app-section {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
  text-align: center;
  color: var(--primary-blue);
  margin-bottom: 30px;
  font-size: 2rem;
}

.section-subtitle {
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
  gap: 20px;
}

.home-app-grid {
  grid-template-columns: 1fr; /* 1 column specifically for Home on desktop */
}

.app-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px; /* Increased padding slightly */
  display: flex;
  align-items: center; /* Vertically align items */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Softer shadow */
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05); /* Subtle border */
}

.app-index {
  background-color: var(--primary-blue);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: bold;
}

.app-icon {
  width: 60px; /* Fixed size */
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  margin-left: 25px; /* Space for index */
  margin-right: 15px;
  background-color: #ddd; /* Placeholder color */
}

.app-details {
  flex: 1;
}

.app-title {
  color: var(--primary-blue);
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.2;
}

.app-meta {
  font-size: 0.85rem;
  color: #666;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.app-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.bonus-box {
  width: fit-content;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
  display: inline-block;
  margin-top: 4px;
}

.card-btn {
  background-color: var(--accent-green);
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  white-space: nowrap;
  margin-left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-btn .down-arrow {
  font-size: 0.9rem;
  color: #ffffff;
}

/* Star Rating */
.rating {
  position: absolute;
  bottom: 10px;
  right: 15px;
  color: #ffc107;
  font-size: 0.75rem;
}

/* Footer */
footer {
  background: radial-gradient(
    circle at center,
    #570d0d 0%,
    #540303 40%,
    #3a0000 70%,
    #000 100%
  );
  color: white;
  padding: 40px 0 20px;
  margin-top: 50px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-title {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
  display: inline-block;
}

.footer-links li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ffc107;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.3);
  display: none; /* Hidden by default */
  z-index: 1000;
}

/* content-section */
.content-section {
  padding: 30px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.content-block {
  background: var(--card-bg);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

.content-block h2 {
  color: var(--primary-blue);
  font-size: 1.8rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.content-block h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
}

.content-block p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.7;
}

.content-block ul,
.content-block ol {
  margin-bottom: 15px;
  padding-left: 20px;
  color: #555;
}

.content-block li {
  margin-bottom: 8px;
}

.content-block .content-figure {
  margin: 30px 0;
  text-align: center;
}

.content-block .content-figure img {
  max-width: min(100%, 600px);
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.content-block .content-caption {
  font-size: 0.9rem;
  color: #777;
  margin-top: 8px;
}
.highlight-box {
  background-color: #e8faf6;
  padding: 15px;
  border-left: 4px solid var(--primary-blue);
  border-radius: 4px;
  margin: 15px 0;
}

/* Screenshot Slider */
.screenshot-slider {
  position: relative;
  max-width: 700px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  padding: 0;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(28, 26, 126, 0.85);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.slider-arrow:hover {
  background: var(--primary-blue);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 15px;
}

.slider-next {
  right: 15px;
}

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

/* Notice Section */


.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.dot.active {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: scale(1.2);
}

/* Responsive Slider */
@media (max-width: 768px) {
  .screenshot-slider {
    max-width: 100%;
    margin: 20px 0;
    border-radius: 8px;
  }
  
  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  
  .slider-prev {
    left: 10px;
  }
  
  .slider-next {
    right: 10px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .slider-dots {
    bottom: 10px;
  }
}

/* FAQ Section */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question h3,
.faq-question {
  font-weight: 600;
  color: var(--primary-blue);
}

.faq-question {
  margin-bottom: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.faq-question h3 {
  flex: 1;
  /* reset default heading margins to avoid extra spacing inside faq question */
  margin: 0 10px 0 0;
}

/* .faq-question:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  transform: translateX(5px);
} */

.faq-question i {
  font-size: 14px;
  color: var(--primary-orange);
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  color: #666;
  padding: 12px 15px;
  line-height: 1.6;
  display: none;
  animation: fadeIn 0.3s ease;
}

.faq-answer.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reviews Section */
.review-section {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 0;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.review-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-orange)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.review-info h4 {
  margin: 0 0 5px 0;
  color: var(--primary-blue);
  font-size: 16px;
}

.review-rating {
  color: #ffc107;
  font-size: 0.875rem;
}

.review-rating i {
  margin-right: 2px;
}

.review-text {
  color: #666;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 5px;
  margin-left: 10rem;
  align-items: center;
  justify-content: center;
}

/* Support for legacy three-bar markup */
.mobile-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Icon-based toggle (Font Awesome) */
.mobile-toggle i {
  font-size: 1.4rem;
  color: white;
  transition:
    transform 0.25s ease,
    color 0.2s ease;
  line-height: 1;
}

/* When active, style the icon (rotated / color change) */
.mobile-toggle.active i {
  transform: rotate(90deg);
  color: #ffd700;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
    z-index: 1001; /* Above mobile menu */
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    height: 100vh;
    width: 70%;
    background: radial-gradient(
    circle at center,
    #570d0d 0%,
    #540303 40%,
    #3a0000 70%,
    #000 100%
  );
  color: white;
    flex-direction: column;
    padding-top: 80px;
    padding-left: 20px;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0; /* Slide in */
  }

  .nav-links a {
    font-size: 0.99rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
  }

  /* Animation for hamburger to X */
  .mobile-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .btn-download p:first-of-type {
    display: none;
  }

  .app-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 15px;
  }

  .app-card {
    display: flex;
    flex-direction: column; /* Stack vertically */
    padding: 15px;
    gap: 15px;
    align-items: center;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
    text-align: center; /* Center text */
  }

  .app-index {
    background-color: var(--primary-blue);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: bold;
  }

  .app-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    margin: 0;
    flex-shrink: 0;
    object-fit: cover;
  }

  .rating {
    display: none;
  }

  .app-details {
    flex: 1;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
    align-items: center;
  }

  .app-title {
    font-size: 1.1rem;
    margin-bottom: 0;
    white-space: normal; /* Allow wrap in vertical view */
    color: #1a237e;
    font-weight: 800;
  }

  .app-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.85rem;
    align-items: center;
  }

  .app-meta span {
    color: #757575;
    justify-content: center;
  }

  .app-meta span.bonus-box {
    background-color: #e0f2f1;
    color: #00695c;
    padding: 4px 10px;
    border-radius: 6px;
    width: fit-content;
    margin-top: 2px;
    font-weight: 700;
    font-size: 0.85rem;
  }

  .card-btn {
    width: 100%; /* Full width button looks good in vertical cards */
    margin: 0;
    padding: 10px 0;
    font-size: 1rem;
    border-radius: 50px;
    background-color: #4caf50;
    color: white;
    font-weight: bold;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 4px 6px rgba(76, 175, 80, 0.3);
  }

  .single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  /* .app-index {
    display: none;
  } */

  .content-block h2 {
    font-size: 1.5rem;
  }

  .single-post-content .single-figure {
    margin: 20px 0;
    padding: 15px;
  }

  .single-post-content .single-figure img {
    max-width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }
}

/* Tablet Responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
  .container {
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .app-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    gap: 18px;
  }

  .home-app-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for home on tablet */
  }

  .single-post-content {
    padding: 0 15px;
  }

  .single-post-content img {
    max-width: 80%;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Laptop Screens */
@media (max-width: 1366px) and (min-width: 1025px) {
  .single-post-content .single-figure img {
    max-width: 55%;
  }

  .single-post-content .single-figure {
    margin: 25px 0;
    padding: 18px;
  }

  .content-block img{
    max-width: 50%;
  }
}

/* Small Tablet and Large Mobile */
@media (max-width: 640px) {
  .container {
    padding: 0 10px;
  }

  .hero {
    padding: 20px 0;
  }

  .hero-block {
    padding: 20px;
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-download {
    padding: 10px 25px;
    font-size: 1rem;
  }

  .single-post-hero {
    padding: 30px 15px;
  }

  .single-app-icon {
    width: 100px;
    height: 100px;
  }

  .single-post-content {
    margin: 30px auto;
    padding: 0 15px;
  }

  .single-figure img {
    max-width: 60%;
  }

  .single-post-content .single-figure {
    margin: 15px 0;
    padding: 12px;
  }

  .single-post-content .single-figure figcaption {
    font-size: 0.8rem;
  }

  .content-block {
    padding: 20px;
  }

  .content-block h2 {
    font-size: 1.4rem;
  }

  .info-table td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .toc {
    padding: 15px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .review-card {
    padding: 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-title {
    font-size: 1.1rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 8px;
  }

  .nav-wrapper {
    padding: 0 10px;
  }

  .logo img {
    height: 35px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .hero-block {
    padding: 15px;
  }

  .hero h1 {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .btn-download {
    padding: 8px 20px;
    font-size: 0.95rem;
  }

  .single-post-hero {
    padding: 20px 10px;
  }

  .single-app-icon {
    width: 80px;
    height: 80px;
  }

  .single-post-content {
    margin: 20px auto;
    padding: 0 10px;
  }

  .single-post-content .single-figure {
    margin: 15px 0;
    padding: 10px;
  }

  .single-post-content .single-figure img {
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }

  .single-post-content .single-figure figcaption {
    font-size: 0.8rem;
    margin-top: 8px;
  }

  .content-block {
    padding: 15px;
  }

  .content-block h2 {
    font-size: 1.2rem;
  }

  .app-card {
    padding: 12px;
    gap: 12px;
  }

  .app-icon {
    width: 60px;
    height: 60px;
  }

  .app-title {
    font-size: 1rem;
  }

  .card-btn {
    padding: 8px 0;
    font-size: 0.9rem;
  }

  .footer-content {
    padding: 20px 0 10px;
  }

  .footer-title {
    font-size: 1rem;
  }

  .footer-links li {
    margin-bottom: 8px;
  }
}

/* App Description */
.app-desc {
  font-size: 0.85rem;
  color: #444;
  margin: 4px 0 8px;
  font-weight: 500;
}

/* Specific styles for single post */
.single-post-hero {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.single-app-icon {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.single-post-content {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.info-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}
.info-table tr:last-child td {
  border-bottom: none;
}
.info-table td:first-child {
  font-weight: bold;
  color: var(--primary-blue);
  width: 40%;
  background: #f9f9f9;
}
.toc {
  background: #f0f7ff;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 30px;
  border: 1px solid #d0e3ff;
}
.toc h3 {
  margin-top: 0;
  margin-bottom: 15px;
  border-bottom: 2px solid #040082;
  width: 100%;
  color: var(--primary-blue);
}
.toc ul {
  padding-left: 20px;
  margin-bottom: 0;
}
.toc li {
  margin-bottom: 5px;
}
.toc a {
  color: #040082;
  text-decoration: none;
}
.toc a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

/* Spacing for Article Headings */
.single-post-content h2,
.single-post-content h3 {
  margin-bottom: 20px;
}
.single-post-content h2 {
  margin-top: 30px;
}

/* Article List Styling */
.single-post-content ul,
.single-post-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}
.single-post-content li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #444;
}

.single-post-content .single-figure {
  margin: 30px 0;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.single-post-content .single-figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--primary-orange)
  );
}
.single-post-content .single-figure img {
  max-width: min(100%, 600px);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: block;
  margin: 0 auto;
}

.single-post-content .single-figure figcaption {
  font-size: 0.9rem;
  color: #666;
  margin-top: 12px;
  font-style: italic;
  text-align: center;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.single-post-content figcaption {
  font-size: 0.9rem;
  color: #777;
  margin-top: 8px;
}

/* End of CSS */
