/* ============================================
   Common Styles - 公共样式表
   包含所有页面共享的CSS变量、基础样式和通用组件
   ============================================ */

/* 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;
}

/* CSS Variables */
:root {
    --theme-color: #dc3838;
    --neon-red: #ff2d55;
    --neon-orange: #ff9500;
    --neon-yellow: #ffcc00;
    --neon-green: #30d158;
    --neon-blue: #0a84ff;
    --neon-purple: #bf5af2;
    --neon-pink: #ff375f;
    --dark-bg: #0d0d0d;
    --dark-card: #1a1a1a;
    --dark-card-hover: #252525;
}

/* Base Styles */
html, body {
    margin: 0;
    padding: 0;
    font-size: 16px;
}

body {
    background: var(--dark-bg);
    font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

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

/* Unified Scrollbar and Overflow Handling */
/* ============================================
   Header / Navigation Styles
   ============================================ */
.navbar {
    background: var(--dark-card);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.7rem 1.5rem;
    min-height: 64px;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
    font-family: 'Space Mono', monospace;
    flex-shrink: 0;
    min-width: 100px;
    background: linear-gradient(135deg, var(--neon-red), var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo a:hover {
  opacity: 0.8;
}

/* Navigation */
.nav {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
    flex-shrink: 1;
    margin-left: auto;
}

.nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    margin: 0 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px !important;
    transition: all 0.3s ease;
    padding: 8px 14px;
    font-family: 'Space Mono', monospace;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav a:hover {
    background: linear-gradient(135deg, var(--neon-red), var(--neon-pink));
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 45, 85, 0.3);
}

/* Search Box Styles */
.search-container {
    flex: 0 1 180px;
    margin-left: 8px;
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 4px 10px;
    transition: all 0.3s ease;
}

.search-form:focus-within {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--neon-red);
    box-shadow: 0 0 20px rgba(255, 45, 85, 0.2);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 6px;
    padding: 8px 10px;
    outline: none;
    font-family: 'Space Mono', monospace;
}

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

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

.search-form:focus-within .search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: rgba(255, 45, 85, 0.2);
    color: var(--neon-red);
    transform: scale(1.1);
}

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

/* WhatsApp Header Button */
.whatsapp-header-btn {
    background: linear-gradient(135deg, var(--neon-green), #20ba5a);
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(48, 209, 88, 0.3);
    flex-shrink: 0;
}

.whatsapp-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(48, 209, 88, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    color: #fff;
    margin-left: 8px;
    cursor: pointer;
    font-family: 'Space Mono', monospace;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: rgba(255, 45, 85, 0.2);
    border-color: var(--neon-red);
}

/* Mobile Drawer */
.drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
}

.drawer.open {
    display: block;
}

.drawer-content {
    background: var(--dark-card);
    width: 100vw;
    height: auto;
    max-height: 70vh;
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    padding-top: 80px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.drawer-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 2rem;
    color: #fff;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-family: 'Space Mono', monospace;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.drawer-close:hover {
    background: rgba(255, 45, 85, 0.2);
    border-color: var(--neon-red);
}

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

.mobile-search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-search-input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    padding: 10px 12px;
    outline: none;
    font-family: 'Space Mono', monospace;
}

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

.mobile-search-btn {
    background: linear-gradient(135deg, var(--neon-red), var(--neon-pink));
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 45, 85, 0.3);
}

.mobile-search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 45, 85, 0.4);
}

/* Drawer Nav Links */
.drawer-nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    font-weight: 600;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.drawer-nav-link:hover {
    background: linear-gradient(135deg, var(--neon-red), var(--neon-pink));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 45, 85, 0.3);
}

/* Drawer WhatsApp Button */
.drawer-whatsapp-btn {
    color: var(--neon-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 25px;
    background: rgba(48, 209, 88, 0.15);
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    border: 1px solid rgba(48, 209, 88, 0.3);
}

.drawer-whatsapp-btn:hover {
    background: linear-gradient(135deg, var(--neon-green), #20ba5a);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 209, 88, 0.4);
}

/* Back Button */
.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;
}

/* ============================================
   Hero Section
   ============================================ */
.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
   ============================================ */
.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: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 36px;
}

.category-btns > * {
  flex: 1 1 45%;
  max-width: 45%;
  min-width: 180px;
  box-sizing: border-box;
}

.category-btn {
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  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;
}

/* ============================================
   Product Card Styles
   ============================================ */
.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;
  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: 0 0 0.5rem 0;
  padding: 0;
  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;
}

.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 */
.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;
}

.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%;
}

.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;
}

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

.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;
}

.detail-imgs .main-thumb {
  border: 2px solid #007bff;
}

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

.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;
}

.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;
}

/* QC Images */
.qc-images-container {
  width: 100%;
  margin-top: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

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

.qc-images-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.qc-image-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  background: white;
  border-radius: 8px;
  border: 2px solid #28a745;
  box-shadow: 0 2px 4px rgba(40, 167, 69, 0.1);
}

.qc-image-full {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 8px;
}

.qc-image-label {
  font-size: 0.9rem;
  color: #28a745;
  font-weight: 600;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

/* ============================================
   Platform Button 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 {
  background: var(--theme-color) !important;
  color: white !important;
  border-color: var(--theme-color) !important;
  font-weight: 700;
  position: relative;
  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);
}

.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;
}

/* ============================================
   Info Section & Footer
   ============================================ */
.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;
}

/* ============================================
   Product Description Block
   ============================================ */
.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: 2rem;
  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;
}

/* ============================================
   Social Share Buttons
   ============================================ */
.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-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;
}

.reddit-share-btn {
  background: #FF4500;
  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;
}

.reddit-share-btn:hover {
  background: #FF4500;
  color: #fff !important;
}

/* WhatsApp Contact */
.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);
}

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

.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[aria-label="breadcrumb"] {
  display: block;
}

/* ============================================
   Friendly Links
   ============================================ */
.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;
}

/* ============================================
   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;
}

/* ============================================
   Home Products Section
   ============================================ */
.home-products-section {
  background: #fff;
  padding: 50px 0;
  margin: 30px 0;
}

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

.home-products-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 40px;
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

.home-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.home-product-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.home-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--theme-color);
}

.home-product-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f8f9fa;
  position: relative;
}

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

.home-product-card:hover .home-product-image img {
  transform: scale(1.08);
}

.home-product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.home-product-content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-product-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px 0;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 2.8em;
}

.home-product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--theme-color);
  font-family: 'Space Mono', 'Segoe UI', 'Roboto', Arial, sans-serif;
}

/* ============================================
   Articles Section
   ============================================ */
.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;
}

/* ============================================
   Responsive Breakpoints
   ============================================ */

/* Large screens */
@media (max-width: 1300px) {
  .navbar {
    align-items: center;
    min-height: unset;
    padding: 0.5rem 0.5rem;
    gap: 0.5rem;
      justify-content: space-around ;
  }

  .logo {
    font-size: 1.3rem;
    min-width: 70px;
  }

  .search-container {
    flex: 1 1 auto;
    max-width: 180px;
    margin: 0;
  }

  .search-form {
    padding: 4px 10px;
  }

  .search-input {
    font-size: 11px;
    padding: 4px 6px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    font-size: 1.5rem;
    margin: 0;
  }

  .whatsapp-header-btn {
    margin: 0;
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .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;
  }

  .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 .thumb {
    width: 15vw;
    height: 15vw;
  }

  .detail-imgs .all-thumbs-container {
    gap: 6px;
  }

  .qc-images-container {
    margin-top: 15px;
    padding: 10px;
  }

  .qc-image-full {
    max-height: 200px;
  }

  .qc-images-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .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: 100% !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: 2rem !important;
    margin-right: 10px !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: 2rem;
  }

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

  .features-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* Tablets */
@media (max-width: 1024px) {
  .home-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .home-product-image {
    height: 200px;
  }
}

/* Tablet (iPad) */
@media (max-width: 900px) {
  .nav {
    display: none !important;
  }

  .menu-toggle {
    display: flex;
    font-size: 1.5rem;
    margin-left: 16px;
  }

  .search-container {
    flex: 1 1 auto;
    max-width: 200px;
    margin: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar {
    padding: 0.4rem 0.8rem;
    min-height: 56px;
  }

  .logo {
    font-size: 1.4rem;
    min-width: 60px;
  }

  .search-container {
    flex: 1 1 auto;
    max-width: none;
    margin: 0 8px;
  }

  .nav {
    display: none !important;
  }

  .menu-toggle {
    display: flex;
    font-size: 1.5rem;
    margin: 0 0 0 8px;
  }

  .drawer-content {
    padding: 70px 15px 15px 15px;
    gap: 1.5rem;
  }

  .drawer-nav-link {
    font-size: 1.3rem;
    padding: 10px 16px;
  }

  .drawer-whatsapp-btn {
    font-size: 1.8rem;
    padding: 12px 20px;
  }

  .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;
  }

  .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;
  }

  body {
    padding-bottom: 80px;
  }

  .platforms-buttons {
    flex-direction: column;
    align-items: center;
  }

  .platform-btn {
    width: 80%;
    max-width: 200px;
    margin-bottom: 8px;
  }

  .platforms-title {
    font-size: 1rem;
  }

  .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;
  }

  .home-products-section {
    padding: 30px 0;
    margin: 20px 0;
  }

  .home-products-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .home-products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-product-card {
    border-radius: 12px;
  }

  .home-product-image {
    height: 280px;
  }

  .home-product-content {
    padding: 18px;
  }

  .home-product-title {
    font-size: 1.1rem;
    margin-bottom: 14px;
    min-height: 3.1em;
  }

  .home-product-price {
    font-size: 1.6rem;
  }

  .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;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .navbar {
    padding: 0.3rem 0.6rem;
    min-height: 52px;
  }

  .logo {
    font-size: 1.4rem;
    min-width: 70px;
  }

  .search-container {
    max-width: 150px;
    margin: 0 6px;
  }

  .search-input {
    font-size: 10px;
    padding: 3px 5px;
  }

  .menu-toggle {
    font-size: 1.4rem;
    margin-left: 6px;
  }

  .drawer-content {
    padding: 60px 10px 10px 10px;
    gap: 1rem;
  }

  .drawer-nav-link {
    font-size: 1.1rem;
    padding: 8px 12px;
  }

  .drawer-whatsapp-btn {
    font-size: 1.5rem;
    padding: 10px 16px;
  }

  .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;
  }

  .articles-container {
    padding: 0 12px;
  }

  .articles-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .article-image {
    height: 160px;
  }

  .article-content {
    padding: 14px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .nav a,
  .menu-toggle,
  .whatsapp-header-btn,
  .drawer-nav-link,
  .drawer-whatsapp-btn {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-btn,
  .mobile-search-btn {
    min-height: 44px;
    min-width: 44px;
  }
}

/* ============================================
   Floating Contact Buttons (WhatsApp & Discord)
   ============================================ */
.float-contact-container {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-green), #20ba5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(48, 209, 88, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(48, 209, 88, 0.6);
    text-decoration: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-card);
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark-card);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.discord-float {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.discord-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(88, 101, 242, 0.6);
    text-decoration: none;
}

.discord-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.discord-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-card);
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark-card);
}

.discord-float:hover .discord-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .float-contact-container {
        right: 10px;
        gap: 10px;
    }
    .whatsapp-float,
    .discord-float {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
    .discord-float svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-tooltip,
    .discord-tooltip {
        display: none;
    }
}

/* Mobile Adaptation for Articles */
@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;
  }
}

/* ============================================
   Footer Links Styles (Flexbox)
   ============================================ */
.info-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    margin: 40px auto;
    padding: 0 24px;
    max-width: 1200px;
}

.info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.info-box-title {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    background: linear-gradient(135deg, var(--neon-red), var(--neon-pink));
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 8px 0;
}

.info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 45, 85, 0.4);
}

.info-btn-with-icon {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
}

.info-btn-with-icon:hover {
    box-shadow: 0 8px 25px rgba(10, 132, 255, 0.4);
}

.info-btn-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.info-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.info-link {
    color: var(--neon-blue);
    text-decoration: none;
}

.info-link:hover {
    text-decoration: underline;
}

.qr {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qrcode-container {
    width: 100px;
    height: 100px;
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    padding: 5px;
}

.qrcode-img {
    width: 100px;
    height: 100px;
    border-radius: 4px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.footer-link-btn {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    padding: 12px 24px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-link-btn:hover {
    border-color: var(--neon-blue);
    background: rgba(10, 132, 255, 0.1);
    color: #fff;
}

/* ============================================
   Footer Styles (Flexbox)
   ============================================ */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 40px auto;
    padding: 32px 40px;
    background: var(--dark-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 600px;
}

.contact-info h3 {
    color: #fff;
    margin: 0 0 20px 0;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--neon-red), var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, var(--neon-green), #20ba5a);
    color: white;
    box-shadow: 0 4px 20px rgba(48, 209, 88, 0.3);
}

.contact-btn.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(48, 209, 88, 0.4);
}

.contact-btn.discord {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
}

.contact-btn.discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
}

.footer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-align: center;
    margin: 60px 0 30px 0;
    font-family: 'Space Mono', monospace;
}

.disclaimer {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.5rem;
    text-align: center;
    margin: 30px auto 0 auto;
    padding: 20px 24px;
    background: var(--dark-card);
    border-radius: 12px;
    font-family: 'Space Mono', monospace;
    line-height: 1.6;
    /*max-width: 900px;*/
}

.disclaimer p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.disclaimer p:last-child {
    margin-bottom: 0;
}

.disclaimer strong {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Space Mono', monospace;
    font-weight: 700;
}

.disclaimer a {
    color: var(--neon-blue);
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .contact-info {
        padding: 24px 20px;
        margin: 30px 16px;
    }

    .contact-buttons {
        flex-direction: column;
    }

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

    .disclaimer {
        font-size: 0.65rem;
        padding: 16px;
        margin: 20px 16px 0 16px;
    }

    .disclaimer p {
        margin-bottom: 10px;
    }

    .info-section {
        flex-direction: column;
        align-items: center;
    }

    .info-box {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .disclaimer {
        font-size: 0.6rem;
        padding: 14px;
    }
}
