/*
Theme Name: WebSecu - Game Mastery Hub
Theme URI: https://websecu.com
Author: WebSecu Team
Author URI: https://websecu.com
Description: A premium gaming PC hub theme with hardware reviews, guides, comparisons, deals and software recommendations. Dark gaming aesthetic with red/blue gradient accents.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: websecu
Tags: gaming, dark, custom-menu, featured-images, custom-logo, responsive

WebSecu — Game Mastery Hub WordPress Theme
Expert-tested hardware reviews, pro building guides, real benchmarks and exclusive deals.
*/

/* ================================================================
   WEBSECU — FULL UNIFIED STYLES
   Prefix .ws- to avoid conflicts with WordPress
   ================================================================ */

/* GLOBAL RESET & OVERFLOW FIX */
html, body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: #05061A;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
}

body {
  --ws-red: #F20530;
  --ws-red-dark: #730220;
  --ws-navy: #020540;
  --ws-royal: #021373;
  --ws-blue: #0554F2;
  --ws-bg: #05061A;
  --ws-bg-2: #0A0B24;
  --ws-bg-3: #111338;
  --ws-surface: #14163D;
  --ws-line: rgba(255,255,255,.08);
  --ws-text: #EDEEF5;
  --ws-text-dim: #A7ABC4;
  --ws-text-mute: #7A7F9C;
  --ws-gradient-hot: linear-gradient(135deg, #F20530 0%, #730220 100%);
  --ws-gradient-cool: linear-gradient(135deg, #0554F2 0%, #021373 100%);
  --ws-gradient-brand: linear-gradient(135deg, #F20530 0%, #0554F2 100%);
  --ws-radius: 14px;
  --ws-radius-lg: 22px;
  --ws-shadow-red: 0 12px 40px -10px rgba(242,5,48,.45);
  --ws-shadow-blue: 0 12px 40px -10px rgba(5,84,242,.45);
  --ws-font-display: 'Orbitron', sans-serif;
  --ws-font-sub: 'Bebas Neue', sans-serif;
  --ws-font-body: 'Roboto', system-ui, sans-serif;
  --ws-container: 1260px;
  font-family: var(--ws-font-body);
  background: var(--ws-bg);
  color: var(--ws-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  display: block;
  width: 100%;
  max-width: 100vw;
}

/* Force content to respect viewport */
p, h1, h2, h3, h4, h5, span, a, li {
  word-wrap: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}
img, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* Container */
.ws-container {
  max-width: var(--ws-container);
  margin: 0 auto;
  padding: 0 24px;
}
.ws-gradient-text {
  background: var(--ws-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ws-stroke-text {
  -webkit-text-stroke: 2px var(--ws-red);
  color: transparent;
}

/* Page transitions */
@keyframes wsPageIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.ws-page-animate { animation: wsPageIn .45s ease; }

/* Buttons */
.ws-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  cursor: pointer;
  border: none;
}
.ws-btn-primary {
  background: var(--ws-gradient-hot);
  color: #fff !important;
  box-shadow: var(--ws-shadow-red);
}
.ws-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -10px rgba(242,5,48,.7);
}
.ws-btn-ghost {
  background: rgba(255,255,255,.05);
  color: #fff !important;
  border: 1px solid var(--ws-line);
  backdrop-filter: blur(8px);
}
.ws-btn-ghost:hover {
  background: rgba(5,84,242,.25);
  border-color: var(--ws-blue);
  transform: translateY(-3px);
}

/* TOP BAR */
.ws-topbar {
  background: linear-gradient(90deg, var(--ws-navy), var(--ws-royal));
  border-bottom: 1px solid var(--ws-line);
  font-size: 13px;
}
.ws-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  flex-wrap: wrap;
  gap: 10px;
}
.ws-topbar-text { color: var(--ws-text-dim); }
.ws-topbar-text i { color: var(--ws-red); margin-bottom: 6px; }
.ws-topbar-links { display: flex; gap: 16px; }
.ws-topbar-links a {
  color: var(--ws-text-dim);
  font-size: 12px;
  transition: color .2s;
  font-weight: 500;
}
.ws-topbar-links a:hover { color: #fff; }
.ws-topbar-links a i { margin-right: 4px; color: var(--ws-red); }

/* HEADER */
.ws-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,6,26,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ws-line);
  transition: all .3s;
}
.ws-header.scrolled {
  background: rgba(5,6,26,.97);
  box-shadow: 0 6px 30px rgba(0,0,0,.5);
}
.ws-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.ws-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}
.ws-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(242,5,48,.4));
  border-radius: 8px;
}
.ws-logo-text { display: flex; flex-direction: column; line-height: 1; }
.ws-logo-main {
  font-family: var(--ws-font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 2px;
  background: var(--ws-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ws-logo-sub {
  font-family: var(--ws-font-sub);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--ws-text-mute);
  margin-top: 4px;
}

/* WordPress Navigation - wp_nav_menu */
.ws-nav { display: flex; gap: 4px; }
.ws-nav li { list-style: none; }
.ws-nav a, .ws-nav-link {
  padding: 10px 16px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ws-text-dim);
  border-radius: 10px;
  transition: all .25s;
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
}
.ws-nav a i { font-size: 13px; }
.ws-nav a:hover, .ws-nav-link:hover { color: #fff; background: rgba(255,255,255,.05); }
.ws-nav .current-menu-item > a,
.ws-nav .current-menu-ancestor > a,
.ws-nav-link.active { color: #fff; }
.ws-nav .current-menu-item > a::after,
.ws-nav-link.active::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 2px;
  background: var(--ws-gradient-brand);
  border-radius: 2px;
}
.ws-nav-link-accent,
.ws-nav .menu-item-deals > a {
  background: rgba(242,5,48,.12) !important;
  color: #fff !important;
}
.ws-nav-link-accent:hover,
.ws-nav .menu-item-deals > a:hover {
  background: rgba(242,5,48,.25) !important;
}

.ws-header-actions { display: flex; align-items: center; gap: 10px; }
.ws-search-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--ws-text);
  transition: all .25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-search-btn:hover { background: var(--ws-red); box-shadow: var(--ws-shadow-red); }
.ws-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.ws-menu-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all .3s;
  border-radius: 2px;
}
.ws-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ws-menu-toggle.active span:nth-child(2) { opacity: 0; }
.ws-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* SEARCH OVERLAY */
.ws-search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(5,6,26,.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ws-line);
  padding: 30px 0;
  animation: wsSlideDown .3s ease;
}
@keyframes wsSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.ws-search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--ws-line);
  padding: 16px 20px;
  border-radius: 14px;
}
.ws-search-form i { color: var(--ws-red); font-size: 18px; }
.ws-search-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 17px;
}
.ws-search-close {
  font-size: 28px;
  color: var(--ws-text-dim);
  padding: 0 10px;
  background: none;
  cursor: pointer;
}
.ws-search-close:hover { color: var(--ws-red); }
.ws-search-suggest {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}
.ws-suggest-label { color: var(--ws-text-mute); }
.ws-search-suggest a {
  padding: 6px 12px;
  background: rgba(5,84,242,.12);
  border-radius: 20px;
  color: var(--ws-text-dim);
  transition: all .2s;
}
.ws-search-suggest a:hover { background: var(--ws-blue); color: #fff; }

/* HERO HOMEPAGE */
.ws-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 100px;
}
.ws-hero-bg { position: absolute; inset: 0; z-index: 0; }
.ws-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.5) contrast(1.1);
}
.ws-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(242,5,48,.35), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(5,84,242,.4), transparent 55%),
    linear-gradient(180deg, rgba(5,6,26,.5) 0%, rgba(5,6,26,.92) 100%);
}
.ws-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.7), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.7), transparent 70%);
}
.ws-particles { position: absolute; inset: 0; pointer-events: none; }
.ws-particles span {
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ws-red);
  opacity: .6;
  animation: wsFloat 12s linear infinite;
}
.ws-particles span:nth-child(1) { left: 10%; top: 80%; animation-delay: 0s; }
.ws-particles span:nth-child(2) { left: 25%; top: 60%; animation-delay: 2s; background: var(--ws-blue); }
.ws-particles span:nth-child(3) { left: 45%; top: 70%; animation-delay: 4s; width: 6px; height: 6px; }
.ws-particles span:nth-child(4) { left: 60%; top: 55%; animation-delay: 1s; background: var(--ws-blue); }
.ws-particles span:nth-child(5) { left: 75%; top: 75%; animation-delay: 3s; }
.ws-particles span:nth-child(6) { left: 90%; top: 65%; animation-delay: 5s; background: var(--ws-blue); width: 5px; height: 5px; }
.ws-particles span:nth-child(7) { left: 15%; top: 40%; animation-delay: 6s; }
.ws-particles span:nth-child(8) { left: 35%; top: 85%; animation-delay: 7s; background: var(--ws-blue); }
.ws-particles span:nth-child(9) { left: 55%; top: 30%; animation-delay: 8s; width: 6px; height: 6px; }
.ws-particles span:nth-child(10) { left: 85%; top: 45%; animation-delay: 9s; background: var(--ws-blue); }
@keyframes wsFloat {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: .8; }
  90% { opacity: .8; }
  100% { transform: translateY(-600px) scale(1.5); opacity: 0; }
}
.ws-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: wsFadeUp 1s ease .1s both;
}
@keyframes wsFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.ws-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(242,5,48,.15);
  border: 1px solid rgba(242,5,48,.4);
  font-family: var(--ws-font-sub);
  letter-spacing: 4px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 28px;
}
.ws-hero-badge i { color: var(--ws-red); }
.ws-hero-title {
  font-family: var(--ws-font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.ws-hero-desc {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ws-text-dim);
  max-width: 720px;
  margin: 0 auto 36px;
}
.ws-hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.ws-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--ws-line);
  border-radius: var(--ws-radius-lg);
  backdrop-filter: blur(10px);
}
.ws-stat { text-align: center; }
.ws-stat strong {
  font-family: var(--ws-font-display);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 900;
  display: block;
  background: var(--ws-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.ws-stat span {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--ws-text-mute);
  text-transform: uppercase;
}

/* MARQUEE - FIXED (seamless infinite scroll) */
.ws-marquee {
  background: linear-gradient(90deg, var(--ws-red-dark), var(--ws-navy), var(--ws-royal));
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(242,5,48,.3);
  border-bottom: 1px solid rgba(5,84,242,.3);
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.ws-marquee-track {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  animation: wsMarquee 40s linear infinite;
  width: max-content;
  will-change: transform;
}
.ws-marquee-track span {
  font-family: var(--ws-font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 3px;
  color: rgba(255,255,255,.8);
  flex-shrink: 0;
}
.ws-marquee-track i {
  font-size: 6px;
  color: var(--ws-red);
  flex-shrink: 0;
}
@keyframes wsMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* SECTION HEADS */
.ws-section-head { margin-bottom: 50px; }
.ws-section-head.ws-center { text-align: center; }
.ws-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ws-font-sub);
  letter-spacing: 4px;
  font-size: 14px;
  color: var(--ws-red);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.ws-section-title {
  font-family: var(--ws-font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 16px;
}
.ws-section-subtitle {
  color: var(--ws-text-dim);
  font-size: 1.08rem;
  max-width: 680px;
}
.ws-section-head.ws-center .ws-section-subtitle { margin: 0 auto; }

/* CATEGORIES */
.ws-categories {
  padding: 100px 0;
  background: radial-gradient(ellipse at top, var(--ws-bg-2), var(--ws-bg));
}
.ws-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.ws-category-card {
  position: relative;
  border-radius: var(--ws-radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, var(--ws-bg-3), var(--ws-bg-2));
  border: 1px solid var(--ws-line);
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  min-height: 440px;
  cursor: pointer;
  text-decoration: none !important;
  color: inherit !important;
}
.ws-category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: var(--ws-radius-lg);
  background: var(--ws-gradient-brand);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.ws-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -20px rgba(5,84,242,.4);
}
.ws-category-card:hover::before { opacity: 1; }
.ws-card-media { height: 180px; overflow: hidden; position: relative; }
.ws-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,6,26,.9));
}
.ws-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s;
}
.ws-category-card:hover .ws-card-media img { transform: scale(1.1); }
.ws-card-body {
  padding: 24px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  margin-top: -40px;
}
.ws-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  background: var(--ws-gradient-cool);
  box-shadow: var(--ws-shadow-blue);
  margin-bottom: 18px;
  border: 3px solid var(--ws-bg-2);
}
.ws-category-card-hot .ws-card-icon {
  background: var(--ws-gradient-hot);
  box-shadow: var(--ws-shadow-red);
}
.ws-card-title {
  font-family: var(--ws-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.ws-card-desc {
  color: var(--ws-text-dim);
  font-size: .95rem;
  margin-bottom: 16px;
  flex: 1;
}
.ws-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.ws-card-tags li {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(5,84,242,.15);
  color: var(--ws-text-dim);
  border-radius: 20px;
  border: 1px solid rgba(5,84,242,.3);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}
.ws-category-card-hot .ws-card-tags li {
  background: rgba(242,5,48,.15);
  border-color: rgba(242,5,48,.3);
}
.ws-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid var(--ws-line);
}
.ws-card-cta i { transition: transform .3s; }
.ws-category-card:hover .ws-card-cta i { transform: translateX(6px); }
.ws-card-count {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: rgba(5,6,26,.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--ws-line);
  border-radius: 20px;
  font-size: 12px;
  color: var(--ws-text-dim);
  z-index: 3;
  font-weight: 500;
}
.ws-card-count-hot {
  background: var(--ws-gradient-hot) !important;
  color: #fff !important;
  border-color: transparent !important;
  font-weight: 700;
  letter-spacing: 1px;
  animation: wsPulseHot 2s infinite;
}
@keyframes wsPulseHot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(242,5,48,.6); }
  50% { box-shadow: 0 0 0 10px rgba(242,5,48,0); }
}

/* ARTICLES FEED */
.ws-articles {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--ws-bg) 0%, var(--ws-bg-2) 100%);
}
.ws-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 40px;
  padding: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--ws-line);
  border-radius: var(--ws-radius);
}
.ws-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--ws-line);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ws-text-dim);
  transition: all .25s;
  cursor: pointer;
  text-decoration: none !important;
}
.ws-filter-chip:hover {
  color: #fff;
  background: rgba(5,84,242,.15);
  border-color: rgba(5,84,242,.4);
}
.ws-filter-chip.active {
  background: var(--ws-gradient-hot);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--ws-shadow-red);
}
.ws-chip-count {
  background: rgba(0,0,0,.25);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}
.ws-filter-chip.active .ws-chip-count { background: rgba(255,255,255,.25); }

.ws-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}
.ws-article-card {
  background: linear-gradient(180deg, var(--ws-bg-3), var(--ws-bg-2));
  border: 1px solid var(--ws-line);
  border-radius: var(--ws-radius);
  overflow: hidden;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  position: relative;
  animation: wsFadeIn .5s ease both;
  text-decoration: none !important;
  color: inherit !important;
}
@keyframes wsFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.ws-article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(5,84,242,.5);
  box-shadow: 0 20px 40px -15px rgba(5,84,242,.3);
}
.ws-article-media { height: 200px; overflow: hidden; position: relative; }
.ws-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.ws-article-card:hover .ws-article-media img { transform: scale(1.08); }
.ws-article-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
}
.ws-cat-hardware { background: rgba(5,84,242,.85); color: #fff; }
.ws-cat-guides { background: rgba(2,19,115,.85); color: #fff; }
.ws-cat-comparatifs { background: rgba(17,19,56,.9); color: #fff; }
.ws-cat-deals { background: var(--ws-gradient-hot); color: #fff; }
.ws-cat-software { background: linear-gradient(135deg, #6c3ce0, #1a73e8); color: #fff; }
.ws-article-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.ws-article-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 12px;
  color: var(--ws-text-mute);
  margin-bottom: 10px;
}
.ws-article-meta i { margin-right: 4px; color: var(--ws-red); }
.ws-article-title {
  font-family: var(--ws-font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #fff;
  transition: color .25s;
}
.ws-article-card:hover .ws-article-title { color: var(--ws-red); }
.ws-article-excerpt {
  color: var(--ws-text-dim);
  font-size: .92rem;
  flex: 1;
  margin-bottom: 16px;
}
.ws-article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--ws-line);
  font-size: 13px;
}
.ws-article-read {
  color: var(--ws-red);
  font-weight: 700;
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ws-article-read i { transition: transform .3s; }
.ws-article-card:hover .ws-article-read i { transform: translateX(4px); }
.ws-load-more-wrap { text-align: center; margin-top: 50px; }

/* WHY */
.ws-why { padding: 100px 0; background: linear-gradient(180deg, var(--ws-bg-2) 0%, var(--ws-bg) 100%); }
.ws-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.ws-why-item {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--ws-line);
  border-radius: var(--ws-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all .3s;
}
.ws-why-item:hover {
  transform: translateY(-5px);
  border-color: rgba(242,5,48,.4);
  background: rgba(242,5,48,.05);
}
.ws-why-item i {
  font-size: 36px;
  background: var(--ws-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.ws-why-item h4 { font-family: var(--ws-font-display); font-size: 1.05rem; margin-bottom: 10px; }
.ws-why-item p { color: var(--ws-text-dim); font-size: .9rem; }

/* NEWSLETTER */
.ws-newsletter {
  padding: 80px 0;
  background: radial-gradient(circle at 10% 50%, rgba(242,5,48,.15), transparent 40%),
              radial-gradient(circle at 90% 50%, rgba(5,84,242,.15), transparent 40%),
              var(--ws-bg-2);
}
.ws-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.ws-newsletter-text h2 {
  font-family: var(--ws-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 10px 0;
  line-height: 1.2;
}
.ws-newsletter-text p { color: var(--ws-text-dim); }
.ws-newsletter-form {
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--ws-line);
  padding: 8px;
  border-radius: 14px;
}
.ws-newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 14px 16px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
}
.ws-newsletter-form .ws-btn { padding: 14px 24px; }

/* FOOTER */
.ws-footer {
  background: linear-gradient(180deg, var(--ws-bg-2) 0%, #02030F 100%);
  padding-top: 70px;
  border-top: 1px solid var(--ws-line);
}
.ws-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.ws-footer-brand h3 {
  font-family: var(--ws-font-display);
  font-weight: 900;
  letter-spacing: 3px;
  margin: 14px 0 10px;
  background: var(--ws-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ws-footer-brand p {
  color: var(--ws-text-dim);
  font-size: .92rem;
  max-width: 320px;
  margin-bottom: 20px;
}
.ws-footer-logo { width: 50px; border-radius: 8px; }
.ws-socials { display: flex; gap: 10px; }
.ws-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ws-text-dim);
  transition: all .25s;
}
.ws-socials a:hover {
  background: var(--ws-gradient-hot);
  color: #fff;
  transform: translateY(-3px);
}
.ws-footer-col h4 {
  font-family: var(--ws-font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}
.ws-footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--ws-gradient-brand);
}
.ws-footer-col ul li { margin-bottom: 10px; }
.ws-footer-col a {
  color: var(--ws-text-dim);
  font-size: .92rem;
  transition: all .2s;
}
.ws-footer-col a:hover { color: var(--ws-red); padding-left: 5px; }
.ws-footer-bottom {
  border-top: 1px solid var(--ws-line);
  padding: 20px 0;
}
.ws-footer-bottom .ws-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--ws-text-mute);
}

/* BACK TO TOP + TOAST */
.ws-back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ws-gradient-hot);
  color: #fff;
  font-size: 18px;
  box-shadow: var(--ws-shadow-red);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-back-top.visible { opacity: 1; visibility: visible; }
.ws-back-top:hover { transform: translateY(-3px); }
.ws-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(150px);
  background: var(--ws-gradient-brand);
  color: #fff;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.5);
  z-index: 200;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
  max-width: 90%;
}
.ws-toast.show { transform: translateX(-50%) translateY(0); }

/* ================================================================
   SINGLE ARTICLE PAGE STYLES
   ================================================================ */
.ws-article-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  border-bottom: 1px solid var(--ws-line);
}
.ws-article-hero-bg { position: absolute; inset: 0; z-index: 0; }
.ws-article-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(.3);
  transform: scale(1.1);
}
.ws-article-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(242,5,48,.25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(5,84,242,.3), transparent 55%),
    linear-gradient(180deg, rgba(5,6,26,.85) 0%, rgba(5,6,26,.98) 100%);
}
.ws-article-hero .ws-container { position: relative; z-index: 2; }
.ws-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ws-text-mute);
  margin-bottom: 24px;
}
.ws-breadcrumb a { color: var(--ws-text-dim); transition: color .2s; }
.ws-breadcrumb a:hover { color: var(--ws-red); }
.ws-breadcrumb i { font-size: 9px; color: var(--ws-text-mute); }
.ws-breadcrumb span { color: #fff; font-weight: 500; }
.ws-article-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.ws-article-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
}
.ws-article-hero-title {
  font-family: var(--ws-font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 22px;
  max-width: 920px;
  color: #fff;
}
.ws-article-hero-excerpt {
  color: var(--ws-text-dim);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  max-width: 780px;
  margin-bottom: 36px;
}
.ws-article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--ws-line);
  border-radius: var(--ws-radius);
  backdrop-filter: blur(10px);
}
.ws-author { display: flex; align-items: center; gap: 14px; }
.ws-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ws-gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: var(--ws-shadow-red);
  flex-shrink: 0;
  overflow: hidden;
}
.ws-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.ws-author-info { display: flex; flex-direction: column; line-height: 1.3; }
.ws-author-info strong { color: #fff; font-size: 14px; }
.ws-author-info span { color: var(--ws-text-mute); font-size: 12px; }
.ws-article-meta-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--ws-text-dim);
}
.ws-article-meta-stats i { color: var(--ws-red); margin-right: 4px; }

.ws-article-main {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, var(--ws-bg) 0%, var(--ws-bg-2) 100%);
}
.ws-article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}
.ws-article-content {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ws-text);
  background: rgba(255,255,255,.02);
  padding: 40px;
  border-radius: var(--ws-radius);
  border: 1px solid var(--ws-line);
  max-width: 100%;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}
.ws-article-content * { max-width: 100%; }
.ws-article-content h2 {
  font-family: var(--ws-font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  margin: 40px 0 18px;
  line-height: 1.2;
  color: #fff;
  padding-top: 20px;
  border-top: 1px solid var(--ws-line);
}
.ws-article-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.ws-article-content h2::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 26px;
  background: var(--ws-gradient-brand);
  border-radius: 3px;
  margin-right: 14px;
  vertical-align: middle;
  transform: translateY(-3px);
}
.ws-article-content h3 {
  font-family: var(--ws-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 32px 0 14px;
  color: #fff;
}
.ws-article-content p { margin-bottom: 20px; color: var(--ws-text-dim); }
.ws-article-content p strong { color: #fff; }
.ws-article-content a {
  color: var(--ws-red);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.ws-article-content a:hover { color: #ff4d70; }

/* Article elements */
.ws-article-figure { margin: 0 0 30px; border-radius: var(--ws-radius); overflow: hidden; border: 1px solid var(--ws-line); }
.ws-article-figure img { width: 100%; height: auto; display: block; }
.ws-article-figure figcaption {
  padding: 12px 16px;
  background: var(--ws-bg-3);
  color: var(--ws-text-mute);
  font-size: 13px;
  text-align: center;
  font-style: italic;
}

.ws-toc-mobile {
  display: none;
  background: var(--ws-bg-3);
  border: 1px solid var(--ws-line);
  border-radius: var(--ws-radius);
  padding: 14px 18px;
  margin-bottom: 30px;
}
.ws-toc-mobile summary {
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  font-family: var(--ws-font-display);
  letter-spacing: 1px;
}
.ws-toc-mobile summary i { color: var(--ws-red); margin-right: 8px; }
.ws-toc-mobile ol { list-style: decimal inside; margin-top: 14px; color: var(--ws-text-dim); }
.ws-toc-mobile ol li { padding: 4px 0; }
.ws-toc-mobile a { color: var(--ws-text-dim); }
.ws-toc-mobile a:hover { color: var(--ws-red); }

.ws-check-list { list-style: none; padding: 0; margin: 20px 0 30px; }
.ws-check-list li {
  padding: 10px 0 10px 36px;
  position: relative;
  color: var(--ws-text-dim);
  border-bottom: 1px solid var(--ws-line);
}
.ws-check-list li:last-child { border-bottom: none; }
.ws-check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ws-gradient-brand);
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-check-list strong { color: #fff; }

.ws-callout {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  border-radius: var(--ws-radius);
  margin: 28px 0;
  border-left: 4px solid;
}
.ws-callout i { font-size: 22px; flex-shrink: 0; padding-top: 2px; }
.ws-callout strong { display: block; color: #fff; margin-bottom: 4px; font-size: 15px; }
.ws-callout p { margin: 0 !important; color: var(--ws-text-dim); font-size: .98rem; line-height: 1.6; }
.ws-callout-info { background: rgba(5,84,242,.08); border-left-color: var(--ws-blue); }
.ws-callout-info i { color: var(--ws-blue); }
.ws-callout-warn { background: rgba(255,184,77,.08); border-left-color: #ffb84d; }
.ws-callout-warn i { color: #ffb84d; }

.ws-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 28px 0;
  border-radius: var(--ws-radius);
  border: 1px solid var(--ws-line);
  max-width: 100%;
}
.ws-table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 480px; }
.ws-table thead { background: var(--ws-gradient-cool); }
.ws-table th {
  padding: 14px 16px;
  text-align: left;
  color: #fff;
  font-family: var(--ws-font-display);
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
}
.ws-table td { padding: 14px 16px; border-bottom: 1px solid var(--ws-line); color: var(--ws-text-dim); }
.ws-table tbody tr:last-child td { border-bottom: none; }
.ws-table tbody tr:hover { background: rgba(255,255,255,.03); }
.ws-table td strong { color: var(--ws-red); }

.ws-quote {
  background: linear-gradient(135deg, rgba(242,5,48,.08), rgba(5,84,242,.08));
  border-left: 4px solid var(--ws-red);
  padding: 28px 32px;
  border-radius: var(--ws-radius);
  margin: 32px 0;
  position: relative;
}
.ws-quote i.fa-quote-left { color: var(--ws-red); font-size: 24px; margin-bottom: 10px; display: block; }
.ws-quote p { font-size: 1.2rem; font-style: italic; color: #fff !important; line-height: 1.6; margin-bottom: 12px !important; }
.ws-quote cite {
  color: var(--ws-text-mute);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ws-pros-cons {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
  padding: 0;
}
.ws-pros, .ws-cons {
  padding: 22px;
  border-radius: var(--ws-radius);
  border: 1px solid var(--ws-line);
}
.ws-pros { background: rgba(76,217,100,.05); border-color: rgba(76,217,100,.25); }
.ws-cons { background: rgba(255,85,119,.05); border-color: rgba(255,85,119,.25); }
.ws-pros h4, .ws-cons h4 { font-family: var(--ws-font-display); font-size: 1rem; margin-bottom: 14px; letter-spacing: 1px; }
.ws-pros h4 { color: #4cd964; }
.ws-cons h4 { color: #ff5577; }
.ws-pros h4 i, .ws-cons h4 i { margin-right: 8px; }
.ws-pros ul, .ws-cons ul { list-style: none; padding: 0; }
.ws-pros ul li, .ws-cons ul li { padding: 8px 0 8px 24px; position: relative; color: var(--ws-text-dim); font-size: .95rem; }
.ws-pros ul li::before { content: '+'; position: absolute; left: 4px; top: 6px; color: #4cd964; font-weight: 900; font-size: 18px; }
.ws-cons ul li::before { content: '−'; position: absolute; left: 4px; top: 6px; color: #ff5577; font-weight: 900; font-size: 18px; }

.ws-rating-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  padding: 32px;
  margin: 40px 0 30px;
  background: linear-gradient(135deg, rgba(242,5,48,.1), rgba(5,84,242,.1));
  border: 1px solid var(--ws-line);
  border-radius: var(--ws-radius-lg);
  position: relative;
  overflow: hidden;
}
.ws-rating-score { text-align: center; padding: 20px; background: var(--ws-bg-2); border-radius: var(--ws-radius); min-width: 140px; }
.ws-rating-number {
  display: block;
  font-family: var(--ws-font-display);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  background: var(--ws-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.ws-rating-label { display: block; font-size: 12px; color: var(--ws-text-mute); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.ws-rating-stars { color: #ffb84d; font-size: 16px; }
.ws-rating-cta h3 { font-family: var(--ws-font-display); color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.ws-rating-cta p { color: var(--ws-text-dim); margin-bottom: 16px !important; }

.ws-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 40px 0 24px;
  padding-top: 28px;
  border-top: 1px solid var(--ws-line);
}
.ws-tags-label { color: var(--ws-text-mute); font-size: 14px; margin-right: 8px; }
.ws-tags-label i { color: var(--ws-red); }
.ws-tag {
  padding: 6px 14px;
  background: rgba(5,84,242,.1);
  border: 1px solid rgba(5,84,242,.3);
  border-radius: 20px;
  color: var(--ws-text-dim) !important;
  font-size: 12px;
  transition: all .25s;
}
.ws-tag:hover { background: var(--ws-blue); color: #fff !important; transform: translateY(-2px); }

.ws-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px;
  background: rgba(255,255,255,.03);
  border-radius: var(--ws-radius);
  border: 1px solid var(--ws-line);
}
.ws-share-label { color: var(--ws-text-dim); font-weight: 500; font-size: 14px; }
.ws-share-buttons { display: flex; gap: 8px; }
.ws-share-buttons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ws-text-dim);
  transition: all .25s;
}
.ws-share-buttons a:hover { background: var(--ws-gradient-hot); color: #fff; transform: translateY(-3px); }

/* SIDEBAR */
.ws-article-sidebar { position: sticky; top: 90px; }
.ws-sidebar-widget {
  background: var(--ws-bg-3);
  border: 1px solid var(--ws-line);
  border-radius: var(--ws-radius);
  padding: 22px;
  margin-bottom: 24px;
}
.ws-sidebar-widget h4 {
  font-family: var(--ws-font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ws-line);
}
.ws-sidebar-widget h4 i { color: var(--ws-red); margin-right: 8px; }
.ws-toc-desktop ol { list-style: none; counter-reset: toc; padding: 0; }
.ws-toc-desktop ol li { counter-increment: toc; padding: 10px 0; border-bottom: 1px solid var(--ws-line); }
.ws-toc-desktop ol li:last-child { border-bottom: none; }
.ws-toc-desktop ol li::before {
  content: "0" counter(toc);
  color: var(--ws-red);
  font-family: var(--ws-font-display);
  font-weight: 900;
  margin-right: 10px;
}
.ws-toc-desktop a { color: var(--ws-text-dim); font-size: .95rem; }
.ws-toc-desktop a:hover { color: var(--ws-red); }
.ws-related-list { list-style: none; padding: 0; }
.ws-related-list li { margin-bottom: 14px; }
.ws-related-list a {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  transition: background .25s;
}
.ws-related-list a:hover { background: rgba(255,255,255,.04); }
.ws-related-list img { width: 80px; height: 60px; border-radius: 8px; object-fit: cover; }
.ws-related-cat {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ws-related-list strong {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.3;
}
.ws-related-list a:hover strong { color: var(--ws-red); }

.ws-sidebar-newsletter { background: linear-gradient(135deg, rgba(242,5,48,.12), rgba(5,84,242,.12)); }
.ws-sidebar-newsletter p { color: var(--ws-text-dim); font-size: .9rem; margin-bottom: 14px; }
.ws-sidebar-newsletter form { display: flex; gap: 6px; }
.ws-sidebar-newsletter input {
  flex: 1;
  padding: 10px 12px;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--ws-line);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  outline: none;
}
.ws-sidebar-newsletter .ws-btn { padding: 10px 14px; font-size: 12px; }

/* ================================================================
   ABOUT / TEAM PAGE STYLES
   ================================================================ */
.ws-page-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--ws-line);
  text-align: center;
}
.ws-page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.ws-page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(242,5,48,.3), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(5,84,242,.35), transparent 55%),
    linear-gradient(180deg, rgba(5,6,26,.7) 0%, rgba(5,6,26,.98) 100%);
}
.ws-page-hero .ws-container { position: relative; z-index: 2; }
.ws-page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(242,5,48,.15);
  border: 1px solid rgba(242,5,48,.4);
  font-family: var(--ws-font-sub);
  letter-spacing: 4px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 24px;
}
.ws-page-hero-title {
  font-family: var(--ws-font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.ws-page-hero-desc {
  font-size: 1.15rem;
  color: var(--ws-text-dim);
  max-width: 700px;
  margin: 0 auto;
}

.ws-mission { padding: 100px 0; background: radial-gradient(ellipse at top, var(--ws-bg-2), var(--ws-bg)); }
.ws-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ws-mission-text h2 { font-family: var(--ws-font-display); font-weight: 900; font-size: clamp(2rem,3.5vw,3rem); line-height: 1.1; margin-bottom: 22px; }
.ws-mission-text p { color: var(--ws-text-dim); font-size: 1.05rem; line-height: 1.8; margin-bottom: 16px; }
.ws-mission-text p strong { color: #fff; }
.ws-mission-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ws-stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--ws-line);
  border-radius: var(--ws-radius);
  padding: 28px 20px;
  text-align: center;
  transition: all .3s;
}
.ws-stat-card:hover { border-color: rgba(242,5,48,.4); background: rgba(242,5,48,.05); transform: translateY(-4px); }
.ws-stat-card strong {
  font-family: var(--ws-font-display);
  font-size: 2.2rem;
  font-weight: 900;
  display: block;
  background: var(--ws-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.ws-stat-card span { font-size: 13px; letter-spacing: 2px; color: var(--ws-text-mute); text-transform: uppercase; }

.ws-team { padding: 100px 0; background: linear-gradient(180deg, var(--ws-bg) 0%, var(--ws-bg-2) 100%); }
.ws-team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.ws-team-card {
  background: var(--ws-bg-3);
  border: 1px solid var(--ws-line);
  border-radius: var(--ws-radius-lg);
  padding: 32px;
  text-align: center;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
.ws-team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ws-gradient-brand);
  transform: scaleX(0);
  transition: transform .4s;
  transform-origin: left;
}
.ws-team-card:hover::before { transform: scaleX(1); }
.ws-team-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px -16px rgba(5,84,242,.3); }
.ws-team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--ws-gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: var(--ws-shadow-red);
}
.ws-team-card h3 { font-family: var(--ws-font-display); font-size: 1.2rem; margin-bottom: 6px; color: #fff; }
.ws-team-role {
  color: var(--ws-red);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}
.ws-team-bio { color: var(--ws-text-dim); font-size: .92rem; margin-bottom: 18px; line-height: 1.6; }
.ws-team-socials { display: flex; gap: 8px; justify-content: center; }
.ws-team-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ws-text-dim);
  transition: all .3s;
}
.ws-team-socials a:hover { background: var(--ws-gradient-hot); color: #fff; transform: translateY(-3px); }

.ws-values { padding: 100px 0; background: var(--ws-bg-2); }
.ws-values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.ws-value-item {
  padding: 32px 26px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--ws-line);
  border-radius: var(--ws-radius);
  text-align: center;
  transition: all .3s;
}
.ws-value-item:hover { transform: translateY(-6px); border-color: rgba(5,84,242,.4); background: rgba(5,84,242,.05); }
.ws-value-item i {
  font-size: 40px;
  background: var(--ws-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
.ws-value-item h4 { font-family: var(--ws-font-display); font-size: 1.05rem; margin-bottom: 10px; }
.ws-value-item p { color: var(--ws-text-dim); font-size: .95rem; line-height: 1.6; }

/* CONTACT PAGE */
.ws-contact { padding: 80px 0 100px; background: linear-gradient(180deg, var(--ws-bg) 0%, var(--ws-bg-2) 100%); }
.ws-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.ws-contact-info h3 { font-family: var(--ws-font-display); font-size: 1.6rem; margin-bottom: 20px; color: #fff; }
.ws-contact-info p { color: var(--ws-text-dim); margin-bottom: 30px; line-height: 1.7; }
.ws-contact-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.ws-contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--ws-gradient-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.ws-contact-item strong { display: block; color: #fff; margin-bottom: 3px; font-size: 15px; }
.ws-contact-item span { color: var(--ws-text-dim); font-size: 14px; }
.ws-contact-form {
  background: var(--ws-bg-3);
  border: 1px solid var(--ws-line);
  border-radius: var(--ws-radius-lg);
  padding: 36px;
}
.ws-form-row { margin-bottom: 18px; }
.ws-form-row label { display: block; margin-bottom: 8px; color: #fff; font-weight: 500; font-size: 14px; }
.ws-form-row input, .ws-form-row textarea, .ws-form-row select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--ws-line);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: all .25s;
}
.ws-form-row input:focus, .ws-form-row textarea:focus, .ws-form-row select:focus {
  border-color: var(--ws-blue);
  background: rgba(5,84,242,.05);
  box-shadow: 0 0 0 3px rgba(5,84,242,.15);
}
.ws-form-row textarea { min-height: 140px; resize: vertical; }
.ws-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* Contact Form 7 integration */
.wpcf7 .ws-form-row input,
.wpcf7 .ws-form-row textarea,
.wpcf7 .ws-form-row select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--ws-line);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
}
.wpcf7-response-output {
  border-radius: 10px !important;
  padding: 12px 16px !important;
  color: var(--ws-text-dim) !important;
}

/* LEGAL PAGES */
.ws-legal { padding: 80px 0 100px; background: linear-gradient(180deg, var(--ws-bg) 0%, var(--ws-bg-2) 100%); }
.ws-legal-container { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.ws-legal-content {
  background: rgba(255,255,255,.02);
  border: 1px solid var(--ws-line);
  border-radius: var(--ws-radius);
  padding: 48px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--ws-text-dim);
}
.ws-legal-content h2 {
  font-family: var(--ws-font-display);
  font-size: 1.6rem;
  color: #fff;
  margin: 36px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--ws-line);
}
.ws-legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.ws-legal-content h3 { font-family: var(--ws-font-display); font-size: 1.2rem; color: #fff; margin: 24px 0 12px; }
.ws-legal-content p { margin-bottom: 16px; }
.ws-legal-content ul { margin: 0 0 20px 22px; list-style: disc; }
.ws-legal-content ul li { margin-bottom: 8px; }
.ws-legal-content a { color: var(--ws-red); text-decoration: underline; }
.ws-legal-content strong { color: #fff; }
.ws-legal-updated {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(5,84,242,.12);
  border: 1px solid rgba(5,84,242,.3);
  border-radius: 20px;
  font-size: 13px;
  color: var(--ws-text-dim);
  margin-bottom: 28px;
}
.ws-legal-updated i { color: var(--ws-blue); margin-right: 6px; }

/* AFFILIATE BANNERS */
.ws-aff-banner {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  margin: 30px 0;
  border-radius: var(--ws-radius);
  background: linear-gradient(135deg, rgba(242,5,48,.15), rgba(5,84,242,.15));
  border: 1px solid rgba(242,5,48,.35);
  position: relative;
  overflow: hidden;
}
.ws-aff-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ws-gradient-hot);
}
.ws-aff-banner-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--ws-gradient-hot);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: var(--ws-shadow-red);
}
.ws-aff-banner-text { flex: 1; }
.ws-aff-banner-text strong { display: block; color: #fff; font-family: var(--ws-font-display); font-size: 1.05rem; margin-bottom: 3px; }
.ws-aff-banner-text span { color: var(--ws-text-dim); font-size: .9rem; }
.ws-aff-banner .ws-btn { flex-shrink: 0; padding: 12px 22px; font-size: 13px; }

.ws-aff-disclosure {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 18px;
  margin: 0 0 24px;
  background: rgba(255,184,77,.08);
  border-left: 3px solid #ffb84d;
  border-radius: 8px;
  font-size: .88rem;
  color: var(--ws-text-dim);
}
.ws-aff-disclosure i { color: #ffb84d; font-size: 16px; flex-shrink: 0; }
.ws-aff-disclosure strong { color: #fff; }

.ws-aff-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  margin: 24px 0;
  background: var(--ws-bg-3);
  border: 1px solid var(--ws-line);
  border-radius: var(--ws-radius);
  transition: all .3s;
  text-decoration: none !important;
  color: inherit !important;
}
.ws-aff-card:hover { border-color: rgba(242,5,48,.4); transform: translateY(-2px); }
.ws-aff-card img { width: 140px; height: 100px; object-fit: cover; border-radius: 10px; }
.ws-aff-card-body h4 { font-family: var(--ws-font-display); color: #fff; font-size: 1.1rem; margin-bottom: 6px; }
.ws-aff-card-body p { color: var(--ws-text-dim) !important; font-size: .9rem; margin-bottom: 8px !important; }
.ws-aff-card-price { color: var(--ws-red); font-family: var(--ws-font-display); font-weight: 900; font-size: 1.2rem; }
.ws-aff-card-price small { color: var(--ws-text-mute); font-weight: 400; font-size: .75rem; text-decoration: line-through; margin-left: 6px; }

/* WordPress specific */
.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
}
.alignleft { float: left; margin-right: 20px; margin-bottom: 10px; }
.alignright { float: right; margin-left: 20px; margin-bottom: 10px; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.pagination { display: flex; gap: 8px; justify-content: center; margin: 40px 0; flex-wrap: wrap; }
.pagination .page-numbers {
  padding: 10px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--ws-line);
  border-radius: 10px;
  color: var(--ws-text-dim);
  transition: all .25s;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--ws-gradient-hot);
  color: #fff;
  border-color: transparent;
}

/* SEO Keywords Meta Box highlight */
.ws-keywords-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--ws-line);
}
.ws-keyword-tag {
  padding: 4px 12px;
  background: rgba(5,84,242,.12);
  border: 1px solid rgba(5,84,242,.3);
  border-radius: 20px;
  font-size: 11px;
  color: var(--ws-text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  body { font-size: 17px; }
  .ws-container { padding: 0 18px; }
  .ws-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--ws-bg-2);
    flex-direction: column;
    padding: 90px 30px 30px;
    gap: 10px;
    transition: right .4s cubic-bezier(.2,.8,.2,1);
    border-left: 1px solid var(--ws-line);
    z-index: 99;
  }
  .ws-nav.active { right: 0; }
  .ws-nav li { width: 100%; }
  .ws-nav a, .ws-nav-link { width: 100%; padding: 14px 18px; font-size: 17px; }
  .ws-menu-toggle { display: flex; }
  .ws-logo-sub { display: none; }
  .ws-newsletter-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .ws-newsletter-form { flex-direction: column; }
  .ws-newsletter-form .ws-btn { width: 100%; justify-content: center; }
  .ws-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; padding: 0 4px 50px; }
  .ws-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .ws-topbar-text { display: none; }
  .ws-topbar-inner { justify-content: center; }
  .ws-article-layout { grid-template-columns: 1fr; gap: 30px; }
  .ws-article-content { padding: 28px; font-size: 1.05rem; }
  .ws-article-content h2 { font-size: 1.7rem; }
  .ws-toc-desktop { display: none; }
  .ws-toc-mobile { display: block; }
  .ws-article-sidebar { position: static; }
  .ws-rating-card { grid-template-columns: 1fr; text-align: center; padding: 24px; }
  .ws-rating-score { margin: 0 auto; }
  .ws-article-hero-meta { flex-direction: column; align-items: flex-start; }
  .ws-mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .ws-contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .ws-aff-card { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .ws-aff-card img { width: 100%; max-width: 280px; height: 160px; margin: 0 auto; }
  .ws-aff-banner { flex-direction: column; text-align: center; padding: 18px 16px; }
  .ws-articles-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .ws-container { padding: 0 14px; }
  .ws-footer-grid { grid-template-columns: 1fr; gap: 30px; padding: 0 4px 40px; }
  .ws-hero { min-height: auto; padding: 50px 0 60px; }
  .ws-hero-title { font-size: clamp(2rem, 8vw, 3rem); line-height: 1.1; }
  .ws-hero-desc { font-size: .98rem; }
  .ws-hero-stats { padding: 18px 12px; gap: 12px; }
  .ws-hero-stats .ws-stat strong { font-size: 1.4rem; }
  .ws-hero-stats .ws-stat span { font-size: 10px; letter-spacing: 1px; }
  .ws-btn { padding: 13px 20px; font-size: 14px; }
  .ws-categories, .ws-why, .ws-articles, .ws-mission, .ws-team, .ws-values, .ws-legal { padding: 60px 0; }
  .ws-back-top { bottom: 18px; right: 18px; width: 44px; height: 44px; font-size: 16px; }
  .ws-article-hero { padding: 50px 0 40px; }
  .ws-article-hero-title { font-size: clamp(1.5rem, 6vw, 2rem); line-height: 1.2; }
  .ws-article-hero-excerpt { font-size: 1rem; }
  .ws-article-hero-meta { padding: 16px; gap: 14px; }
  .ws-article-main { padding: 40px 0 60px; }
  .ws-article-content { padding: 18px 16px; font-size: .98rem; line-height: 1.7; border-radius: 10px; }
  .ws-article-content h2 { font-size: 1.35rem; margin: 28px 0 14px; padding-top: 18px; }
  .ws-article-content h2::before { width: 4px; height: 20px; margin-right: 10px; }
  .ws-article-content h3 { font-size: 1.12rem; margin: 22px 0 10px; }
  .ws-article-content p { font-size: .98rem; margin-bottom: 16px; }
  .ws-check-list li { padding: 8px 0 8px 32px; font-size: .95rem; }
  .ws-check-list li::before { width: 20px; height: 20px; font-size: 10px; }
  .ws-callout { flex-direction: column; gap: 10px; padding: 16px; margin: 22px 0; }
  .ws-quote { padding: 20px 18px; margin: 22px 0; }
  .ws-quote p { font-size: 1rem; }
  .ws-table { font-size: .85rem; min-width: 420px; }
  .ws-table th, .ws-table td { padding: 10px 12px; }
  .ws-pros-cons { grid-template-columns: 1fr; gap: 14px; margin: 22px 0; }
  .ws-rating-card { padding: 20px; margin: 28px 0 20px; gap: 18px; }
  .ws-rating-score { padding: 16px; min-width: auto; width: 100%; }
  .ws-rating-number { font-size: 2.6rem; }
  .ws-share { flex-direction: column; text-align: center; padding: 18px; }
  .ws-article-tags { margin: 28px 0 18px; padding-top: 20px; }
  .ws-aff-disclosure { flex-direction: column; text-align: center; padding: 12px; font-size: .82rem; }
  .ws-aff-banner { padding: 16px 14px; gap: 12px; }
  .ws-aff-banner-icon { width: 44px; height: 44px; font-size: 18px; }
  .ws-aff-banner .ws-btn { width: 100%; justify-content: center; padding: 12px 20px; }
  .ws-aff-card { padding: 16px; margin: 18px 0; }
  .ws-aff-card img { height: 140px; max-width: 100%; }
  .ws-aff-card .ws-btn { width: 100%; justify-content: center; }
  .ws-page-hero { padding: 70px 0 50px; }
  .ws-page-hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .ws-page-hero-desc { font-size: 1rem; }
  .ws-legal-content { padding: 22px 18px; font-size: .95rem; }
  .ws-legal-content h2 { font-size: 1.25rem; margin: 28px 0 12px; }
  .ws-contact-form { padding: 22px 18px; }
  .ws-form-row-2 { grid-template-columns: 1fr; gap: 0; }
  .ws-categories-grid { grid-template-columns: 1fr; gap: 20px; }
  .ws-category-card { min-height: auto; }
  .ws-articles-grid { grid-template-columns: 1fr; gap: 20px; }
  .ws-newsletter { padding: 60px 0; }
  .ws-filter-bar { padding: 12px; gap: 8px; }
  .ws-filter-chip { padding: 8px 14px; font-size: 12px; }
  .ws-article-body { padding: 18px; }
  .ws-article-title { font-size: 1.05rem; }
  .ws-marquee { padding: 14px 0; }
  .ws-marquee-track span { font-size: 14px; letter-spacing: 2px; }
}

@media (max-width: 380px) {
  .ws-container { padding: 0 12px; }
  .ws-article-content { padding: 14px 12px; }
  .ws-hero-cta { flex-direction: column; width: 100%; }
  .ws-hero-cta .ws-btn { width: 100%; justify-content: center; }
  .ws-aff-card { padding: 14px 10px; }
  .ws-table { min-width: 360px; font-size: .8rem; }
  .ws-rating-number { font-size: 2.2rem; }
  .ws-legal-content { padding: 18px 14px; }
  .ws-logo-main { font-size: 15px; letter-spacing: 1px; }
}
