/*
Theme Name: Gowtham Gaming
Theme URI: https://gowthamgaming.com
Author: Gowtham
Author URI: https://gowthamgaming.com
Description: Premium editorial and mod repository for Euro Truck Simulator 2 and Bus Simulator Indonesia.
Version: 1.0.0
Text Domain: gowtham-gaming
Tags: gaming, blog, dark-mode, simulation, bussid, ets2
*/

/* RESPONSIVE STYLES */
@media (min-width: 1920px) {
  .container {
    max-width: 1400px;
  }
}
@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
  .desktop-nav .primary-menu-list {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .site-header .desktop-nav {
    display: none;
  }
  .site-header .menu-trigger {
    display: flex;
  }
  .hero-section .hero-container {
    height: 400px;
  }
  .hero-section .hero-slider-item {
    padding: 32px;
  }
  .hero-section .hero-slider-item .hero-title {
    font-size: 2.25rem;
  }
  .hero-section .hero-slider-item .hero-desc {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .hero-section .hero-container {
    height: 350px;
  }
  .hero-section .hero-slider-item {
    padding: 24px;
  }
  .hero-section .hero-slider-item .hero-badge {
    margin-bottom: 12px;
    font-size: 0.7rem;
  }
  .hero-section .hero-slider-item .hero-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
  }
  .hero-section .hero-slider-item .hero-desc {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  .hero-section .hero-slider-item .hero-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}
@media (max-width: 640px) {
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-section {
    padding-top: 20px;
  }
  .hero-section .hero-container {
    height: 300px;
  }
  .hero-section .hero-slider-item {
    padding: 20px;
  }
  .hero-section .hero-slider-item .hero-title {
    font-size: 1.5rem;
  }
  .hero-section .hero-slider-item .hero-desc {
    display: none;
  }
  .category-tabs-container {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 12px;
  }
  .category-tabs-container::-webkit-scrollbar {
    height: 4px;
  }
  .category-tabs-container .tab-btn {
    padding: 6px 14px;
    font-size: 0.7rem;
  }
}
@media (max-width: 360px) {
  .logo {
    font-size: 1.25rem;
  }
  .site-header {
    height: 70px;
  }
}

/*# sourceMappingURL=responsive.css.map */


/* body padding-top removed — each page container (#home-view, #detail-view) handles
   its own header offset via padding-top in style.css */


/* --- Widget Styling Moved to style.css --- */

/* --- Pagination Button Styling --- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 40px;
}
.pagination .page-numbers {
  padding: 10px 16px;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #a1a1aa;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}
.pagination .page-numbers:hover {
  background-color: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
}
.pagination .page-numbers.current {
  background-color: #FFD700;
  color: #000000;
  border-color: #FFD700;
}
