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

:root {
  --bg-dark: #1a1a1a;
  --bg-darker: #1c1e1f;
  --bg-card: #252525;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --accent: #58c4df;
  --accent-hover: #46a8c0;
  --border: #333;
  --success: #4caf50;
  --danger: #f44336;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg-darker);
  color: var(--text-primary);
  line-height: 1.6;
}

/* Header */
.header-top {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
}

.nav-main {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-item:hover {
  color: var(--text-primary);
}

.dropdown-toggle .arrow {
  font-size: 10px;
  margin-left: 4px;
}

.search-wrapper {
  flex: 1;
  max-width: 600px;
}

.search-input {
  width: 100%;
  height: 38px;
  background: var(--bg-darker);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0 15px;
  color: var(--text-primary);
  font-size: 14px;
}

.search-input:focus {
  outline: none;
  border-color: var(--accent);
}

.header-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-signup {
  background: var(--accent);
  color: var(--bg-dark);
  padding: 8px 18px;
  border-radius: 5px;
  font-weight: 700;
  transition: background 0.2s;
}

.btn-signup:hover {
  background: var(--accent-hover);
}

/* Categories strip */
.categories-strip {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.categories-strip::-webkit-scrollbar {
  display: none;
}

.categories-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 15px;
  height: 48px;
  align-items: center;
}

.cat-btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s;
}

.cat-btn:hover {
  color: var(--text-primary);
}

.cat-btn .arrow {
  font-size: 9px;
  margin-left: 3px;
}

/* Main Container */
.main-container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 20px;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
}

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

.rating-box,
.blog-box {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid var(--border);
}

.trustpilot-star {
  color: #00b67a;
  font-size: 32px;
  margin-bottom: 10px;
}

.rating-text strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.rating-text small {
  color: var(--text-secondary);
  font-size: 12px;
}

.blog-box h4 {
  margin-bottom: 15px;
  font-size: 14px;
}

.blog-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.blog-img {
  font-size: 24px;
  flex-shrink: 0;
}

.blog-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.slide-1 {
  background: linear-gradient(135deg, #d35400 0%, #8e44ad 100%);
}

.slide-2 {
  background: linear-gradient(135deg, #3498db 0%, #8e44ad 100%);
}

.slide-3 {
  background: linear-gradient(135deg, #16a085 0%, #2980b9 100%);
}

.slide-4 {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.slide-content {
  max-width: 50%;
  z-index: 2;
}

.slide-content h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.slide-content p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.95);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.btn-slide {
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(88, 196, 223, 0.3);
}

.btn-slide:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(88, 196, 223, 0.4);
}

.slide-visual {
  position: absolute;
  right: 80px;
  bottom: 40px;
  width: 300px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
  animation: float 3s ease-in-out infinite;
}

.slide-visual.second {
  right: 400px;
  bottom: 100px;
  width: 250px;
  animation: float 3s ease-in-out infinite 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.slider-arrow:hover {
  background: rgba(0,0,0,0.8);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.slider-dot.active {
  background: var(--accent);
  border-color: #fff;
  transform: scale(1.2);
}

/* Game Markets */
.game-market {
  margin-bottom: 50px;
}

.market-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.market-header h3 {
  font-size: 22px;
  font-weight: 700;
}

.see-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.see-all:hover {
  color: var(--accent-hover);
}

/* Carousel */
.carousel-wrapper {
  position: relative;
}

.carousel {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.9);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: -20px; }
.carousel-btn.next { right: -20px; }

/* Item Card */

.item-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 15px;
  min-width: 220px;
  max-width: 220px;
  flex-shrink: 0;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.item-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(88, 196, 223, 0.15);
}

.item-image {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  background: linear-gradient(135deg, rgba(88,196,223,0.05) 0%, rgba(88,196,223,0.15) 100%);
  border-radius: 6px;
}

.item-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.discount-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--danger);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.item-category {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 600;
}


.item-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.item-condition {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}
.item-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wear-bar {
  margin: 8px 0;
}

.wear-value {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.wear-progress {
  height: 4px;
  background: var(--bg-darker);
  border-radius: 2px;
  overflow: hidden;
}

.wear-fill {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #ffc107 50%, #f44336 100%);
}

.item-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.btn-cart {
  flex: 1;
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cart:hover {
  background: var(--accent-hover);
}

.btn-more {
  background: var(--bg-darker);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  width: 36px;
  padding: 0;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-more:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 30px 20px;
  margin-top: 60px;
  text-align: center;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--text-primary);
}

.footer small {
  color: var(--text-secondary);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    display: none;
  }
  
  .slide-content h2 {
    font-size: 36px;
  }
  
  .slide-visual {
    width: 220px;
  }
  
  .slide-visual.second {
    width: 180px;
  }
}

@media (max-width: 768px) {
  .search-wrapper {
    display: none;
  }
  
  .nav-main {
    display: none;
  }
  
  .hero-slider {
    height: 280px;
  }
  
  .slide {
    padding: 40px 30px;
  }
  
  .slide-content {
    max-width: 100%;
  }
  
  .slide-content h2 {
    font-size: 28px;
  }
  
  .slide-content p {
    font-size: 15px;
  }
  
  .slide-visual {
    display: none;
  }
  
  .carousel-btn {
    display: none;
  }
}

/* Full-width market rows */
.main-container { max-width: 1920px; width: 100%; padding-left: 32px; padding-right: 32px; }
.content-wrapper { display: block; }
.content-wrapper > .main-content { width: 100%; }
.sidebar { display: none; }
.main-content { gap: 46px; }
.game-market { margin-bottom: 0; }
.market-header { margin-bottom: 15px; }
.market-header h3 { font-size: 20px; }
.carousel-wrapper { margin: 0 -1px; }
.carousel-wrapper { padding-top: 24px; margin-top: -24px; overflow: visible; }
.carousel { gap: 0; padding: 0 0 48px; margin-bottom: -48px; overflow-x: auto; overflow-y: visible; }
.header-container, .categories-container { max-width: 1920px; }
.carousel .item-card { min-width: 0; width: 12.5%; flex: 0 0 12.5%; border-radius: 0; border-color: #1a1c1d; padding: 0; }
.item-card { position: relative; overflow: visible; }
.item-card:hover { transform: translateY(-22px); position: relative; z-index: 4; background: #303536; }
.item-image { height: 164px; margin: 0; border-radius: 0; background: radial-gradient(circle at 50% 40%, #3d5068, #222b37); }
.item-image img { width: 92%; height: 92%; }
.item-info { padding: 13px 17px 15px; gap: 5px; min-height: 172px; background: #292d2e; }
.item-card:hover .item-info { background: #303536; }
.item-price { order: 0; margin: 0; white-space: nowrap; }
.price { color: #f1f1f1; font-size: 20px; font-weight: 700; letter-spacing: -0.025em; }
.old-price { font-size: 10px; color: #777; }
.item-category { order: 1; color: #b99b25; font-size: 10px; margin-top: 6px; font-weight: 500; }
.item-name { order: 2; font-size: 15px; font-weight: 700; letter-spacing: -0.015em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.item-condition { order: 3; color: #85898a; font-size: 11px; min-height: 32px; line-height: 1.45; }
.item-reference { color: #6f7374; font-size: 10px; white-space: nowrap; }
.item-discount { display: inline-block; padding: 2px 6px; border-radius: 2px; color: #fff; font-size: 9px; background: linear-gradient(90deg, #4b79bd, #d96347); }
.item-info:after { content: ""; }
.wear-bar { order: 4; margin: 13px 0 15px; }
.wear-value { font-size: 10px; color: #c3c6c6; margin-bottom: 5px; }
.wear-progress { height: 7px; position: relative; overflow: visible; background: linear-gradient(90deg, #68bd4d 0%, #d8d55a 48%, #dc675e 100%); }
.wear-fill { width: 0 !important; height: 0; }
.wear-marker { position: absolute; top: 7px; width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-bottom: 7px solid #fff; transform: translateX(-5px); }
.item-actions { order: 5; display: flex; position: absolute; left: -1px; right: -1px; top: 100%; height: 46px; margin: 0; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .18s ease, transform .18s ease, visibility .18s; }
.item-card:hover .item-actions { opacity: 1; visibility: visible; transform: translateY(0); }
.btn-cart { border-radius: 0; padding: 11px; font-size: 11px; text-transform: uppercase; }
.btn-more { border-radius: 0; width: 38px; }
.discount-badge { top: auto; bottom: 9px; right: 9px; padding: 3px 6px; font-size: 9px; }
.carousel-btn { border-radius: 2px; width: 36px; height: 72px; background: #111a; }
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }
.game-market:nth-child(4) .item-image { background: radial-gradient(circle at 50% 40%, #53616e, #282d31); }
.game-market:nth-child(5) .item-image { background: radial-gradient(circle at 50% 40%, #565c70, #2b2d37); }
.game-market:nth-child(6) .item-image { background: radial-gradient(circle at 50% 40%, #52664e, #282f2a); }

@media (min-width: 1760px) {
  .carousel .item-card { width: 11.111%; flex-basis: 11.111%; }
}

@media (max-width: 1450px) {
  .carousel .item-card { width: 14.285%; flex-basis: 14.285%; }
  .main-container { padding-left: 24px; padding-right: 24px; }
}

/* Match the typography and neutral palette used by the Market application. */
:root{--bg-dark:#222627;--bg-darker:#1b1e1f;--bg-card:#292d2e;--text-primary:#f4f6f6;--text-secondary:#858c8e;--accent:#62b9dc;--accent-hover:#fa490a;--border:#181b1c}html,body,button,input,select,textarea{font-family:Montserrat,Arial,sans-serif!important}body{background:#1b1e1f;color:#f4f6f6;font-weight:400;line-height:1.45}.header-top{background:#222627;border-color:#34393a}.nav-item,.cat-btn{color:#f0f2f2;font-weight:700;letter-spacing:.06em}.nav-item:hover,.cat-btn:hover{color:#fa490a}.search-input{background:#171a1b;border-color:#34393a;color:#f4f6f6}.slide-content h2{color:#fff;font-family:Montserrat,Arial,sans-serif;font-size:48px;font-weight:700;letter-spacing:-.04em;line-height:1.05}.slide-content p{color:#f5f6f6;font-family:Montserrat,Arial,sans-serif;font-size:17px;font-weight:500;line-height:1.5}.btn-slide{font-family:Montserrat,Arial,sans-serif;font-size:11px;font-weight:800;letter-spacing:.06em;background:#62b9dc;color:#172124}.market-header h3{color:#f4f6f6;font-family:Montserrat,Arial,sans-serif;font-size:20px;font-weight:700;letter-spacing:-.025em}.see-all{color:#62b9dc;font-family:Montserrat,Arial,sans-serif;font-size:10px;font-weight:700;letter-spacing:.05em}.item-card,.item-info{background:#292d2e;color:#f4f6f6}.item-image{background:radial-gradient(circle at 50% 42%,#34393a 0,#292d2e 70%)}.item-card:hover,.item-card:hover .item-info{background:#303536}.price{color:#f4f6f6;font-family:Montserrat,Arial,sans-serif;font-weight:700}.item-category{color:var(--rarity-color,#b557d8);font-family:Montserrat,Arial,sans-serif;font-weight:500}.item-name{color:#fff;font-family:Montserrat,Arial,sans-serif;font-weight:700}.item-condition,.item-reference{color:#858c8e}.categories-strip{background:#222627;border-color:#34393a}

/* Reference-style search, additional hero slides, and blog rail. */
.search-wrapper{position:relative;width:min(620px,42vw);height:38px;display:flex;align-items:center}.home-search-icon{position:absolute;left:2px;width:13px;height:13px;border:2px solid #eef0f0;border-radius:50%}.home-search-icon:after{content:"";position:absolute;right:-5px;bottom:-3px;width:6px;height:2px;background:#eef0f0;transform:rotate(45deg)}.search-input{width:100%;height:38px;padding:0 12px 0 27px;background:transparent!important;border:0!important;border-bottom:1px solid #3b4041!important;border-radius:0!important;font-size:12px;outline:0}.search-input:focus{border-bottom-color:#62b9dc!important}.main-container{padding-top:28px}.hero-slider{height:405px;border-radius:0}.slide-city{background:linear-gradient(90deg,rgba(151,161,119,.9),rgba(63,135,179,.2)),repeating-linear-gradient(30deg,#8298a3 0 20px,#bdc7c1 21px 40px);overflow:hidden}.city-grid-art{position:absolute;inset:0;background:linear-gradient(150deg,transparent 0 42%,rgba(255,255,255,.18) 42% 44%,transparent 44%),repeating-linear-gradient(90deg,transparent 0 72px,rgba(30,58,73,.18) 73px 76px),repeating-linear-gradient(0deg,transparent 0 58px,rgba(255,255,255,.16) 59px 62px);transform:skewY(-3deg) scale(1.08)}.city-fish{position:absolute;right:23%;top:40%;width:155px;height:105px;border-radius:55% 45% 48% 52%;background:#67bdd9;color:#f7f7f3;font-size:92px;line-height:82px;text-align:center;filter:drop-shadow(0 10px 12px rgba(0,0,0,.25))}.city-fish:before{content:"";position:absolute;right:-55px;top:25px;border-top:28px solid transparent;border-bottom:28px solid transparent;border-left:60px solid #e95725}.slide-content h2 span{color:#fa490a}.slide-connect{background:#071522;overflow:hidden}.network-art{position:absolute;inset:0;opacity:.65;background-image:linear-gradient(22deg,transparent 49%,#285b7b 49.5%,transparent 50%),linear-gradient(150deg,transparent 49%,#285b7b 49.5%,transparent 50%),radial-gradient(circle,#92c6db 0 2px,transparent 3px);background-size:130px 100px,160px 120px,85px 72px}.social-arc{position:absolute;right:9%;top:16%;width:43%;height:70%;border:55px solid transparent;border-top-color:#fff;border-radius:50%;transform:rotate(10deg)}.social-arc i{position:absolute;display:flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:7px;background:#111;color:#fff;font-style:normal;font-weight:800}.social-arc i:nth-child(1){left:-18%;top:-30%;background:#e52d27}.social-arc i:nth-child(2){left:-2%;top:-45%;background:#3975d3}.social-arc i:nth-child(3){left:18%;top:-55%;background:#e34a91}.social-arc i:nth-child(4){left:39%;top:-52%}.social-arc i:nth-child(5){left:58%;top:-37%}.social-arc i:nth-child(6){left:74%;top:-15%;background:#5665d8}.social-arc i:nth-child(7){right:-8%;top:8%;background:#e52d27}.social-arc i:nth-child(8){right:-15%;top:32%;background:#3975d3}.social-arc i:nth-child(9){right:-9%;top:58%}.social-arc i:nth-child(10){right:3%;top:76%}.content-wrapper{display:grid!important;grid-template-columns:270px minmax(0,1fr);gap:36px;align-items:start}.home-blog{display:block!important}.home-blog h2{margin:0 0 22px;font-size:21px}.home-blog article{padding:20px;background:#292d2e;border-bottom:1px solid #1b1e1f}.blog-thumb{height:126px;margin-bottom:8px;background-position:center;background-size:cover}.blog-thumb-one{background:linear-gradient(135deg,#2675a8,#7cc0df),url('https://community.steamstatic.com/economy/image/class/730/7993039644/256x128') center/contain no-repeat}.blog-thumb-two{background:linear-gradient(135deg,#c85f54,#7b2729)}.blog-thumb-three{background:linear-gradient(135deg,#ef9a7e,#efc0a0)}.blog-thumb-four{background:linear-gradient(135deg,#7c31df,#bd83ef)}.blog-thumb-five{background:linear-gradient(135deg,#f1a26d,#d84f55)}.home-blog time{color:#8c9495;font-size:10px}.home-blog h3{margin:3px 0 0;font-size:15px;line-height:1.25}.content-wrapper>.main-content{min-width:0}.content-wrapper .carousel .item-card{width:14.285%;flex-basis:14.285%}@media(max-width:1100px){.content-wrapper{grid-template-columns:1fr}.home-blog{display:none!important}}@media(max-width:700px){.search-wrapper{width:auto;flex:1}.hero-slider{height:360px}.slide-content{max-width:75%}.slide-content h2{font-size:34px}.social-arc,.city-fish{opacity:.45}}

@media(max-width:700px){body{overflow-x:hidden}.header-container{display:grid;grid-template-columns:auto minmax(0,1fr);gap:12px;padding:0 14px}.header-left{min-width:0}.nav-main{display:none}.header-right{display:none}.search-wrapper{width:100%;min-width:0;flex:none}.main-container{width:100%;padding-left:12px;padding-right:12px}.hero-slider{width:100%;height:360px}.slide{padding:38px 24px}.slide-content{max-width:82%}.slide-content h2{font-size:34px}.social-arc,.city-fish{opacity:.35}.content-wrapper{width:100%;min-width:0}.main-content{min-width:0}.carousel-wrapper{max-width:100%;overflow:hidden}.carousel{max-width:100%}.footer{overflow:hidden}}
.home-user[hidden]{display:none}.home-user{display:flex;align-items:center;gap:8px;color:#fff;text-decoration:none;font-size:11px;font-weight:700}.home-user:hover{color:#fa490a}.home-user img{width:34px;height:34px;border-radius:50%;object-fit:cover;border:2px solid #62b9dc}.home-user span{max-width:145px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.home-user i{font-style:normal}
.header-right .home-user{display:flex!important;height:42px;align-items:center}.header-right .home-user[hidden]{display:none!important}.header-right .home-user img#home-user-avatar{display:block!important;flex:0 0 34px!important;width:34px!important;min-width:34px!important;max-width:34px!important;height:34px!important;min-height:34px!important;max-height:34px!important;border-radius:50%!important;object-fit:cover!important}

/* Keep Trustpilot and Blog stacked in the left rail. */
@media(min-width:1101px){.content-wrapper{display:grid!important;grid-template-columns:250px minmax(0,1fr)!important;gap:12px!important}.home-sidebar{grid-column:1;min-width:0}.home-blog{margin-top:0}.content-wrapper>.main-content{grid-column:2;min-width:0}}

/* Desktop proportions matching the reference composition. */
@media(min-width:1101px){.main-container{padding:0 22px!important}.hero-slider{height:405px;margin:0 0 4px}.content-wrapper{grid-template-columns:250px minmax(0,1fr)!important;gap:10px!important}.home-trust>h2,.home-blog>h2{padding:8px 0 14px}.home-trust>div{padding:24px 14px}.home-blog article{padding:16px!important}.blog-thumb{height:126px!important}.market-header{height:48px;margin:0;padding:9px 8px}.market-header h3{font-size:18px}.carousel{padding-bottom:44px}.content-wrapper .carousel .item-card{width:10%!important;flex:0 0 10%!important}.item-image{height:132px}.item-info{min-height:165px;height:165px;padding:10px 14px 12px}.price{font-size:18px}.item-name{font-size:13px}.item-condition{font-size:9px;min-height:28px}.wear-bar{margin:8px 0 10px}}
@media(min-width:1500px){.content-wrapper .carousel .item-card{width:10%;flex-basis:10%}}

/* Full-width reference layout: hero above, Trustpilot/Blog rail beside markets. */
.main-container{max-width:none!important;width:100%;padding:28px 28px 0!important}.hero-slider{width:100%;margin:0 0 8px}.content-wrapper{display:grid!important;grid-template-columns:250px minmax(0,1fr)!important;grid-template-areas:"trust markets" "blog markets";gap:0 12px!important;align-items:start}.home-trust{grid-area:trust}.home-blog{grid-area:blog;display:block!important}.content-wrapper>.main-content{grid-area:markets;min-width:0;width:100%}.home-trust>h2,.home-blog>h2{margin:0;padding:10px 0 20px;color:#fff;font-size:20px}.home-trust>div{margin-bottom:10px;padding:28px 18px;background:#292d2e;text-align:center}.home-trust strong{display:block;font-size:20px}.home-trust strong span{color:#42b67a}.home-trust p{margin:20px 0 14px;padding:8px;background:#42b67a;color:#fff;font-size:20px;letter-spacing:.12em}.home-trust small{color:#f1f3f3;font-size:10px;line-height:1.6}.home-blog article{margin:0 0 1px;padding:18px!important;background:#292d2e!important}.blog-thumb{display:block!important;width:100%;height:126px!important;margin:0 0 8px;background-size:cover!important;background-position:center!important}.home-blog time{display:block}.home-blog h3{display:block}.game-market{min-width:0}.market-header{padding:10px 10px 0}.carousel-wrapper{margin-left:0;margin-right:0}.content-wrapper .carousel .item-card{width:12.5%;flex-basis:12.5%}@media(min-width:1760px){.content-wrapper .carousel .item-card{width:11.111%;flex-basis:11.111%}}@media(max-width:1200px){.content-wrapper{grid-template-columns:220px minmax(0,1fr)!important}.content-wrapper .carousel .item-card{width:20%;flex-basis:20%}}@media(max-width:900px){.main-container{padding:12px!important}.content-wrapper{display:block!important}.home-trust,.home-blog{display:none!important}.content-wrapper .carousel .item-card{width:50%;flex-basis:50%}.hero-slider{margin-bottom:16px}}
