:root {
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-100: #dbeafe;
  --gray-100: #f3f4f6;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --white: #ffffff;
  --duration-short: 200ms;
  --duration-medium: 300ms;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background-color: var(--gray-100);
  color: var(--gray-700);
}

button,
a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
}

.container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background-color: var(--white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-left > *:not(:last-child) {
  margin-right: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-link > *:not(:last-child) {
  margin-right: 0.5rem;
}

.logo-icon {
  height: 2.5rem;
  width: 2.5rem;
  color: var(--blue-600);
}

.logo-text-wrapper {
  display: none;
}

@media (min-width: 640px) {
  .logo-text-wrapper {
    display: block;
  }
}

.logo-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-800);
  letter-spacing: -0.025em;
}

.logo-subtitle {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.05em;
}

.header-center {
  display: none;
  flex-grow: 1;
  justify-content: center;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 1024px) {
  .header-center {
    display: flex;
  }
}

.search-form {
  position: relative;
  width: 100%;
  max-width: 24rem;
}

.search-input {
  width: 100%;
  padding: 0.625rem 3rem 0.625rem 1rem;
  color: var(--gray-700);
  background-color: var(--gray-100);
  border: 1px solid transparent;
  border-radius: 0.5rem;
  transition: box-shadow var(--duration-short);
}

.search-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--blue-600);
}

.search-submit-btn {
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  height: 2.25rem;
  width: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-600);
  color: var(--white);
  border-radius: 0.5rem;
  transition: background-color var(--duration-short);
}

.search-submit-btn:hover {
  background-color: var(--blue-700);
}

.search-submit-btn .icon {
  height: 1.25rem;
  width: 1.25rem;
}

.site-nav {
  display: none;
  align-items: center;
}

.site-nav > *:not(:last-child) {
  margin-right: 1.5rem;
}

@media (min-width: 1024px) {
  .site-nav {
    display: flex;
  }
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: color var(--duration-short);
  color: var(--gray-600);
  gap: 5px;
}

.nav-link > *:not(:last-child) {
  margin-right: 0.75rem;
}

.nav-link:hover {
  color: var(--blue-600);
}

.nav-link.is-active {
  color: var(--blue-600);
}

.nav-link .icon {
  height: 1.5rem;
  width: 1.5rem;
}

.mobile-menu-toggle,
.mobile-spacer {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle,
  .mobile-spacer {
    display: none;
  }
}

.mobile-menu-toggle {
  padding: 0.5rem;
  border-radius: 0.375rem;
  color: var(--gray-600);
  transition: color var(--duration-short),
    background-color var(--duration-short);
}

.mobile-menu-toggle:hover {
  background-color: var(--gray-100);
  color: var(--gray-800);
}

.mobile-menu-toggle .icon {
  height: 1.75rem;
  width: 1.75rem;
}

.mobile-spacer {
  width: 2.5rem;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-medium) ease-in-out;
}

.sidebar-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 20rem;
  max-width: 85vw;
  background-color: var(--white);
  z-index: 50;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateX(-100%);
  transition: transform var(--duration-medium) ease-in-out;
}

.mobile-sidebar.is-open {
  transform: translateX(0);
}

.sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.sidebar-close-btn {
  padding: 0.5rem;
  border-radius: 9999px;
  color: var(--white);
  background-color: var(--blue-600);
  transition: background-color var(--duration-short);
}

.sidebar-close-btn:hover {
  background-color: var(--blue-700);
}

.sidebar-close-btn .icon {
  height: 1.5rem;
  width: 1.5rem;
}

.sidebar-content {
  padding: 1.5rem;
}

.sidebar-content > *:not(:last-child) {
  margin-bottom: 1.5rem;
}

.mobile-search-form .search-submit-btn {
  background: none;
  color: var(--gray-500);
  right: 0.75rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav > *:not(:last-child) {
  margin-bottom: 0.5rem;
}

.mobile-nav .nav-link {
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-700);
}

.mobile-nav .nav-link:hover {
  background-color: var(--gray-100);
  color: var(--gray-700);
}

.mobile-nav .nav-link.is-active {
  background-color: var(--blue-100);
  color: var(--blue-700);
}

.mainlist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.625rem, 1fr));
  gap: 16px;
  width: 100%;
}

.mainlist .banner {
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-grid-column-span: 3;
  grid-column: span 3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 3;
  grid-row: 2 / 5;
}

.mainlist a {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  justify-self: center;
}

.mainlist a:hover {
  transform: translateY(-2px);
}

.mainlist .thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.mainlist .onhover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-weight: 500;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  word-wrap: break-word;
}

.mainlist a:hover .onhover {
  opacity: 1;
}

@media (max-width: 768px) {
  .mainlist {
    grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
    gap: 6px;
  }

  .mainlist a {
    width: 85px;
    height: 85px;
  }

  .mainlist .onhover {
    padding: 8px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .mainlist .onhover {
    font-size: 11px;
  }
}

.pagination-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin: 12px 0 0 0;
  font-size: 14px;
  color: var(--gray-700);
  background: var(--gray-100);
  border-radius: 8px;
  line-height: 1.5;
}

.pagination-text b {
  color: var(--blue-700);
  font-weight: 600;
}

.pagination-text > div {
  padding: 4px 8px;
  background: var(--white);
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

@media (min-width: 768px) {
  .pagination-text {
    font-size: 15px;
    gap: 16px;
  }
  .pagination-text > div {
    padding: 6px 12px;
    border-radius: 8px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  margin: 0;
  background: transparent;
  border-radius: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.pagination::-webkit-scrollbar {
  height: 8px;
}
.pagination::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 1;
  color: var(--gray-800);
  text-decoration: none;
  background: var(--white);
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
  border-radius: 10px;
  transition: transform var(--duration-short) ease,
    box-shadow var(--duration-short) ease, background var(--duration-short) ease;
  -webkit-tap-highlight-color: transparent;
}

.pagination a:not(.disabled):hover,
.pagination a:not(.disabled):focus {
  transform: translateY(-2px);
  background: var(--blue-100);
  color: var(--blue-700);
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  outline: none;
}

.pagination a.disabled {
  pointer-events: none;
  background: linear-gradient(180deg, var(--blue-600), var(--blue-700));
  color: var(--white);
  border: none;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.18);
  transform: none;
}

.pagination a svg {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  pointer-events: none;
  fill: currentColor;
}

.pagination a.compact {
  min-width: 36px;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 13px;
}

.pagination a:focus-visible {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
  outline: none;
}

@media (min-width: 768px) {
  .pagination {
    justify-content: center;
    gap: 10px;
    padding: 10px;
  }
  .pagination a {
    min-width: 48px;
    padding: 8px 12px;
    font-size: 15px;
    border-radius: 12px;
  }
}

@media (min-width: 1200px) {
  .pagination a {
    font-size: 16px;
    min-width: 52px;
    padding: 8px 14px;
  }
}

:root {
  --font-base: "Inter", system-ui, -apple-system, sans-serif;
  --color-bg: #fafafa;
  --color-card-bg: #fff;
  --color-primary: #0066ff;
  --color-primary-dk: #004fcc;
  --color-text: #222;
  --color-muted: #777;
  --radius: 8px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition: 0.25s ease;
}

.carousel {
  position: relative;
  overflow-x: visible;
  overflow-y: hidden;
}

.carousel .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 2;
  transition: var(--transition);
}
.carousel .arrow:hover {
  background: var(--color-primary);
  color: #fff;
}
.carousel .arrow.left {
  left: 0.5rem;
}
.carousel .arrow.right {
  right: 0.5rem;
}

@media (pointer: coarse) {
  .carousel .arrow {
    width: 3rem;
    height: 3rem;
    font-size: 1.8rem;
  }
}

.carousel .cards {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
}

.carousel .cards::-webkit-scrollbar {
  height: 0px;
}
.carousel .cards::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.card {
  flex: 0 0 80px;
  height: 80px;
  scroll-snap-align: start;
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.card img.thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card .onhover {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover .onhover {
  opacity: 1;
}

.categoryHeading {
  display: flex;
  align-items: center;
  margin-top: 1em;
  gap: 10px;
}

.categoryHeading h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}
.categoryHeading a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--blue-600);
}

.content {
  margin-block: 1em;
}

.nofav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.nofav ol {
  margin: auto;
  padding-left: 1em;
  list-style-position: inside;
}

.nofav ol li {
  margin-bottom: 0.5em;
}

.m {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}

.rate {
  float: left;
  height: 46px;
  text-align: left;
}

.rate:not(:checked) > input {
  position: absolute;
  display: none;
}

.rate:not(:checked) > label {
  float: right;
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 40px;
  color: #ccc;
}

.rate:not(:checked) > label:before {
  content: "\2605";
}

.rate > input:checked ~ label,
.rate input[checked="checked"] ~ label {
  color: #ffc700;
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
  color: #deb217;
}

.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
  color: #c59b08;
}

.overall-rating {
  width: 100%;
  text-align: center;
  font-size: 14px;
  margin-top: 5px;
  color: #afacac;
}

.isflex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.favorites_btn,
.fullscreenBtn,
.alert-danger,
.alert-success {
  border: 0px;
  padding: 10px;
  margin: 0px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px !important;
  min-width: 140px;
  border-radius: 5px;
}

.fullscreenBtn {
  background-color: #5700b3;
  cursor: pointer;
  gap: 10px;
}

.favorites_btn {
  background-color: #0056b3;
  cursor: pointer;
  gap: 10px;
}

.favorites_btn:hover,
.fullscreenBtn:hover {
  background-color: lightgreen;
  color: #000;
  cursor: pointer;
}

.alert-danger {
  background-color: #e1306c;
}

.alert-success {
  background-color: #00bf6f;
}

.share-btn {
  padding: 8px 0px;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 120px;
  text-align: center;
}

.share-btn:hover {
  background-color: lightgreen;
  color: #000;
}

.share-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.facebook {
  background-color: #3b5998;
}

.whatsapp {
  background-color: #25d366;
}

.twitter {
  background-color: #1da1f2;
}

.copy-btn {
  min-width: 120px;
  background-color: #ff5722;
  cursor: pointer;
  border: none;
  outline: none;
}

.socialfav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin: 5px;
  flex-direction: column;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

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

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-container img {
  width: 100%;
  height: auto;
  filter: blur(10px);
}

.play-button {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #ff0000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  animation: pulse 1.5s infinite;
  border: 3px solid rgba(0, 0, 0, 0.2);
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid white;
  margin-left: 5px;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

footer {
  background-color: #fafafb;
  color: #00112c;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 40px 0 20px;
  margin-top: 2em;
}

.footer_main .navcontainer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer_info {
  flex: 1 1 300px;
  line-height: 1.6;
  font-size: 1rem;
}

.footer_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 1 1 300px;
  justify-content: flex-end;
}

.social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #333;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.social_link:hover {
  transform: translateY(-2px);
  background-color: #555;
}

.social_link.twitter:hover {
  background-color: #1da1f2;
}
.social_link.facebook:hover {
  background-color: #1877f2;
}
.social_link.instagram:hover {
  background-color: #e1306c;
}
.social_link.youtube:hover {
  background-color: #ff0000;
}

.footer_links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer_links a {
  color: #222;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer_links a:hover {
  color: #000;
}

.copyrights {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #dadbde;
  text-align: center;
  font-size: 0.875rem;
  color: #222;
}

.copyrights .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .footer_main .navcontainer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer_nav {
    justify-content: center;
    width: 100%;
  }

  .social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 30px 0 15px;
  }

  .footer_info,
  .footer_nav {
    flex-basis: 100%;
  }
}

.big {
  font-size: 1.5em;
  margin-bottom: 10px;
}

#goToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  aspect-ratio: 1/1;
  cursor: pointer;
  font-size: 16px;
  width: 35px;
  border: 0;
  background-color: var(--blue-600);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
}

#goToTopBtn:hover {
  background-color: #222;
}

.view {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2em;
}

.viewone {
  width: 250px;
}

.viewtwo {
  flex: 1;
}

.viewthree {
  width: 300px;
}

.social-share {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.playfav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-block: 1em;
  background-color: rgba(163, 188, 232, 0.18);
  padding: 10px;
  border-radius: 10px;
}

.mainView {
  margin: 20px 0;
  padding: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.mainView .category {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #2563eb;
  text-decoration: none;
  margin-bottom: 12px;
}

.mainView .category:hover {
  text-decoration: underline;
}

.mainView .description,
.mainView .instructions,
.mainView .information {
  margin: 12px 0;
  padding: 12px;
  background: #f9fafb;
  border-left: 4px solid #2563eb;
  border-radius: 4px;
  font-size: 0.95rem;
}

.mainView .description span,
.mainView .instructions span {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  margin-right: 6px;
  color: #111827;
}

.mainView svg {
  margin-left: 4px;
  color: #2563eb;
}

.mainView .tags {
  margin-top: 12px;
}

.mainView .tags a {
  display: inline-block;
  margin: 4px 6px 0 0;
  padding: 6px 10px;
  font-size: 0.85rem;
  background: #f3f4f6;
  color: #2563eb;
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.2s;
}

.mainView .tags a:hover {
  background: #e0e7ff;
}

@media (max-width: 600px) {
  .mainView {
    padding: 12px;
    font-size: 0.9rem;
  }

  .mainView .category {
    font-size: 1rem;
  }
}

.page_content h1,
.page_content h2 {
  margin-top: 25px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page_content h2 {
  font-size: 22px;
}

.page_content .h2 {
  font-size: 28px;
  border-bottom: 2px #828282;
  padding-bottom: 10px;
  border-left: none;
}

.page_content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.page_content ul,
.page_content ol {
  padding-left: 10px;
  margin-bottom: 20px;
  list-style: none;
}

.page_content ul li {
  font-size: 16px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.is7030 {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 10px;
  margin-block: 1em;
}
.is3070 {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 10px;
  place-items: center;
}

.blog_list {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1em;
  align-items: center;
  background-color: rgba(220, 217, 217, 0.3);
  padding: 1em;
  border-radius: 10px;
}

.blog_list img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  min-width: 300px;
  max-width: 300px;
}

.blog_list h2 {
  margin: 0px;
  padding: 0px;
}

@media (max-width: 768px) {
  .is7030,
  .is3070 {
    grid-template-columns: 100%;
  }

  .blog_list img {
    width: 100%;

    aspect-ratio: 16/9;
    object-fit: cover;
    min-width: 100%;
    max-width: 100%;
  }

  .blog_list {
    flex-wrap: wrap;
    margin: 5px;
  }
  .view {
    flex-direction: column;
  }

  .viewone,
  .viewtwo,
  .viewthree {
    width: 100%;
  }
}

.sticky-box {
  position: sticky;
  top: 0;
  padding: 15px;
  background: #fff;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 15px;
}

.section-title.mt {
  margin-top: 30px;
}

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

.grid-item {
  display: block;
}

.post-list {
  display: block;
  text-decoration: none;
  color: inherit;
}

.flex-list {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.flex-list:hover {
  background: #f5f5f5;
}

.thumb img,
.flex-list img {
  border-radius: 6px;
  display: block;
}

.title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  flex: 1;
}

.rounded {
  border-radius: 6px;
}

.imflex {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.flex2 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.favbox {
  position: relative;
  text-align: center;
  color: white;
}

.top-right {
  position: absolute;
  top: 8px;
  right: 16px;
}

.favdelete {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: red;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
}
