/* =====================================================
   PIXELREN HOMEPAGE – styles.css
   ===================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font-main: 'Poppins', sans-serif;
  --font-cond: 'Poppins', sans-serif;
  --color-bg: #0d0d0d;
  --color-white: #ffffff;
  --color-blue: #1e5ef3;
  --color-blue-hover: #3872ff;
  --color-nav-bg: rgba(8, 8, 10, 0.92);
  --color-text-muted: rgba(255,255,255,0.55);
  --navbar-h: 52px;
  --sidebar-w: 56px;
  --cards-h: 174px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 14px;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }


/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 15px; /* Added spacing from the top */
  left: 0;
  width: 100%;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), top var(--transition);
}

.navbar.scrolled {
  top: 0;
  background: rgba(6,6,8,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Logo */
.navbar__logo-link {
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: 0.1em;
}

.navbar__logo-img {
  height: 48px; /* Increased height to make the logo larger */
  width: auto;
  object-fit: contain;
}

.navbar__logo-text {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.25em;
  display: none; /* Hide since text is in the logo image */
}

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar__link {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  text-transform: none;
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-blue);
  transition: width var(--transition);
}

.navbar__link:hover {
  color: var(--color-white);
}
.navbar__link:hover::after {
  width: 100%;
}

/* Actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar__action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-main);
}

.navbar__action-btn svg {
  width: 16px;
  height: 16px;
}

.navbar__action-btn:hover {
  color: var(--color-white);
}

/* Hamburger (hidden on desktop) */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: white;
  transition: all 0.3s;
}

/* ---------- Search Overlay ---------- */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.search-overlay__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 600px;
  padding: 0 24px;
  transform: translateY(-20px);
  transition: transform 0.3s;
}

.search-overlay.active .search-overlay__inner {
  transform: translateY(0);
}

.search-overlay__input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  color: white;
  font-family: var(--font-main);
  font-size: 1.4rem;
  padding: 8px 0;
  outline: none;
  letter-spacing: 0.04em;
}

.search-overlay__input::placeholder {
  color: rgba(255,255,255,0.35);
}

.search-overlay__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color var(--transition);
  padding: 8px;
}

.search-overlay__close:hover {
  color: white;
}


/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a0a08;
}

/* Video background */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: blur(5px) brightness(0.85);
  transform: scale(1.08); /* Scale up to hide blurred edges */
  z-index: 0;
  pointer-events: none;
}

/* Fallback image shown when video can't load */
.hero__video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: blur(5px) brightness(0.85);
  transform: scale(1.08);
  z-index: 0;
}

/* Dark overlay to darken/cool the image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.55) 80%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
}

/* Bottom gradient to blend into cards */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(to bottom, transparent 0%, rgba(13,13,13,0.95) 100%);
  z-index: 2;
}

/* ---------- Social Sidebar ---------- */
.social-sidebar {
  position: absolute;
  left: 28px;
  bottom: 60px; /* Align with cards row */
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.social-sidebar__label {
  font-family: var(--font-cond);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-white);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  text-transform: uppercase;
  margin-bottom: 8px;
  position: relative;
}

/* Vertical line below the text */
.social-sidebar__label::after {
  content: '';
  display: block;
  width: 1.5px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
  margin: 12px auto 0;
}

.social-sidebar__icons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.social-icon {
  width: 18px;
  height: 18px;
  color: var(--color-white);
  transition: color var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

.social-icon:hover {
  color: var(--color-white);
  transform: scale(1.2);
}

/* Decorative bracket left */
.hero__bracket {
  position: absolute;
  z-index: 5;
  opacity: 0.35;
}

.hero__bracket--left {
  left: 62px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 80px;
}

/* Scroll line */
.hero__scroll-line {
  position: absolute;
  left: 30px;
  bottom: 220px;
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  z-index: 10;
}

.hero__scroll-line-inner {
  width: 100%;
  background: rgba(255,255,255,0.6);
  transition: height 0.5s;
  height: 30%;
}

/* ---------- Hero Content ---------- */
.hero__content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px; /* Moved down from -60px to fill space */
}

/* Large PixelRen Logo */
.hero__logo {
  margin-bottom: 24px;
}

.hero__logo-img {
  width: 520px; /* Reduced from 600px for a better balance */
  height: auto;
  filter: drop-shadow(0 0 16px rgba(0,0,0,0.4));
  animation: logoFloat 4s ease-in-out infinite;
}

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

.hero__title {
  display: none; /* Hide branding text if the logo is sufficient */
}

/* CTA buttons */
.hero__cta {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-blue);
  color: white;
  border-color: var(--color-blue);
}

.btn--primary:hover {
  background: var(--color-blue-hover);
  border-color: var(--color-blue-hover);
}

.btn--ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}


/* =====================================================
   GAME CARDS
   ===================================================== */
.game-cards {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 40px 40px 90px; /* shift right to make room for social sidebar */
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.game-cards::-webkit-scrollbar {
  display: none;
}

.game-cards__track {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: center;
  height: var(--cards-h);
}

/* Individual card */
.game-card {
  position: relative;
  flex: 0 0 174px;
  width: 174px;
  height: 174px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  /* 7-layer bevel / emboss effect */
  box-shadow:
    inset 0  1px 0   rgba(255,255,255,0.22),   /* layer 1 – top highlight    */
    inset  1px 0  0   rgba(255,255,255,0.12),   /* layer 2 – left highlight   */
    inset 0 -1px 0   rgba(0,0,0,0.55),          /* layer 3 – bottom shadow    */
    inset -1px 0  0   rgba(0,0,0,0.35),          /* layer 4 – right shadow     */
    inset 0  2px 0   rgba(255,255,255,0.08),    /* layer 5 – 2nd top shine    */
    inset  2px 0  0   rgba(255,255,255,0.05),   /* layer 6 – 2nd left shine   */
    inset 0 -2px 0   rgba(0,0,0,0.25);          /* layer 7 – 2nd btm shadow   */
  transition: flex var(--transition), width var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.game-card:hover {
  flex: 0 0 220px;
  width: 220px;
  border-color: rgba(255,255,255,0.28);
  box-shadow:
    inset 0  1px 0   rgba(255,255,255,0.30),
    inset  1px 0  0   rgba(255,255,255,0.18),
    inset 0 -1px 0   rgba(0,0,0,0.65),
    inset -1px 0  0   rgba(0,0,0,0.45),
    inset 0  2px 0   rgba(255,255,255,0.12),
    inset  2px 0  0   rgba(255,255,255,0.08),
    inset 0 -2px 0   rgba(0,0,0,0.35);
}

.game-card:hover .game-card__overlay {
  opacity: 0.2;
}

.game-card:hover .game-card__info {
  background: rgba(0,0,0,0.82);
}

/* Img wrap */
.game-card__img-wrap {
  position: absolute;
  inset: 0;
}

.game-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.game-card:hover .game-card__img {
  transform: scale(1.06);
}

.game-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.55);
  opacity: 0.4;
  transition: opacity var(--transition);
}

/* Badge */
.game-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card__badge--blue {
  background: var(--color-blue);
}

.game-card__badge svg {
  width: 14px;
  height: 14px;
}

/* Card info bar */
.game-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.72);
  padding: 0 12px;
  height: 44px; /* Fixed height to equalize the "blackness" */
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
  white-space: nowrap;
  overflow: hidden;
}

.game-card__logo-small {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.game-card__logo-small svg {
  width: 100%;
  height: 100%;
}

.game-card__name {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card__sub {
  font-family: var(--font-cond);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.game-card__tm {
  font-size: 0.5rem;
  vertical-align: super;
}

/* Emblem inside card */
.game-card__emblem {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.game-card__emblem svg {
  width: 70px;
  height: 70px;
}

.game-card__emblem--brand svg {
  width: 60px;
  height: 60px;
}


/* =====================================================
   SUPPORT WIDGET
   ===================================================== */
.support-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 150;
}

.support-widget__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(20,20,25,0.96);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  padding: 9px 14px 9px 12px;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.72rem;
  line-height: 1.3;
  text-align: left;
  border-radius: 3px;
  transition: background var(--transition), border-color var(--transition);
  backdrop-filter: blur(8px);
}

.support-widget__btn:hover {
  background: rgba(30,30,40,0.98);
  border-color: rgba(255,255,255,0.25);
}

.support-widget__label {
  color: rgba(255,255,255,0.75);
}

.support-widget__label strong {
  color: white;
}

.support-widget__icon {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-widget__icon svg {
  width: 15px;
  height: 15px;
  color: rgba(255,255,255,0.7);
}


/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .navbar__nav {
    position: fixed;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(8,8,10,0.98);
    padding: 28px 24px;
    gap: 20px;
    align-items: flex-start;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s, opacity 0.35s;
  }

  .navbar__nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar__actions .navbar__action-btn span {
    display: none;
  }

  .game-cards {
    padding: 0 0 0 20px;
  }

  .game-cards__track {
    height: 120px;
    gap: 20px;
    justify-content: flex-start; /* allow swiping left to right instead of centered */
  }

  .game-card {
    flex: 0 0 110px;
    width: 110px;
    height: 110px;
  }

  .game-card:hover {
    flex: 0 0 130px;
    width: 130px;
  }

  .social-sidebar__label {
    display: none;
  }
}

@media (max-width: 600px) {
  .game-cards {
    padding: 0;
  }

  .social-sidebar {
    display: none;
  }

  .hero__bracket {
    display: none;
  }

  .hero__content {
    margin-top: 0;
  }

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

  .game-card {
    flex: 0 0 110px;
    width: 110px;
    height: 110px;
    overflow: visible; /* Added so text under card is visible */
  }

  .game-card:hover {
    flex: 0 0 110px;
    width: 110px;
  }

  .game-cards__track {
    height: 150px;
    gap: 16px;
    align-items: flex-start;
  }

  .game-card__info {
    position: absolute;
    bottom: -32px; /* Move below the card */
    left: 0;
    right: 0;
    height: auto;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .game-card__name {
    font-size: 0.75rem;
    color: #fff;
    text-align: center;
    width: 100%;
  }

  .game-card__sub {
    font-size: 0.6rem;
    text-align: center;
    margin-left: 0;
    color: rgba(255,255,255,0.5);
  }
}

@media (max-width: 400px) {
  .game-card {
    flex: 0 0 90px;
    width: 90px;
    height: 90px;
  }

  .game-card:hover {
    flex: 0 0 90px;
    width: 90px;
  }

  .game-cards__track {
    height: 130px;
  }
}

/* =====================================================
   MODELS PAGE STYLES
   ===================================================== */
.navbar__link.active {
  color: var(--color-white);
}

.navbar__link.active::after {
  width: 100%;
}

.models-hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(to bottom, #111 0%, #0d0d0d 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* All Models Right Sidebar */
.sidebar-all-models {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 100;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sidebar-all-models:hover {
  opacity: 0.8;
}

.sidebar-all-models__icon {
  display: grid;
  grid-template-columns: repeat(2, 9px);
  gap: 5px;
}

.sidebar-all-models__icon span {
  width: 9px;
  height: 9px;
  border: 2px solid white;
  display: block;
  box-sizing: border-box;
}

.sidebar-all-models__label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: white;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.9;
}

.models-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  padding: 0 40px;
  align-items: center;
}

.models-hero__poster {
  flex: 0 0 420px;
  border-radius: 10px; /* Matched with cards for consistency */
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.models-hero__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
}

.models-hero__content {
  flex: 1;
  padding-top: 20px;
}

.models-hero__meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.models-hero__title {
  font-family: var(--font-cond);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.models-hero__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-bottom: 32px;
}

.models-hero__links {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.models-hero__link-item {
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--color-blue);
  padding-bottom: 4px;
  transition: opacity 0.2s;
}

.models-hero__link-item:hover {
  opacity: 0.7;
}

.models-hero__socials {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.models-hero__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  text-transform: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}

.models-hero__social-link:hover {
  color: var(--color-white);
  border-color: var(--color-white);
}

.social-mini-icon {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

.models-hero__available {
  margin-top: 40px;
}

.models-hero__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.models-hero__platform-text {
  font-size: 0.85rem; /* Matched with .models-hero__link-item size */
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1em;
  font-family: var(--font-cond);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .models-hero__container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .models-hero__poster {
    flex: 1 1 auto;
    width: 100%;
    margin: 0 auto;
  }
  .models-hero__title {
    font-size: 3rem;
  }
  .models-hero__content {
    text-align: center;
  }
  .models-hero__links, .models-hero__socials {
    justify-content: center;
  }
}

/* Plugin Logos Section */
.plugin-logos {
  background: #fdfdfd;
  padding: 60px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.plugin-logos__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.plugin-logo {
  height: 45px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.plugin-logo img {
  height: 100%;
  width: auto;
  display: block;
}

.plugin-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* Models Grid Section */
.models-grid {
  background: #f8f8f8;
  padding: 80px 0;
  color: #111;
}

.models-grid__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.model-grid__header {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 20px;
}

.model-grid__title {
  font-family: var(--font-cond);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.model-grid__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}

.model-card {
  background: white;
  border-radius: 10px; /* Matched with home page .game-card radius */
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.05);
}

.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.model-card__img-wrap {
  aspect-ratio: 4/5;
  background: #eee;
  overflow: hidden;
}

.model-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-card__info {
  padding: 20px;
}

.model-card__name {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
}

/* Responsive Models Page */
/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #f8f8f8;
  color: #111;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.footer__branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer__logo-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer__icon {
  height: 40px;
  width: auto;
}

.footer__logo-img {
  height: 70px; /* Reduced from 90px as requested */
  width: auto;
}

.footer__hiring {
  background: var(--color-blue);
  color: white;
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
  position: relative;
  text-transform: none;
  margin-top: 10px;
}

.footer__hiring::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--color-blue);
}

.footer__nav-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__nav-title {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-link {
  font-size: 0.85rem;
  color: rgba(0,0,0,0.6);
  transition: color 0.2s;
}

.footer__nav-link:hover {
  color: #111;
}

.footer__bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(0,0,0,0.4);
}

.footer__bottom-center {
  height: 24px;
  opacity: 0.5;
}

.footer__bottom-center img {
  height: 100%;
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    gap: 60px;
    align-items: center;
    text-align: center;
  }

  .footer__branding {
    align-items: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
