@charset "utf-8";
:root {
  --primary: #1a1a2e;
  --accent: #e94560;
  --secondary: #0f3460;
  --tertiary: #f39c12;
  --bg-dark: #16213e;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --text-light: #adb5bd;
  --border-color: #dee2e6;
  --shadow: 5px 5px 0 var(--accent);
  --shadow-sm: 3px 3px 0 var(--secondary);
  --radius: 0;
}

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

html, body {
  background: var(--bg-light);
  font-family: -apple-system, 'Microsoft YaHei', sans-serif;
  color: var(--text-dark);
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, li {
  list-style: none;
}

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

/* ========== Header Navigation ========== */
.header-navigation {
  background: var(--bg-dark);
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 4px solid var(--accent);
}

.header-navigation nav {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo img {
  height: 50px;
  border: 3px solid var(--accent);
}

#starlist {
  display: flex;
  flex: 1;
  gap: 0;
}

#starlist > li {
  position: relative;
}

#starlist > li > a {
  display: block;
  padding: 20px 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#starlist > li:hover > a,
#starlist > li.selected > a {
  color: var(--accent);
}

.sub-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-dark);
  min-width: 180px;
  border: 3px solid var(--accent);
  border-top: none;
  z-index: 100;
}

#starlist > li:hover .sub-nav {
  display: block;
}

.sub-nav li a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sub-nav li a:hover {
  background: var(--accent);
  color: #fff;
}

.fademask {
  display: none;
}

#mnavh {
  display: none;
}

.mobile-menu {
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.searchbox {
  position: relative;
}

.b-nav-search_wrap {
  display: flex;
  border: 3px solid var(--accent);
}

.b-nav-search_input {
  width: 200px;
  padding: 10px 15px;
  border: none;
  background: var(--bg-white);
  font-size: 14px;
}

.b-nav-search_wrap button {
  padding: 10px 15px;
  background: var(--accent);
  border: none;
  color: #fff;
  cursor: pointer;
}

/* ========== Main Wrapper ========== */
.main-wrapper {
  min-height: calc(100vh - 200px);
}

/* ========== Hero Full Section ========== */
.hero-fullsection {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.slide-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s;
}

.slide-item.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.8) 0%, rgba(233,69,96,0.5) 100%);
}

.slide-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  color: #fff;
}

.slide-cat {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.slide-content h2 {
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.slide-nav {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  gap: 10px;
}

.slide-prev,
.slide-next {
  width: 50px;
  height: 50px;
  background: var(--bg-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  border: 3px solid var(--accent);
  transition: all 0.2s;
}

.slide-prev:hover,
.slide-next:hover {
  background: var(--accent);
}

/* ========== Breaking News ========== */
.breaking-news {
  background: var(--accent);
  padding: 12px 0;
}

.breaking-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.breaking-label {
  flex: 0 0 60px;
  background: var(--bg-dark);
  color: #fff;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}

.breaking-scroll {
  flex: 1;
  overflow: hidden;
}

.breaking-scroll a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-right: 40px;
  white-space: nowrap;
}

.breaking-scroll a:hover {
  text-decoration: underline;
}

/* ========== Counter Section ========== */
.counter-section {
  background: var(--bg-white);
  padding: 40px 0;
  border-bottom: 4px solid var(--border-color);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.counter-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-light);
  border: 4px solid var(--primary);
  position: relative;
}

.counter-item::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 20%;
  right: 20%;
  height: 4px;
  background: var(--accent);
}

.counter-num {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
}

.counter-text {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* ========== Section Header ========== */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 4px solid var(--primary);
}

.section-header h2 {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
}

.more-link {
  padding: 10px 24px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid var(--primary);
}

.more-link:hover {
  background: var(--primary);
}

/* ========== Magazine Section ========== */
.magazine-section {
  padding: 60px 0;
}

.magazine-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 24px;
}

.magazine-hero {
  display: block;
  height: 420px;
  background-size: cover;
  background-position: center;
  border: 5px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.magazine-hero:hover {
  box-shadow: var(--shadow);
}

.magazine-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: #fff;
}

.magazine-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.magazine-hero-content h3 {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.magazine-hero-content p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 16px;
}

.magazine-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  opacity: 0.8;
}

.magazine-small {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.magazine-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--bg-white);
  border: 4px solid var(--primary);
  transition: all 0.2s;
}

.magazine-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-sm);
}

.magazine-card-img {
  flex: 0 0 120px;
  height: 90px;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--primary);
}

.magazine-card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.magazine-card-cat {
  font-size: 11px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.magazine-card-info h4 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 8px;
}

.magazine-card-info h4 a:hover {
  color: var(--accent);
}

.magazine-card-date {
  font-size: 12px;
  color: var(--text-light);
}

/* ========== Timeline Section ========== */
.timeline-section {
  padding: 60px 0;
  background: var(--bg-white);
}

.timeline-wrapper {
  position: relative;
  padding-left: 40px;
}

.timeline-line {
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -4px;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border: 4px solid var(--primary);
}

.timeline-content {
  background: var(--bg-light);
  padding: 24px;
  border: 4px solid var(--primary);
}

.timeline-date {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ========== Category Scroll Section ========== */
.category-scrollsection {
  padding: 60px 0;
}

.category-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-scrollitem {
  border: 5px solid var(--primary);
  overflow: hidden;
}

.category-scrollthumb {
  display: block;
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-dark);
  position: relative;
}

.category-scrolloverlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.category-scrollthumb:hover .category-scrolloverlay {
  background: rgba(233,69,96,0.8);
}

.category-scrollname {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.category-scrollcount {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}

/* ========== Alternating Section ========== */
.alternating-section {
  padding: 60px 0;
  background: var(--bg-white);
}

.alt-item {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  margin-bottom: 30px;
  padding: 30px;
  background: var(--bg-light);
  border: 5px solid var(--primary);
}

.alt-item:nth-child(even) {
  direction: rtl;
}

.alt-item:nth-child(even) > * {
  direction: ltr;
}

.alt-thumb {
  display: block;
  height: 250px;
  background-size: cover;
  background-position: center;
  border: 4px solid var(--primary);
}

.alt-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.alt-cat {
  display: inline-block;
  padding: 6px 16px;
  background: var(--secondary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  width: fit-content;
}

.alt-content h3 {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.3;
}

.alt-content h3 a:hover {
  color: var(--accent);
}

.alt-content p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.alt-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.alt-readmore {
  display: inline-block;
  padding: 12px 30px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid var(--primary);
  width: fit-content;
}

.alt-readmore:hover {
  background: var(--primary);
}

/* ========== Gallery Grid Section ========== */
.gallery-gridsection {
  padding: 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border: 5px solid var(--primary);
  overflow: hidden;
}

.gallery-thumb {
  display: block;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.gallery-mask {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-thumb:hover .gallery-mask {
  opacity: 1;
}

.gallery-zoom {
  font-size: 40px;
  margin-bottom: 12px;
}

.gallery-title {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  padding: 0 20px;
}

/* ========== Video Section ========== */
.video-cardsection {
  padding: 60px 0;
  background: var(--bg-white);
}

.video-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.video-item {
  background: var(--bg-light);
  border: 5px solid var(--primary);
  overflow: hidden;
}

.video-thumb {
  display: block;
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-playbtn {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.3s;
}

.video-thumb:hover .video-playbtn {
  transform: scale(1.15);
}

.video-time {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
}

.video-info {
  padding: 16px;
}

.video-info h3 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.3;
}

.video-info h3 a:hover {
  color: var(--accent);
}

.video-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-light);
}

/* ========== Product Section ========== */
.product-section {
  padding: 60px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-white);
  border: 5px solid var(--primary);
  overflow: hidden;
  transition: all 0.2s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.product-img {
  display: block;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-bottom: 5px solid var(--primary);
}

.product-info {
  padding: 20px;
}

.product-cat {
  display: inline-block;
  padding: 4px 12px;
  background: var(--tertiary);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-info h3 {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-info h3 a:hover {
  color: var(--accent);
}

.product-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 2px dashed var(--border-color);
}

.product-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--accent);
}

.product-sales {
  font-size: 12px;
  color: var(--text-light);
}

/* ========== Two Column Section ========== */
.twocol-section {
  padding: 60px 0;
}

.twocol-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
}

.twocol-main {
  min-width: 0;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-item {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: var(--bg-white);
  border: 5px solid var(--primary);
  transition: all 0.2s;
}

.news-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
}

.news-thumb {
  flex: 0 0 280px;
  height: 200px;
  background-size: cover;
  background-position: center;
  border: 4px solid var(--primary);
}

.news-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-cat {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  width: fit-content;
}

.news-info h3 {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.3;
}

.news-info h3 a:hover {
  color: var(--accent);
}

.news-info p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
}

/* ========== List Section ========== */
.list-section {
  padding: 50px 0;
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.list-card {
  background: var(--bg-white);
  border: 5px solid var(--primary);
  overflow: hidden;
  transition: all 0.3s;
}

.list-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.list-thumb {
  display: block;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 5px solid var(--primary);
}

.list-thumb:hover {
  opacity: 0.9;
}

.list-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.list-content {
  padding: 24px;
}

.list-content h3 {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 12px;
}

.list-content h3 a:hover {
  color: var(--accent);
}

.list-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

.list-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 2px dashed var(--border-color);
}

.list-date {
  font-size: 13px;
  color: var(--text-light);
}

.list-views {
  font-size: 13px;
  color: var(--text-light);
}

.list-views i {
  font-style: normal;
}

/* ========== Page Header Extra ========== */
.page-desc {
  margin-top: 10px;
  font-size: 15px;
  color: var(--text-muted);
}

/* ========== Sidebar ========== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--bg-white);
  border: 5px solid var(--primary);
  padding: 20px;
}

.widget-title {
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 5px solid var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
}

.rank-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 2px dashed var(--border-color);
}

.rank-list li:last-child {
  border-bottom: none;
}

.rank-num {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.rank-list li:nth-child(1) .rank-num { background: var(--accent); }
.rank-list li:nth-child(2) .rank-num { background: var(--secondary); }
.rank-list li:nth-child(3) .rank-num { background: var(--tertiary); color: var(--primary); }

.rank-list a {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
}

.rank-list a:hover {
  color: var(--accent);
}

.recent-list li {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--border-color);
}

.recent-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.recent-thumb {
  flex: 0 0 70px;
  height: 70px;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--primary);
}

.recent-info {
  flex: 1;
  min-width: 0;
}

.recent-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  line-height: 1.3;
}

.recent-item:hover .recent-title {
  color: var(--accent);
}

.recent-date {
  font-size: 12px;
  color: var(--text-light);
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  padding: 8px 16px;
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 700;
  border: 3px solid var(--primary);
  text-transform: uppercase;
  transition: all 0.2s;
}

.tag-item:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ========== Tags Wall Section ========== */
.tagswall-section {
  padding: 60px 0;
  background: var(--bg-white);
}

.tags-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tag-wallitem {
  padding: 10px 24px;
  background: var(--bg-light);
  color: var(--text-dark);
  font-weight: 700;
  border: 3px solid var(--primary);
  text-transform: uppercase;
  transition: all 0.2s;
}

.tag-wallitem:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.1);
}

/* ========== Partner Section ========== */
.partner-section {
  padding: 60px 0;
}

.partner-carousel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background: var(--bg-white);
  border: 4px solid var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.2s;
}

.partner-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
  color: var(--accent);
}

/* ========== Subscribe Section ========== */
.subscribe-section {
  padding: 60px 0;
  background: var(--bg-dark);
}

.subscribe-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 50px;
  background: var(--bg-white);
  border: 5px solid var(--primary);
}

.subscribe-text h3 {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.subscribe-text p {
  font-size: 14px;
  color: var(--text-muted);
}

.subscribe-form {
  display: flex;
  flex: 0 0 400px;
}

.subscribe-form input {
  flex: 1;
  padding: 16px 20px;
  border: 4px solid var(--primary);
  border-right: none;
  font-size: 14px;
  font-family: inherit;
}

.subscribe-form button {
  padding: 16px 30px;
  background: var(--accent);
  color: #fff;
  border: 4px solid var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
}

.subscribe-form button:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ========== Pagination ========== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.page-item {
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--bg-white);
  border: 4px solid var(--primary);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
}

.page-item:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.page-current {
  padding: 0 18px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: #fff;
  font-weight: 800;
  border: 4px solid var(--secondary);
}

/* ========== Page Header ========== */
.page-header {
  background: var(--bg-white);
  border-bottom: 5px solid var(--accent);
  padding: 50px 0;
}

.breadcrumb {
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--accent);
}

.separator {
  margin: 0 10px;
  color: var(--text-light);
}

.page-title {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* ========== Article Header Meta ========== */
.article-header-meta {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.article-header-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ========== Article Section ========== */
.article-section {
  padding: 50px 0;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
}

.article-main {
  min-width: 0;
}

.article-cover {
  margin-bottom: 30px;
  border: 5px solid var(--primary);
  overflow: hidden;
}

.article-cover img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========== Article Main Styles ========== */
.article-body {
  background: var(--bg-white);
  border: 5px solid var(--primary);
  padding: 40px;
  font-size: 16px;
  line-height: 2;
  color: var(--text-dark);
}

.article-body p {
  margin-bottom: 24px;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border: 5px solid var(--primary);
  margin: 24px 0;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 32px 0 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.article-body ul,
.article-body ol {
  margin: 16px 0;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 8px;
  list-style: disc;
}

.article-footer {
  margin-top: 30px;
  padding: 24px;
  background: var(--bg-white);
  border: 5px solid var(--primary);
}

.article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.tags-label {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 8px;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px dashed var(--border-color);
  font-size: 14px;
  color: var(--text-muted);
}

.share-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  border: 3px solid var(--primary);
  font-size: 18px;
  transition: all 0.2s;
}

.share-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.article-prev,
.article-next {
  padding: 16px 20px;
  background: var(--bg-white);
  border: 4px solid var(--primary);
  font-size: 14px;
}

.article-prev:hover,
.article-next:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ========== Article Content ========== */
.article-content {
  background: var(--bg-white);
  border: 5px solid var(--primary);
  padding: 40px;
}

.article-body {
  font-size: 16px;
  line-height: 2;
  color: var(--text-dark);
}

.article-body p {
  margin-bottom: 24px;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border: 5px solid var(--primary);
  margin: 24px 0;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 32px 0 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.article-body ul,
.article-body ol {
  margin: 16px 0;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 8px;
  list-style: disc;
}

.article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 5px solid var(--border-color);
}

.tags-label {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ========== Footer ========== */
.footer {
  background: var(--bg-dark);
  color: #fff;
  border-top: 5px solid var(--accent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--accent);
  margin: 0 10px;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .magazine-grid {
    grid-template-columns: 1fr;
  }

  .category-scroll {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .twocol-layout {
    grid-template-columns: 1fr;
  }

  .alt-item {
    grid-template-columns: 1fr;
  }

  .alt-item:nth-child(even) {
    direction: ltr;
  }

  .news-thumb {
    flex: 0 0 200px;
    height: 150px;
  }

  .partner-carousel {
    grid-template-columns: repeat(3, 1fr);
  }

  .subscribe-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .subscribe-form {
    flex: 0 0 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header-navigation {
    padding: 0 15px;
  }

  #starlist {
    display: none;
  }

  #mnavh {
    display: block;
  }

  .searchbox {
    display: none;
  }

  .hero-fullsection {
    height: 350px;
  }

  .slide-content {
    left: 30px;
    bottom: 40px;
  }

  .slide-content h2 {
    font-size: 28px;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-scroll {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-row {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .news-item {
    flex-direction: column;
  }

  .news-thumb {
    flex: 0 0 100%;
    height: 200px;
  }

  .partner-carousel {
    grid-template-columns: repeat(2, 1fr);
  }

  .breaking-inner {
    flex-direction: column;
    gap: 10px;
  }

  .breaking-label {
    flex: 0 0 auto;
  }
}
