/* Font Definitions */
@font-face {
  font-family: 'Space Mono';
  src: url('/font/666083805164f009_SpaceMono-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Mono';
  src: url('/font/666083805164f00706747008_SpaceMono-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Header Navigation Bar Styles */
.navbar {
  background: var(--theme-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.5rem;
  min-height: 64px;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.logo {
  font-weight: bold;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 2px;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
  flex-shrink: 0;
  min-width: 120px;
  margin-right: 0;
}
.nav {
  /* display: flex;
  gap: 0.35rem;
  justify-content: flex-end;
  align-items: center;
  margin-right: 12px;
  flex-wrap: nowrap;
  min-width: 0; */
}
/* ensure nav links stay single-line without horizontal scroll */
.nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 0 !important;
  transition: background 0.18s, color 0.18s;
  padding: 0.25rem 0.2rem;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.nav a:hover {
  background: #fff;
  color: var(--theme-color);
}

/* Search Box Styles */
.search-container {
  flex: 1;
  max-width: 300px;
  margin: 0 15px;
  position: relative;
}

.search-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 6px 12px;
  transition: all 0.3s ease;
}

.search-form:focus-within {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 12px;
  padding: 6px 8px;
  outline: none;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.search-form:focus-within .search-input {
  color: #333;
}

.search-form:focus-within .search-input::placeholder {
  color: #999;
}

.search-btn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.search-form:focus-within .search-btn {
  color: var(--theme-color);
}

/* Mobile Search Box Styles */
.mobile-search-container {
  margin: 20px 0;
  padding: 0 20px;
}

.mobile-search-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 25px;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-search-input {
  flex: 1;
  border: none;
  background: transparent;
  color: #333;
  font-size: 18px;
  padding: 8px 12px;
  outline: none;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

.mobile-search-input::placeholder {
  color: #999;
}

.mobile-search-btn {
  background: var(--theme-color);
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-search-btn:hover {
  background: #e63946;
  transform: scale(1.1);
}
.back-btn {
  background: #fff;
  color: var(--theme-color);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  margin-left: 20px;
  transition: background 0.18s, color 0.18s;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.back-btn:hover {
  background: #ffeaea;
}

/* Homepage, Category, Product Card, Detail Page Styles */
body {
  background: #fff;
  margin: 0;
  font-size: 16px;
}
.hero {
  background: var(--theme-color);
  color: #fff;
  text-align: center;
  padding: 100px 0 40px 0;
}
.hero h1 {
  font-size: 5rem;
  margin: 0 0 20px 0;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
  font-weight: bold;
}
.hero .signup-btn {
  background: #fff;
  color: var(--theme-color);
  border: none;
  border-radius: 20px;
  padding: 8px 24px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.category-section {
  text-align: center;
  margin: 40px 0 20px 0;
}
.category-section h2 {
  color: var(--theme-color);
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
  font-weight: bold;
}
.category-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.category-btn {
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 18px 36px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  min-width: 180px;
  margin-bottom: 0;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.discount-title {
  color: var(--theme-color);
  font-size: 2rem;
  text-align: center;
  margin: 80px 0 20px 0;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
  font-weight: bold;
}
.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* gap: 30px; */
  /* max-width: 1200px; */
  margin: 0 auto;
}
.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  width: 220px;
  text-align: center;
  box-shadow: 0 2px 8px #eee;
  position: relative;
}
.product-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin-top: 20px;
}
.product-card .discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--theme-color);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.product-card .title {
  font-size: 1.1rem;
  margin: 18px 0 8px 0;
  color: #222;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.product-card .price {
  font-size: 2rem;
  color: var(--theme-color);
  font-weight: bold;
  margin: 0 0 10px 0;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.product-card .detail-btn {
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 24px;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 18px;
  cursor: pointer;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

/* Detail Page Styles */
.detail-main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: 120px auto 40px auto;
}
.detail-imgs {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.detail-imgs img {
  width: 380px;
  height: 380px;
  object-fit: cover;
  border-radius: 0;
  background: #f0f0f0;
}
.detail-info {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.detail-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.detail-brand {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0.8rem;
  font-style: italic;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.detail-price {
  color: var(--theme-color);
  font-size: 2.7rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.detail-btn-cnfans {
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 18px 60px;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
  margin-top: 0.5rem;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

.cnfans-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 4px;
}

.detail-btn-cnfans:hover .cnfans-icon {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}
.detail-btn-cnfans:hover {
  background: #e53e3e;
}

/* Unified Purchase Platform Styles */
.purchase-platforms {
  margin: 20px 0;
}

.more-platforms {
  margin: 20px 0;
}

.platforms-title {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 15px;
  text-align: center;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
  font-weight: bold;
}

.platforms-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.platform-btn {
  background: #f8f9fa;
  color: #333;
  border: 2px solid #e9ecef;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  width: 250px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
  box-sizing: border-box;
}

.platform-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  object-fit: contain;
  border-radius: 3px;
}

.platform-btn:hover .platform-icon {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

.platform-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-decoration: none;
}

/* Primary platform styling */
.primary-platform {
  background: var(--theme-color) !important;
  color: white !important;
  border-color: var(--theme-color) !important;
  font-weight: 700;
  position: relative;
  /* padding: 10px 20px; */
  /* width: 180px;
  height: 50px; */
  box-sizing: border-box;
}

.primary-platform:hover {
  background: #e53e3e !important;
  border-color: #e53e3e !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.3);
}

.platform-name {
  font-weight: 600;
  margin-left: 4px;
}

.platform-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff6b6b;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Responsive design for platform buttons */
@media (max-width: 768px) {
  .platform-btn {
    width: 150px;
    height: 45px;
    font-size: 0.8rem;
    padding: 8px 16px;
  }
  
  .primary-platform {
    width: 150px;
    height: 45px;
    padding: 8px 16px;
  }
  
  .platform-name {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .platform-btn {
    width: 130px;
    height: 40px;
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  
  .primary-platform {
    width: 130px;
    height: 40px;
    padding: 6px 12px;
  }
  
  .platform-name {
    font-size: 0.7rem;
  }
  
  .platform-icon {
    width: 16px;
    height: 16px;
  }
}

.mulebuy-btn:hover {
  background: #28a745;
  color: white;
  border-color: #28a745;
}

.acbuy-btn:hover {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

.oopbuy-btn:hover {
  background: #fd7e14;
  color: white;
  border-color: #fd7e14;
}

.kalobuy-btn:hover {
  background: #6f42c1;
  color: white;
  border-color: #6f42c1;
}

.allchinabuy-btn:hover {
  background: #dc3545;
  color: white;
  border-color: #dc3545;
}

.usfans-btn:hover {
  background: #17a2b8;
  color: white;
  border-color: #17a2b8;
}

.loongbuy-btn:hover {
  background: #ffc107;
  color: #212529;
  border-color: #ffc107;
}
.detail-desc {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  background: #f7f8fa;
  padding: 1.1rem 1.2rem;
  margin-top: 0.5rem;
  box-shadow: 0 1px 6px rgba(37,99,235,0.04);
  border-radius: 0;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

/* Main Display Area Styles */
.detail-imgs .main-display {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
  height: 400px;
  background: #f8f9fa;
  border: 1.5px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

/* Empty State Placeholder */
.detail-imgs .main-display:empty::before {
      content: "No Image";
  color: #999;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Unified Thumbnail Container Styles */
.detail-imgs .all-thumbs-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  padding: 10px 0;
}

/* Unified Thumbnail Styles */
.detail-imgs .thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #eee;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: none;
  background: #fafafa;
  position: relative;
}

.detail-imgs .thumb:hover {
  border: 2px solid var(--theme-color);
  box-shadow: 0 2px 8px #ffd6d6;
  transform: translateY(-2px);
}

.detail-imgs .thumb.active {
  border: 2.5px solid var(--theme-color);
  box-shadow: 0 2px 12px #ffd6d6;
}

/* Main Image Thumbnail Special Styles */
.detail-imgs .main-thumb {
  border: 2px solid #007bff;
}

.detail-imgs .main-thumb:hover {
  border: 2px solid #0056b3;
  box-shadow: 0 2px 8px #cce7ff;
}

/* Quality Check Thumbnail Special Styles */
.detail-imgs .quality-check-thumb {
  border: 2px solid #28a745;
}

.detail-imgs .quality-check-thumb:hover {
  border: 2px solid #1e7e34;
  box-shadow: 0 2px 8px #d4edda;
}

/* Video Thumbnail Styles */
.detail-imgs .video-thumb {
  border: 2px solid #6f42c1;
  overflow: hidden;
}

.detail-imgs .video-thumb:hover {
  border: 2px solid #5a2d91;
  box-shadow: 0 2px 8px #e2d9f3;
}

.detail-imgs .video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-imgs .video-thumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  font-weight: bold;
  pointer-events: none;
}
.detail-imgs #mainProductImg,
.detail-imgs .main-img,
.detail-imgs .main-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  display: block;
  border: none;
  border-radius: 0;
  margin: 0;
  box-shadow: none;
}

/* Info Blocks, Buttons, Footer, etc. */
.info-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 60px 0 30px 0;
}
.info-box {
  background: var(--theme-color);
  color: #fff;
  border-radius: 20px;
  padding: 30px 40px;
  text-align: center;
  min-width: 320px;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.info-box .qr {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  margin: 10px 0;
}
.info-box button {
  background: #fff;
  color: var(--theme-color);
  border: none;
  border-radius: 20px;
  padding: 8px 24px;
  font-size: 1rem;
  font-weight: bold;
  margin: 10px 0;
  cursor: pointer;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}
.footer-links button {
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 12px 36px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.footer {
  color: #888;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

/* Mobile Adaptation */
@media (max-width: 1300px) {
  .navbar {  align-items: center; min-height: unset; padding: 0.5rem 0.5rem; }
  .nav { flex-wrap: wrap; gap: 0.5rem; }
  /* .products { gap: 16px; } */
  .info-section { flex-direction: column; align-items: center; gap: 20px; }
  .category-btns { gap: 30px; }
  .detail-main { flex-direction: column; align-items: center; gap: 1.5rem; padding: 1.2rem 0.7rem 1.2rem 0.7rem; }
  .detail-imgs img { width: 98vw; height: 20vh; }
  .detail-title { font-size: 3rem; }
  .detail-price { font-size: 4rem; }
  .detail-imgs .main-display { height: 50vh; }
  .detail-imgs #mainProductImg,
  .detail-imgs .main-img,
  .detail-imgs .main-video { width: 100%; height: 100%; }
  .detail-imgs .thumb { width: 15vw; height: 15vw; }
  .detail-imgs .all-thumbs-container { gap: 6px; }
  .main, .products, .detail-main, .about-container, .buy-container {
    max-width: 100vw;
    padding: 0 6px;
  }
  body {
    font-size: 34px;
  }
  .logo {
    font-size: 3.5rem;
  }
  .hero {
    padding-top: 150px;
  }
  .hero .signup-btn {
    font-size: 2rem;
  }
  .detail-title, .about-title, .buy-title {
    font-size: 3rem;
  }
 
  .footer-links { flex-direction: column; align-items: center; gap: 12px; }
  .footer-links button { width: 50vw; min-width: unset; }
  .info-box { min-width: unset; width: 50vw; box-sizing: border-box; }
  .product-card { width: 98vw !important; min-width: unset; }
  .product-card img { height: 520px !important; }
  .category-btn { width: 50vw; min-width: unset; }
  .nav { display: none !important; }
  .menu-toggle { display: block !important; font-size: 4rem !important; margin-right: 26px !important; }
  .drawer { display: none; }
  .drawer.open { display: block; }
  .how-to-bypass {
    font-size: 2rem !important;
    font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif !important;
  }

  .discount-title {
    font-size: 4rem;
  }
  .disclaimer {
    font-size: 2rem;
  }

  .category-btn {
    font-size: 3rem;
  }

  .detail-btn-cnfans {
    font-size: 3rem;
  }
  
}

/* Global Main Content Area Adaptive Width */
.main, .products, .detail-main, .about-container, .buy-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  margin-top: 100px;
}

/* Font Adaptation */
/* .detail-title, .about-title, .buy-title {
  font-size: 2rem;
} */

/* Button, Card, Image Adaptation */
.footer-links button, .category-btn, .detail-btn-cnfans {
  /* min-width: 120px; */
  padding: 10px 18px;
}

.product-desc-title {
  font-size: 3rem;
}

/* Unified Scrollbar and Overflow Handling */
html, body {
  overflow-x: hidden;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  margin-right: 16px;
  cursor: pointer;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2000;
}
.drawer-content {
  background: #fff;
  width: 100vw;
  /* max-width: 320px; */
  height: 50vh;
  position: fixed;
  left: 0; top: 0;
  box-shadow: 2px 0 16px #8882;
  /* padding: 100px 18px 18px 18px; */
  padding-top: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  /* gap: 6rem; */
}
.drawer-close {
  background: none;
  border: none;
  font-size: 4rem;
  color: var(--theme-color);
  position: absolute;
  top: 20px; right: 75px;
  cursor: pointer;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

/* Product Introduction Block Styles */
.product-desc-block {
  background: #f7f8fa;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(37,99,235,0.04);
  padding: 1.2rem 1.5rem;
  margin: 1.2rem 0 1.2rem 0;
}

.product-desc-title {
  font-size: 3rem;
  font-weight: bold;
  color: var(--theme-color);
  margin-bottom: 0.7rem;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

.product-desc-content {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  word-break: break-all;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

/* Facebook Share Button Styles */
.fb-share-btn {
  background: #4267B2;
  color: #fff !important;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.18s;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}
.fb-share-btn:hover {
  background: #365899;
  color: #fff !important;
}

/* Twitter Share Button Styles */
.twitter-share-btn {
  background: #1DA1F2;
  color: #fff !important;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.18s;
}
.twitter-share-btn:hover {
  background: #1A91DA;
  color: #fff !important;
}

/* WhatsApp Contact Styles */
.whatsapp-contact {
  background: #25D366 !important;
  color: white !important;
  border-radius: 20px !important;
  padding: 8px 16px !important;
  font-weight: bold !important;
  transition: all 0.3s ease !important;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif !important;
}

.whatsapp-contact:hover {
  background: #128C7E !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Contact Information Area Responsive */
@media (max-width: 768px) {
  .contact-info {
    margin: 20px 10px !important;
    padding: 15px !important;
  }
  
  .contact-info > div {
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  .contact-info a {
    font-size: 14px !important;
    padding: 10px 16px !important;
  }
}

/* Ensure WhatsApp button is not blocked on mobile */
@media (max-width: 768px) {
  body {
    padding-bottom: 80px;
  }
  
  /* Mobile Platform Button Styles */
  .platforms-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .platform-btn {
    width: 80%;
    max-width: 200px;
    margin-bottom: 8px;
  }
  
  .platforms-title {
    font-size: 1rem;
  }
}

/* Breadcrumb Navigation Styles */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /* top will be dynamically set by JavaScript */
}

/* Page content container, avoid being covered by fixed elements */
.page-content {
    /* padding-top will be dynamically set by JavaScript */
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item:hover {
    color: var(--theme-color);
}

.breadcrumb-item.active {
    color: #495057;
    font-weight: 500;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #6c757d;
}

/* Breadcrumb Navigation Structured Data */
.breadcrumb[aria-label="breadcrumb"] {
    display: block;
}

/* Friendly Links Styles */
.friendly-links {
    background: #f8f9fa;
    padding: 30px 0;
    border-top: 1px solid #e9ecef;
}

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

.friendly-links-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

.friendly-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.friendly-link-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.friendly-link-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--theme-color);
    text-decoration: none;
    color: var(--theme-color);
}

.friendly-link-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
}

.friendly-link-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.friendly-link-description {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Mobile Friendly Links Styles */
@media (max-width: 768px) {
    .friendly-links {
        padding: 20px 0;
    }
    
    .friendly-links-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .friendly-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .friendly-link-item {
        padding: 12px;
    }
    
    .friendly-link-logo {
        width: 32px;
        height: 32px;
    }
    
    .friendly-link-name {
        font-size: 0.8rem;
    }
    
    .friendly-link-description {
        font-size: 0.7rem;
    }
}

/* Features Section */
.features {
  background: #f7f8fa;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 18px 0;
  margin: 12px 0 24px 0;
}
.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.feature-item { display: grid; grid-template-columns: 28px 1fr; column-gap: 14px; align-items: flex-start; }
.feature-icon { width: 28px; height: 28px; opacity: 0.75; grid-column: 1; grid-row: 1 / span 2; }
.feature-title { grid-column: 2; font-weight: 700; color: #333; font-size: 1.05rem; }
.feature-desc { grid-column: 2; color: #555; font-size: 0.9rem; line-height: 1.5; max-width: 260px; }

@media (max-width: 1300px) {
  .features-container { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 600px) {
  .features-container { grid-template-columns: 1fr; }
  .feature-icon { width: 26px; height: 26px; }
  .feature-title { font-size: 1rem; }
  .feature-desc { font-size: 0.9rem; }
}

/* Articles Section Styles */
.articles-section {
  background: #fff;
  padding: 40px 0;
  margin: 20px 0;
}

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

.articles-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  grid-template-rows: repeat(5, auto);
}

.article-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--theme-color);
}

.article-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-placeholder {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #ccc;
}

.article-content {
  padding: 20px;
}

.article-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-intro {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 15px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #888;
}

.article-date {
  font-weight: 500;
}

.article-views {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Mobile Responsive for Articles */
@media (max-width: 768px) {
  .articles-section {
    padding: 30px 0;
  }
  
  .articles-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .article-image {
    height: 180px;
  }
  
  .article-content {
    padding: 16px;
  }
  
  .article-title {
    font-size: 1rem;
  }
  
  .article-intro {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .articles-container {
    padding: 0 12px;
  }
  
  .articles-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .article-image {
    height: 160px;
  }
  
  .article-content {
    padding: 14px;
  }
}

