*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; font-size: 14px; color: #222; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 28px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.btn-white { background: #fff; color: #222; border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; }
.btn-green { background: #55E617; color: #fff; border-color: #55E617; }
.btn-green:hover { background: #46c412; border-color: #46c412; }
.btn-outline { background: transparent; color: #222; border-color: #222; }
.btn-outline:hover { background: #222; color: #fff; }

/* TOP BAR */
.topbar {
  background: #fff;
  color: #444;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 7px 0;
  border-bottom: 1px solid #e5e5e5;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: #444; transition: color 0.2s; }
.topbar a:hover { color: #55E617; }
.topbar-center { flex: 1; text-align: center; }
.topbar-right { display: flex; gap: 16px; }

/* NAV */
nav {
  background: #111;
  border-bottom: 3px solid #55E617;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 20px;
}
.nav-logo img { height: 52px; width: auto; }
.logo-fallback {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 1px;
  color: #222;
  display: none;
}
.logo-fallback span { color: #55E617; }

.nav-menu {
  display: flex;
  list-style: none;
  align-items: stretch;
  height: 100%;
  flex: 1;
  justify-content: center;
}
.nav-menu > li { position: relative; display: flex; align-items: center; }
.nav-menu > li > a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 15px;
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-menu > li > a:hover { color: #55E617; border-bottom-color: transparent; }
.nav-menu > li > a.sale-link { color: #c0392b; }
.nav-menu > li > a.sale-link:hover { border-bottom-color: transparent; }

.nav-drop {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-top: 3px solid #55E617;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 100;
}
.nav-menu > li:hover .nav-drop { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-drop a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.nav-drop a:hover { background: #f5f5f5; color: #55E617; padding-left: 26px; }
.nav-drop a:last-child { border-bottom: none; }

.nav-right { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.nav-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Open Sans', sans-serif;
  position: relative;
}
.nav-icon-btn:hover { color: #55E617; }
.nav-icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: 2px; right: 4px;
  background: #55E617;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 15px; height: 15px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* SEARCH */
.search-bar { background: #f2f2f2; border-bottom: 1px solid #ddd; padding: 12px 0; display: none; }
.search-bar.open { display: block; }
.search-form { display: flex; max-width: 600px; margin: 0 auto; }
.search-form input {
  flex: 1;
  border: 1px solid #ccc;
  border-right: none;
  padding: 10px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  outline: none;
}
.search-form input:focus { border-color: #55E617; }
.search-form button {
  background: #55E617;
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

/* PROMO BAR */
.promo-bar {
  background: #55E617;
  color: #fff;
  text-align: center;
  padding: 9px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.promo-bar a { color: #fff; text-decoration: underline; margin-left: 8px; }

/* HERO SLIDER */
.hero { position: relative; overflow: hidden; background: #222; }
.slide { display: none; position: relative; }
.slide.active { display: block; animation: fadeSlide 0.5s ease; }
@keyframes fadeSlide { from { opacity: 0; } to { opacity: 1; } }
.slide-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.05) 100%);
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 72px;
  max-width: 600px;
}
.slide-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #55E617;
  margin-bottom: 12px;
}
.slide-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  text-transform: uppercase;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 14px;
}
.slide-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 300;
  max-width: 440px;
}
.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.25);
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 5;
}
.slider-arrow:hover { background: rgba(0,0,0,0.5); }
.slider-prev { left: 14px; }
.slider-next { right: 14px; }
.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: background 0.2s; }
.dot.active { background: #fff; }

/* FEAT ICONS */
.feat-strip { background: #f4f4f4; border-bottom: 1px solid #e5e5e5; }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feat-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 22px;
  border-right: 1px solid #e0e0e0;
}
.feat-item:last-child { border-right: none; }
.feat-icon { font-size: 26px; flex-shrink: 0; }
.feat-text strong { display: block; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; color: #222; }
.feat-text span { font-size: 11px; color: #888; }

/* SECTIONS */
.section-hd {
  text-align: center;
  margin-bottom: 32px;
}
.section-hd h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.section-rule { width: 46px; height: 3px; background: #55E617; margin: 0 auto 12px; }
.section-hd p { font-size: 13px; color: #888; }

/* CATEGORIES */
.categories { padding: 54px 0; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cat-block {
  position: relative;
  overflow: hidden;
  display: block;
  background: #ddd;
}
.cat-block img {
  width: 100%;
  aspect-ratio: 1.35/1;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.cat-block:hover img { transform: scale(1.05); }
.cat-block-lbl {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  padding: 30px 14px 13px;
  text-align: center;
}
.cat-block-lbl span {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
}

/* PROMO STRIP */
.promo-strip {
  background: #1b1b1b;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-strip-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1473496169904-658ba7574b0d?w=1400&q=60') center/cover no-repeat;
  opacity: 0.18;
}
.promo-strip-inner { position: relative; color: #fff; }
.promo-strip-inner h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.promo-strip-inner p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 28px;
}

/* PRODUCTS */
.products { padding: 54px 0; background: #fafafa; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.product-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
}
.product-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.1); transform: translateY(-2px); }
.product-img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-flag {
  position: absolute;
  top: 10px; left: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  color: #fff;
}
.flag-new { background: #55E617; }
.flag-sale { background: #c0392b; }
.flag-best { background: #e67e22; }
.product-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-cat { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: #55E617; font-weight: 600; margin-bottom: 5px; }
.product-name { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 16px; text-transform: uppercase; letter-spacing: 0.5px; color: #222; margin-bottom: 6px; line-height: 1.2; }
.product-desc { font-size: 12px; color: #999; line-height: 1.6; flex: 1; margin-bottom: 14px; }
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}
.product-price { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; color: #222; }
.product-price .was { font-size: 12px; color: #bbb; text-decoration: line-through; font-weight: 400; display: block; }
.atc-btn {
  background: #55E617; color: #fff; border: none;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 20px;
  transition: background 0.2s;
}
.atc-btn:hover { background: #46c412; }

/* GUARANTEE */
.guarantee { background: #55E617; padding: 34px 0; }
.guarantee-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.guarantee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.22);
  color: #fff;
}
.guarantee-item:last-child { border-right: none; }
.g-icon { font-size: 28px; }
.g-text strong { display: block; font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; text-transform: uppercase; }
.g-text span { font-size: 12px; opacity: 0.85; }

/* TESTIMONIALS */
.testimonials { padding: 54px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi-card {
  background: #f8f8f8;
  border: 1px solid #eaeaea;
  border-top: 3px solid #55E617;
  padding: 26px;
}
.stars { color: #e6a817; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text { font-size: 13px; line-height: 1.8; color: #555; font-style: italic; margin-bottom: 18px; }
.testi-byline { display: flex; align-items: center; gap: 11px; }
.testi-init {
  width: 38px; height: 38px;
  background: #55E617; color: #fff;
  font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; text-transform: uppercase; color: #222; }
.testi-loc { font-size: 11px; color: #aaa; }

/* SIGNUP */
.signup { background: #1a1a1a; padding: 50px 0; text-align: center; }
.signup h2 { font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 8px; }
.signup p { font-size: 13px; color: #999; margin-bottom: 26px; }
.signup-form { display: flex; max-width: 440px; margin: 0 auto; }
.signup-form input {
  flex: 1; background: #fff; border: none;
  padding: 13px 16px;
  font-family: 'Open Sans', sans-serif; font-size: 13px;
  outline: none;
}
.signup-form button {
  background: #55E617; color: #fff; border: none;
  padding: 13px 22px;
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s;
}
.signup-form button:hover { background: #46c412; }

/* FOOTER */
footer { background: #111; padding: 50px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2a2a2a;
}
.footer-logo img { height: 48px; width: auto; margin-bottom: 16px; }
.footer-logo-fallback { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 22px; color: #fff; margin-bottom: 16px; display: none; }
.footer-logo-fallback span { color: #55E617; }
.footer-about { font-size: 13px; line-height: 1.8; color: #777; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.social-link {
  width: 32px; height: 32px; border: 1px solid #333; color: #777;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.social-link:hover { border-color: #55E617; color: #55E617; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: #fff; margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { font-size: 13px; color: #777; transition: color 0.2s; }
.footer-col ul a:hover { color: #55E617; }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #555;
}
.footer-pay { display: flex; gap: 8px; align-items: center; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .slide-img { height: 440px; }
}
@media (max-width: 768px) {
  .topbar-inner { flex-direction: column; gap: 3px; }
  .topbar-right { justify-content: center; }
  .nav-menu { display: none; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-item:nth-child(2) { border-right: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-item:nth-child(2) { border-right: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .slide-img { height: 380px; }
  .slide-content { padding: 0 30px; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .guarantee-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .signup-form { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .slide-img { height: 300px; }
  .slide-title { font-size: 28px; }
}


/* ── FLASH MESSAGES ── */
.flash-wrap { position: fixed; top: 84px; right: 20px; z-index: 5000; width: 360px; }
.flash { padding: 13px 16px; margin-bottom: 10px; font-size: 13px; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.flash-success { background: #efffea; border: 1px solid #55E617; color: #2a6e00; }
.flash-error   { background: #fff0f0; border: 1px solid #c0392b; color: #7a1a0e; }
.flash-info    { background: #f0f8ff; border: 1px solid #2980b9; color: #1a4a6e; }
.flash-close   { background: none; border: none; font-size: 20px; cursor: pointer; padding: 0 4px; color: inherit; opacity: 0.6; margin-left: 10px; }
.flash-close:hover { opacity: 1; }

/* ── FORMS ── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #444; margin-bottom: 5px; }
.form-input, .form-select, .form-textarea { width: 100%; border: 1px solid #ddd; padding: 10px 13px; font-family: 'Open Sans', sans-serif; font-size: 13px; color: #222; outline: none; transition: border-color 0.2s; background: #fff; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: #55E617; }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23666' d='M5 6L0 0h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }

/* ── BUTTONS ── */
.submit-btn { background: #55E617; color: #111; border: 2px solid #55E617; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 11px 26px; cursor: pointer; transition: all 0.2s; }
.submit-btn:hover { background: #46c412; border-color: #46c412; }
.cancel-btn { background: transparent; color: #666; border: 2px solid #ccc; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 11px 18px; cursor: pointer; transition: all 0.2s; }
.cancel-btn:hover { border-color: #666; color: #333; }
.auth-btn { display: block; width: 100%; padding: 10px; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: all 0.2s; border: 2px solid transparent; margin-bottom: 7px; text-align: center; text-decoration: none; }
.auth-green { background: #55E617; color: #111; border-color: #55E617; }
.auth-green:hover { background: #46c412; border-color: #46c412; }
.auth-outline { background: transparent; color: #333; border-color: #ccc; }
.auth-outline:hover { border-color: #333; color: #111; }

/* ── BREADCRUMB ── */
.breadcrumb { background: #fff; border-bottom: 1px solid #eee; padding: 10px 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: 7px; font-size: 12px; color: #aaa; flex-wrap: wrap; }
.breadcrumb-inner a { color: #aaa; transition: color 0.2s; }
.breadcrumb-inner a:hover { color: #55E617; }
.breadcrumb-inner span { color: #333; font-weight: 600; }
.sep { color: #ccc; }

/* ── FORUM ── */
.forum-layout { display: grid; grid-template-columns: 1fr 260px; gap: 20px; align-items: start; }
.forum-header-box { background: #fff; border: 1px solid #e5e5e5; border-top: 3px solid #55E617; padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.forum-header-box h1 { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 28px; text-transform: uppercase; letter-spacing: 1px; color: #111; margin-bottom: 4px; }
.forum-header-box h1 span { color: #55E617; }
.forum-header-box p { font-size: 12px; color: #888; line-height: 1.6; max-width: 460px; }
.forum-stats { display: flex; gap: 0; border: 1px solid #e5e5e5; flex-shrink: 0; }
.forum-stat { padding: 12px 22px; text-align: center; border-right: 1px solid #e5e5e5; }
.forum-stat:last-child { border-right: none; }
.forum-stat-num { font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: 700; color: #55E617; line-height: 1; }
.forum-stat-label { font-size: 10px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
.new-thread-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px; background: #55E617; color: #111; border: none; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; margin-bottom: 0; text-decoration: none; }
.new-thread-btn:hover { background: #46c412; }
.forum-tabs { display: flex; background: #fff; border: 1px solid #e5e5e5; border-top: none; border-bottom: none; overflow-x: auto; }
.forum-tab { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 12px 18px; background: none; border: none; border-bottom: 3px solid transparent; cursor: pointer; color: #888; transition: all 0.2s; white-space: nowrap; text-decoration: none; display: inline-block; }
.forum-tab.active { color: #111; border-bottom-color: #55E617; }
.forum-tab:hover { color: #222; }
.section-label { background: #fff; border: 1px solid #e5e5e5; border-top: 3px solid #55E617; padding: 12px 16px; font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #111; display: flex; justify-content: space-between; align-items: center; }
.section-label a { font-size: 12px; color: #55E617; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.section-label span { font-size: 12px; color: #999; font-weight: 400; font-family: 'Open Sans', sans-serif; text-transform: none; letter-spacing: 0; }
.cat-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid #e5e5e5; border-top: none; }
.cat-row { border-bottom: 1px solid #f0f0f0; cursor: pointer; transition: background 0.15s; }
.cat-row:last-child { border-bottom: none; }
.cat-row:hover { background: #fafafa; }
.cat-icon-cell { width: 56px; text-align: center; padding: 16px 0 16px 14px; font-size: 24px; vertical-align: middle; }
.cat-info-cell { padding: 14px 16px; vertical-align: middle; }
.cat-name { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #111; margin-bottom: 3px; }
.cat-row:hover .cat-name { color: #55E617; }
.cat-name a { color: inherit; text-decoration: none; }
.cat-desc { font-size: 12px; color: #999; line-height: 1.5; }
.cat-count-cell { padding: 14px 20px; text-align: center; vertical-align: middle; border-left: 1px solid #f5f5f5; white-space: nowrap; }
.cat-count { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; color: #222; line-height: 1; }
.cat-count-lbl { font-size: 10px; color: #bbb; text-transform: uppercase; letter-spacing: 0.5px; }
.thread-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid #e5e5e5; border-top: none; }
.thread-row { border-bottom: 1px solid #f0f0f0; cursor: pointer; transition: background 0.15s; }
.thread-row:last-child { border-bottom: none; }
.thread-row:hover { background: #fafafa; }
.thread-row.pinned { border-left: 3px solid #55E617; }
.thread-row.hot { border-left: 3px solid #e67e22; }
.thread-avatar-cell { width: 60px; padding: 14px 10px 14px 14px; vertical-align: middle; }
.thread-av { width: 42px; height: 42px; border-radius: 50%; background: #111; display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 700; color: #55E617; flex-shrink: 0; }
.thread-body-cell { padding: 12px 14px 12px 4px; vertical-align: middle; min-width: 0; }
.thread-flags { display: flex; gap: 5px; margin-bottom: 4px; flex-wrap: wrap; }
.flag { font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 2px 7px; }
.flag-pinned { background: #55E617; color: #111; }
.flag-hot { background: #e67e22; color: #fff; }
.flag-new { background: #2980b9; color: #fff; }
.flag-cat { background: #f0f0f0; color: #666; border: 1px solid #e0e0e0; }
.thread-title { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600; color: #111; margin-bottom: 3px; line-height: 1.2; }
.thread-title a { color: inherit; text-decoration: none; }
.thread-row:hover .thread-title, .thread-row:hover .thread-title a { color: #55E617; }
.thread-preview { font-size: 12px; color: #aaa; line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 520px; }
.thread-meta { font-size: 11px; color: #bbb; margin-top: 4px; }
.thread-meta span { color: #55E617; font-weight: 600; }
.thread-stat-cell { padding: 12px 16px; text-align: center; vertical-align: middle; border-left: 1px solid #f5f5f5; white-space: nowrap; min-width: 70px; }
.thread-num { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; color: #222; line-height: 1; }
.thread-lbl { font-size: 10px; color: #bbb; text-transform: uppercase; }
.thread-last-cell { padding: 12px 16px; vertical-align: middle; border-left: 1px solid #f5f5f5; min-width: 120px; }
.thread-last-name { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; color: #333; }
.thread-last-time { font-size: 11px; color: #bbb; margin-top: 2px; }

/* ── THREAD / POSTBIT ── */
.thread-layout { display: grid; grid-template-columns: 1fr 260px; gap: 20px; align-items: start; }
.thread-header { background: #fff; border: 1px solid #e5e5e5; border-top: 3px solid #55E617; padding: 20px 24px; margin-bottom: 3px; }
.thread-title-main { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 26px; text-transform: uppercase; letter-spacing: 0.5px; color: #111; line-height: 1.15; margin-bottom: 12px; }
.thread-meta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 12px; color: #aaa; }
.thread-meta-row strong { color: #55E617; font-weight: 600; }
.thread-actions { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.action-btn { font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 7px 16px; border: 1px solid #ddd; background: #fff; color: #555; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.action-btn:hover { border-color: #55E617; color: #55E617; }
.action-btn.primary { background: #55E617; color: #111; border-color: #55E617; }
.action-btn.primary:hover { background: #46c412; }
.page-row { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid #e5e5e5; border-top: none; padding: 10px 16px; margin-bottom: 3px; }
.page-row-label { font-size: 12px; color: #aaa; }
.pg-row { display: flex; gap: 3px; }
.postbit { display: grid; grid-template-columns: 180px 1fr; background: #fff; border: 1px solid #e5e5e5; border-top: none; }
.user-panel { background: #fafafa; border-right: 1px solid #f0f0f0; padding: 20px 16px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.user-av { width: 64px; height: 64px; border-radius: 50%; background: #111; display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: #55E617; margin-bottom: 10px; border: 3px solid #2a2a2a; }
.user-name { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #111; margin-bottom: 3px; }
.user-title { font-size: 11px; color: #55E617; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.user-title.admin { color: #c0392b; }
.user-stats { display: flex; flex-direction: column; gap: 4px; width: 100%; margin-bottom: 10px; }
.user-stat { display: flex; justify-content: space-between; font-size: 11px; padding: 4px 0; border-bottom: 1px solid #f0f0f0; }
.user-stat-label { color: #aaa; }
.user-stat-val { font-weight: 600; color: #333; }
.user-online { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #55E617; margin-top: 4px; }
.online-dot { width: 7px; height: 7px; border-radius: 50%; background: #55E617; flex-shrink: 0; }
.user-badges { display: flex; gap: 4px; margin-top: 8px; flex-wrap: wrap; justify-content: center; }
.post-content { padding: 20px 24px; display: flex; flex-direction: column; min-width: 0; }
.post-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid #f5f5f5; }
.post-date { font-size: 11px; color: #bbb; }
.post-num { font-family: 'Oswald', sans-serif; font-size: 12px; color: #ccc; font-weight: 600; }
.op-badge { background: #55E617; color: #111; font-family: 'Oswald', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 2px 7px; margin-left: 8px; vertical-align: middle; }
.post-body { font-size: 14px; line-height: 1.85; color: #444; flex: 1; margin-bottom: 16px; }
.post-body p { margin-bottom: 12px; }
.post-body strong { color: #222; }
.post-quote { background: #f8f8f8; border-left: 3px solid #55E617; padding: 12px 16px; margin: 14px 0; font-size: 13px; color: #666; font-style: italic; }
.post-quote-author { font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; color: #55E617; margin-bottom: 6px; font-style: normal; }
.post-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid #f5f5f5; flex-wrap: wrap; gap: 10px; }
.post-reactions { display: flex; gap: 6px; }
.reaction-btn { font-size: 12px; padding: 4px 12px; border: 1px solid #e5e5e5; background: #fff; cursor: pointer; transition: all 0.2s; color: #666; display: flex; align-items: center; gap: 5px; font-family: 'Open Sans', sans-serif; }
.reaction-btn:hover { border-color: #55E617; color: #55E617; }
.reaction-btn.liked { background: #fff5f5; border-color: #e74c3c; color: #e74c3c; }
.post-tools { display: flex; gap: 8px; }
.tool-btn { font-size: 11px; color: #bbb; cursor: pointer; transition: color 0.2s; background: none; border: none; font-family: 'Open Sans', sans-serif; padding: 4px; }
.tool-btn:hover { color: #55E617; }
.post-sig { margin-top: 14px; padding-top: 12px; border-top: 1px dashed #eee; font-size: 11px; color: #bbb; font-style: italic; line-height: 1.6; }
.reply-box { background: #fff; border: 1px solid #e5e5e5; border-top: none; padding: 24px; }
.reply-box-head { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #111; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid #eee; }
.reply-box-head span { color: #55E617; }
.reply-toolbar { display: flex; gap: 4px; margin-bottom: 8px; flex-wrap: wrap; }
.toolbar-btn { width: 32px; height: 32px; border: 1px solid #ddd; background: #fff; cursor: pointer; font-size: 13px; font-weight: 700; color: #555; transition: all 0.2s; display: flex; align-items: center; justify-content: center; font-family: 'Georgia', serif; }
.toolbar-btn:hover { border-color: #55E617; color: #55E617; background: #f9fff4; }
.reply-textarea { width: 100%; border: 1px solid #ddd; padding: 12px 14px; font-family: 'Open Sans', sans-serif; font-size: 14px; color: #222; outline: none; resize: vertical; min-height: 140px; line-height: 1.7; transition: border-color 0.2s; }
.reply-textarea:focus { border-color: #55E617; }
.reply-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; flex-wrap: wrap; gap: 10px; }
.reply-options { display: flex; gap: 16px; font-size: 12px; color: #888; }
.reply-options label { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.post-reply-btn { background: #55E617; color: #111; border: 2px solid #55E617; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 11px 28px; cursor: pointer; transition: all 0.2s; }
.post-reply-btn:hover { background: #46c412; }

/* ── TROPHY ── */
.trophy-layout { display: grid; grid-template-columns: 1fr 260px; gap: 20px; align-items: start; }
.trophy-header-box { background: #fff; border: 1px solid #e5e5e5; border-top: 3px solid #55E617; padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.trophy-header-box h1 { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 28px; text-transform: uppercase; letter-spacing: 1px; color: #111; margin-bottom: 4px; }
.trophy-header-box h1 span { color: #55E617; }
.trophy-header-box p { font-size: 12px; color: #888; line-height: 1.6; max-width: 460px; }
.trophy-stats { display: flex; gap: 0; border: 1px solid #e5e5e5; flex-shrink: 0; }
.trophy-stat { padding: 12px 22px; text-align: center; border-right: 1px solid #e5e5e5; }
.trophy-stat:last-child { border-right: none; }
.trophy-stat-num { font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: 700; color: #55E617; line-height: 1; }
.trophy-stat-label { font-size: 10px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
.upload-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px; background: #55E617; color: #111; border: none; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: background 0.2s; margin-bottom: 0; text-decoration: none; }
.upload-btn:hover { background: #46c412; }
.filter-tabs { display: flex; background: #fff; border: 1px solid #e5e5e5; border-top: none; border-bottom: none; overflow-x: auto; }
.filter-tab { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 12px 18px; background: none; border: none; border-bottom: 3px solid transparent; cursor: pointer; color: #888; transition: all 0.2s; white-space: nowrap; text-decoration: none; display: inline-block; }
.filter-tab.active { color: #111; border-bottom-color: #55E617; }
.trophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: #e0e0e0; border: 1px solid #e0e0e0; border-top: none; }
.trophy-card { background: #fff; overflow: hidden; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.trophy-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); z-index: 1; position: relative; }
.trophy-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #111; }
.trophy-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.trophy-card:hover .trophy-img-wrap img { transform: scale(1.04); }
.trophy-score-badge { position: absolute; top: 10px; right: 10px; background: #111; color: #55E617; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 700; padding: 4px 10px; }
.trophy-new-badge { position: absolute; top: 10px; left: 10px; background: #55E617; color: #111; font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 700; padding: 3px 8px; letter-spacing: 1px; text-transform: uppercase; }
.trophy-info { padding: 14px; border-top: 1px solid #f0f0f0; }
.trophy-hunter { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; }
.hunter-av { width: 32px; height: 32px; border-radius: 50%; background: #111; display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 700; color: #55E617; flex-shrink: 0; }
.hunter-name { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; color: #222; }
.hunter-location { font-size: 11px; color: #aaa; }
.trophy-title { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600; color: #111; margin-bottom: 4px; line-height: 1.2; }
.trophy-card:hover .trophy-title { color: #55E617; }
.trophy-details { font-size: 12px; color: #888; margin-bottom: 10px; line-height: 1.5; }
.trophy-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid #f5f5f5; }
.trophy-stars { color: #e6a817; font-size: 13px; letter-spacing: 1px; }
.trophy-likes { display: flex; align-items: center; gap: 5px; font-size: 12px; color: #aaa; cursor: pointer; transition: color 0.2s; }
.trophy-likes:hover { color: #c0392b; }
.trophy-date { font-size: 11px; color: #ccc; }
.reviews-wrap { background: #fff; border: 1px solid #e5e5e5; border-top: none; }
.review-row { padding: 20px; border-bottom: 1px solid #f5f5f5; }
.review-row:last-child { border-bottom: none; }
.review-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 8px; gap: 12px; }
.review-hunter { display: flex; align-items: center; gap: 10px; }
.rev-av { width: 38px; height: 38px; border-radius: 50%; background: #111; display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 700; color: #55E617; flex-shrink: 0; }
.rev-name { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; text-transform: uppercase; color: #222; }
.rev-meta { font-size: 11px; color: #aaa; margin-top: 1px; }
.rev-stars { color: #e6a817; font-size: 14px; letter-spacing: 1px; flex-shrink: 0; }
.rev-verified { font-size: 10px; color: #55E617; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 5px; }
.rev-body { font-size: 13px; color: #666; line-height: 1.8; }

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 14px; }
.sb-card { background: #fff; border: 1px solid #e5e5e5; overflow: hidden; }
.sb-head { background: #111; padding: 11px 14px; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #fff; border-left: 3px solid #55E617; }
.sb-body { padding: 14px; }
.sb-body p { font-size: 12px; color: #777; line-height: 1.7; margin-bottom: 10px; }
.online-list { display: flex; flex-direction: column; gap: 9px; }
.online-user { display: flex; align-items: center; gap: 9px; }
.ol-av { width: 32px; height: 32px; border-radius: 50%; background: #111; display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 700; color: #55E617; flex-shrink: 0; position: relative; }
.ol-dot { position: absolute; bottom: 0; right: 0; width: 8px; height: 8px; border-radius: 50%; background: #55E617; border: 2px solid #fff; }
.ol-name { font-size: 13px; font-weight: 600; color: #222; }
.ol-role { font-size: 11px; color: #aaa; }
.ol-admin { color: #55E617; }
.activity-list { display: flex; flex-direction: column; }
.act-item { padding: 9px 0; border-bottom: 1px solid #f5f5f5; }
.act-item:last-child { border-bottom: none; }
.act-title { font-size: 12px; font-weight: 600; color: #333; line-height: 1.4; margin-bottom: 2px; }
.act-title a { color: inherit; text-decoration: none; }
.act-title a:hover { color: #55E617; }
.act-meta { font-size: 11px; color: #bbb; }
.act-meta span { color: #55E617; }
.rules-list { list-style: none; }
.rules-list li { font-size: 12px; color: #666; line-height: 1.5; padding: 5px 0 5px 18px; position: relative; border-bottom: 1px solid #f5f5f5; }
.rules-list li:last-child { border-bottom: none; }
.rules-list li::before { content: '✓'; position: absolute; left: 0; color: #55E617; font-weight: 700; font-size: 11px; }
.thread-info-list { display: flex; flex-direction: column; gap: 0; }
.info-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f5f5f5; font-size: 12px; }
.info-row:last-child { border-bottom: none; }
.info-label { color: #aaa; }
.info-val { font-weight: 600; color: #333; }
.related-list { display: flex; flex-direction: column; gap: 0; }
.related-item { padding: 9px 0; border-bottom: 1px solid #f5f5f5; }
.related-item:last-child { border-bottom: none; }
.related-title { font-size: 12px; font-weight: 600; color: #333; line-height: 1.4; margin-bottom: 2px; }
.related-title a { color: inherit; text-decoration: none; }
.related-item:hover .related-title a { color: #55E617; }
.related-meta { font-size: 11px; color: #bbb; }
.lb-list { display: flex; flex-direction: column; gap: 0; }
.lb-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid #f5f5f5; }
.lb-row:last-child { border-bottom: none; }
.lb-rank { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 700; color: #ccc; width: 22px; text-align: center; flex-shrink: 0; }
.lb-rank.gold { color: #e6a817; }
.lb-rank.silver { color: #aaa; }
.lb-rank.bronze { color: #cd7f32; }
.lb-av { width: 32px; height: 32px; border-radius: 50%; background: #111; display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 700; color: #55E617; flex-shrink: 0; }
.lb-info { flex: 1; min-width: 0; }
.lb-name { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; color: #222; }
.lb-score { font-size: 11px; color: #aaa; }
.lb-pts { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 700; color: #55E617; }
.rating-summary { text-align: center; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #f0f0f0; }
.big-score { font-family: 'Oswald', sans-serif; font-size: 52px; font-weight: 700; color: #111; line-height: 1; }
.big-stars { color: #e6a817; font-size: 20px; letter-spacing: 2px; margin: 4px 0; }
.big-count { font-size: 12px; color: #aaa; }
.bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; font-size: 12px; color: #888; }
.bar-row span:first-child { width: 28px; text-align: right; font-family: 'Oswald', sans-serif; font-weight: 600; }
.bar-track { flex: 1; height: 7px; background: #eee; }
.bar-fill { height: 100%; background: #55E617; }
.bar-count { width: 20px; text-align: right; color: #aaa; font-size: 11px; }

/* ── MODAL ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; width: 100%; max-width: 620px; max-height: 92vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.modal-head { background: #111; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 3px solid #55E617; position: sticky; top: 0; z-index: 1; }
.modal-head h3 { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; }
.modal-close { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; padding: 0 4px; line-height: 1; }
.modal-close:hover { color: #55E617; }
.modal-body { padding: 24px; }
.modal-footer { display: flex; gap: 10px; justify-content: flex-end; border-top: 1px solid #eee; padding-top: 16px; margin-top: 4px; }
.star-input { display: flex; gap: 4px; font-size: 28px; cursor: pointer; }
.star-input span { color: #ddd; transition: color 0.15s; line-height: 1; }
.star-input span.active { color: #e6a817; }

/* ── PAGINATION ── */
.pagination { display: flex; gap: 4px; margin-top: 16px; flex-wrap: wrap; }
.pg { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; padding: 0 6px; border: 1px solid #ddd; background: #fff; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; color: #555; text-decoration: none; }
.pg:hover { border-color: #55E617; color: #55E617; }
.pg.active { background: #55E617; border-color: #55E617; color: #111; }

/* ── GUARANTEE (homepage) ── */
.guarantee { background: #55E617; padding: 34px 0; }
.guarantee-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.guarantee-item { display: flex; align-items: center; gap: 14px; padding: 8px 24px; border-right: 1px solid rgba(255,255,255,0.22); color: #fff; }
.guarantee-item:last-child { border-right: none; }
.g-icon { font-size: 28px; }
.g-text strong { display: block; font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; text-transform: uppercase; }
.g-text span { font-size: 12px; opacity: 0.85; }

/* ── SEARCH ── */
.search-results { padding: 32px 0 60px; }
.search-result { background: #fff; border: 1px solid #e5e5e5; border-left: 3px solid #55E617; padding: 18px 20px; margin-bottom: 10px; }
.search-result:hover { border-left-color: #46c412; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.search-result-type { font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #55E617; margin-bottom: 5px; }
.search-result-title { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 600; color: #111; margin-bottom: 6px; }
.search-result-title a { color: inherit; text-decoration: none; }
.search-result-title a:hover { color: #55E617; }
.search-result-body { font-size: 13px; color: #888; line-height: 1.6; }
.search-result-meta { font-size: 11px; color: #bbb; margin-top: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .trophy-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-item:nth-child(2) { border-right: none; }
}
@media (max-width: 900px) {
  .forum-layout, .thread-layout, .trophy-layout { grid-template-columns: 1fr; }
  .thread-last-cell { display: none; }
  .postbit { grid-template-columns: 140px 1fr; }
}
@media (max-width: 768px) {
  .postbit { grid-template-columns: 1fr; }
  .user-panel { flex-direction: row; text-align: left; gap: 14px; }
  .user-av { margin-bottom: 0; flex-shrink: 0; }
  .user-stats { display: none; }
  .trophy-grid { grid-template-columns: 1fr; }
  .forum-header-box, .trophy-header-box { flex-direction: column; }
}
