:root {
      --bg: #121317;
      --bg-soft: #171a20;
      --panel: rgba(28, 32, 40, 0.88);
      --panel-strong: rgba(38, 43, 53, 0.96);
      --panel-solid: #1b1f27;
      --border: rgba(255, 255, 255, 0.08);
      --border-strong: rgba(255, 255, 255, 0.16);
      --text: #ffffff;
      --text-dim: #edf1f7;
      --muted: #a9b1c0;
      --accent: #dc2626;
      --accent-dark: #7f1d1d;
      --accent-bright: #ef4444;
      --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
      --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.22);
      --radius-xl: 40px;
      --radius-lg: 24px;
      --radius-md: 16px;
      --shell: 1200px;
      --shell-wide: 1500px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
  margin: 0;
  min-width: 320px;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dim);
  background:
    radial-gradient(circle at 12% 12%, rgba(220, 38, 38, 0.10) 0%, transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(220, 38, 38, 0.05) 0%, transparent 22%),
    linear-gradient(180deg, #16181e 0%, #121317 22%, #101116 100%);
  overflow-x: hidden;
  position: relative;
}

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; outline: none; }

    .shell { width: min(calc(100% - 64px), var(--shell)); margin: 0 auto; }
    .shell-wide { width: min(calc(100% - 64px), var(--shell-wide)); margin: 0 auto; }

    .page-glow {
      position: fixed;
      width: 620px;
      height: 620px;
      border-radius: 50%;
      filter: blur(165px);
      pointer-events: none;
      z-index: -2;
      opacity: 0.22;
    }

    .page-glow-left {
      left: -180px;
      top: 160px;
      background: radial-gradient(circle, rgba(220, 38, 38, 0.9) 0%, rgba(127, 29, 29, 0.45) 45%, transparent 72%);
    }

    .page-glow-right {
  right: -140px;
  top: 520px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.32) 0%, rgba(127, 29, 29, 0.14) 48%, transparent 74%);
}
    .site-header {
      position: sticky;
      top: 18px;
      z-index: 100;
      padding-top: 22px;
    }

    .topbar {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 32px;
      min-height: 72px;
      padding: 12px 20px 12px 24px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(27, 31, 39, 0.92), rgba(35, 40, 49, 0.88));
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .brand img {
      width: 180px;
      height: auto;
      filter: none;
    }

    .main-nav {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .main-nav a {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-dim);
      opacity: 0.82;
      transition: 0.2s;
    }

    .main-nav a:hover {
      opacity: 1;
      color: var(--accent-bright);
    }

    .topbar-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .topbar-socials {
      display: flex;
      gap: 14px;
      margin-left: 10px;
      font-size: 18px;
      color: var(--muted);
    }

    .topbar-socials a {
      transition: color 0.2s, transform 0.2s;
    }

    .topbar-socials a:hover {
      color: var(--accent-bright);
      transform: translateY(-2px);
    }
.topbar-socials svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: currentColor;
}


    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 54px;
      padding: 0 32px;
      border-radius: 14px;
      border: 1px solid var(--border-strong);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      border-color: transparent;
      box-shadow: none;
    }

    .btn-primary:hover {
      background: #b91c1c;
      box-shadow: none;
      filter: none;
    }

    .btn-outline {
      background: rgba(255, 255, 255, 0.04);
      color: var(--text);
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: none;
    }

    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255,255,255,0.2);
      box-shadow: none;
    }

    .btn-publish {
      min-height: 44px;
      padding: 0 24px;
      border-radius: 999px;
      background: rgba(220, 38, 38, 0.16);
      color: #fff;
      border: 1px solid rgba(239, 68, 68, 0.45);
      box-shadow: none;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .btn-publish:hover {
      background: rgba(220, 38, 38, 0.24);
      border-color: rgba(239, 68, 68, 0.65);
    }

    .hero {
      position: relative;
      min-height: 800px;
      margin-top: -115px;
      padding: 180px 0 80px;
      overflow: hidden;
    }

    body.home .site-header {
      position: absolute;
      top: 18px;
      left: 0;
      right: 0;
    }

    body.admin-bar.home .site-header {
      top: 50px;
    }

    body.home .hero {
      margin-top: 0;
      padding-top: 0;
      min-height: 860px;
    }

    body.home .hero-slide-inner {
      padding-top: 138px;
    }

    .hero-slide {
      display: none;
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      animation: fadeEffect 0.8s;
    }

    .hero-slide.active { display: block; }

    @keyframes fadeEffect {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .slide-bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
      opacity: 1;
    }

    .slide-overlay {
      position: absolute;
      inset: 0;
      z-index: -1;
    }

    .hero-slide-inner {
      height: 100%;
      display: flex;
      align-items: center;
      padding-top: 100px;
    }

    .hero-content {
      max-width: 700px;
      padding-left: 18px;
    }

    .eyebrow {
      margin: 0 0 12px;
      font-size: 24px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent-bright);
      text-shadow: 0 0 20px rgba(220, 38, 38, 0.25);
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(50px, 8vw, 92px);
      line-height: 0.9;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.04em;
      color: #fff;
      text-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    }

    .hero-dots {
      position: absolute;
      bottom: 40px;
      left: calc(50% - (var(--shell) / 2) + 18px);
      display: flex;
      gap: 10px;
      z-index: 10;
    }

    .hero-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.38);
      cursor: pointer;
      transition: 0.3s;
    }

    .hero-dot.active {
      background: var(--accent-bright);
      transform: scale(1.2);
      box-shadow: 0 0 18px rgba(239, 68, 68, 0.5);
    }

    .section {
      padding: 88px 0;
    }

    .section-alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    radial-gradient(circle at 15% 20%, rgba(220, 38, 38, 0.06), transparent 32%),
    rgba(18, 20, 26, 0.72);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

    .panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    radial-gradient(circle at top right, rgba(220, 38, 38, 0.10), transparent 28%),
    var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 50px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

    .section-title-large {
      font-size: 42px;
      text-transform: uppercase;
      font-weight: 900;
      color: var(--text);
      margin: 0 0 30px 0;
    }

    .release-slide {
      display: none;
      animation: fadeEffect 0.5s;
      height: 100%;
    }

    .release-slide.active { display: block; }

    .release-controls {
      position: absolute;
      top: 50px;
      right: 50px;
      display: flex;
      gap: 10px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: stretch;
    }

    .feature-media {
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid var(--border);
      background:
        radial-gradient(circle at top left, rgba(220, 38, 38, 0.12), transparent 25%),
        linear-gradient(135deg, #1d2028, #242a34);
      aspect-ratio: 16 / 9;
      min-height: 360px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      width: 100%;
      flex-shrink: 0;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
    }

    .feature-media-video-wrapper {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .feature-media-video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 50%;
      width: 177.777777%;
      height: 100%;
      border: none;
      display: block;
      transform: translateX(-50%);
    }

    .feature-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .feature-copy h2 {
      font-size: 48px;
      margin: 0 0 20px;
      text-transform: uppercase;
      font-weight: 900;
      color: var(--text);
    }

    .tags {
      display: flex;
      gap: 10px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    .tags span {
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(220, 38, 38, 0.1);
      border: 1px solid rgba(220, 38, 38, 0.2);
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--accent);
      box-shadow: none;
    }

    .carousel-arrows {
      display: flex;
      gap: 10px;
      flex: 0 0 auto;
      margin-left: auto;
      align-items: center;
    }

    .carousel-btn {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid var(--border-strong);
      background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      color: var(--text-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .carousel-btn:hover,
    .carousel-btn:active {
      border-color: var(--accent-bright);
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      box-shadow: none;
    }

    .games-header-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 40px;
    }

    .games-fullwidth-wrapper {
      width: 100vw;
      margin-left: calc(-50vw + 50%);
    }

    .cards-row {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      padding-left: calc(50vw - (var(--shell) / 2) + 32px);
      padding-right: calc(50vw - (var(--shell) / 2) + 32px);
      padding-top: 15px;
      margin-top: -15px;
      padding-bottom: 30px;
      -ms-overflow-style: none;
      scrollbar-width: none;
      scroll-behavior: smooth;
    }

    .cards-row::-webkit-scrollbar { display: none; }

    .game-card {
      flex: 0 0 320px;
      display: flex;
      flex-direction: column;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
        radial-gradient(circle at top left, rgba(220, 38, 38, 0.1), transparent 30%),
        var(--panel);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: 0.3s;
      box-shadow: var(--shadow-soft);
    }

    .game-card:hover {
      border-color: rgba(239, 68, 68, 0.45);
      transform: translateY(-8px);
      box-shadow: 0 18px 36px rgba(0,0,0,0.28);
    }

    .game-card-img {
      width: 100%;
      height: auto;
      aspect-ratio: 16 / 10;
      background: linear-gradient(135deg, #232834, #1c2028);
      position: relative;
      overflow: hidden;
    }

    .game-card-img::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 28%;
      background: linear-gradient(to top, rgba(10, 11, 14, 0.45), transparent);
      pointer-events: none;
    }

    .game-card-img img {
      width: 100% !important;
      height: 100% !important;
      min-width: 100%;
      min-height: 100%;
      object-fit: cover !important;
      object-position: center center !important;
      display: block;
    }

    .game-card-link {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .game-card-body {
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1 1 auto;
    }

    .game-card-body { padding: 24px; }

    .game-card h3 {
      font-size: 18px;
      margin: 0 0 5px;
      text-transform: uppercase;
      font-weight: 800;
      color: var(--text);
    }

    .game-platforms {
      display: flex;
      gap: 12px;
      margin-top: 15px;
      color: #d0d7e5;
      font-size: 15px;
    }

    .publish-panel {
      position: relative;
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 80px 60px;
      display: flex;
      align-items: center;
      overflow: hidden;
      min-height: 450px;
      box-shadow: var(--shadow);
      background: linear-gradient(135deg, rgba(20, 22, 28, 0.75), rgba(31, 35, 43, 0.76));
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .publish-video-wrapper {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 150%;
      height: 150%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 0;
    }

    .publish-video-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .publish-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(18,19,23,0.97) 0%,
    rgba(18,19,23,0.9) 46%,
    rgba(60, 18, 18, 0.32) 100%
  );
  z-index: 1;
}

    .publish-content {
      position: relative;
      z-index: 2;
      max-width: 600px;
    }

    .newsletter-wrapper {
      position: relative;
      padding: 10px 0 0;
      display: flex;
      justify-content: center;
    }

    .aurora-glow {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
      width: 70%; height: 150%;
      background: radial-gradient(circle, rgba(220, 38, 38, 0.4) 0%, rgba(139, 92, 246, 0.2) 50%, transparent 80%);
      filter: blur(80px); z-index: -2; animation: pulseGlow 6s infinite alternate; pointer-events: none;
    }

    @keyframes pulseGlow {
      from { transform: translate(-50%, -50%) scale(0.98); opacity: 0.82; }
      to { transform: translate(-50%, -50%) scale(1.04); opacity: 1; }
    }

    .newsletter-box {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 84px 48px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  width: 100%;
  max-width: 980px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  isolation: isolate;
}

    .newsletter-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.12), transparent 26%),
    radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.06), transparent 24%);
  z-index: -1;
}

    .newsletter-box::after {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: calc(var(--radius-xl) - 1px);
      border: 1px solid rgba(255,255,255,0.04);
      pointer-events: none;
    }

    .newsletter-character {
      position: absolute;
      right: -24px;
      top: 50%;
      bottom: auto;
      height: 128%;
      object-fit: contain;
      z-index: 0;
      opacity: 0.48;
      pointer-events: none;
      transition: transform 0.5s ease;
      transform: translateY(-50%);
      object-position: 68% center;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 60%);
      mask-image: linear-gradient(to right, transparent 0%, black 60%);
    }

    .newsletter-box:hover .newsletter-character {
      transform: translateY(-50%) scale(1.03) translateX(-5px);
    }

    .newsletter-content-wrapper {
      position: relative;
      z-index: 1;
      max-width: 680px;
      margin: 0 auto;
    }

    .badge {
      display: inline-block;
      padding: 8px 18px;
      background: rgba(220, 38, 38, 0.1);
      border: 1px solid rgba(220, 38, 38, 0.2);
      border-radius: 999px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--accent-bright);
      margin-bottom: 22px;
      letter-spacing: 0.1em;
      box-shadow: none;
    }

    .newsletter-form {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 16px;
      margin-top: 32px;
      align-items: stretch;
    }

    .newsletter-form-row {
      display: flex;
      justify-content: center;
      gap: 12px;
      align-items: stretch;
    }

    .newsletter-form input {
      background: rgba(12, 14, 18, 0.58);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 0 25px;
      border-radius: 16px;
      color: var(--text);
      width: 400px;
      max-width: 100%;
      transition: 0.3s;
      min-height: 58px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .newsletter-form input::placeholder {
      color: rgba(255,255,255,0.5);
    }

    .newsletter-form input:focus {
      border-color: rgba(239, 68, 68, 0.5);
      background: rgba(12, 14, 18, 0.82);
      box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
    }

    .newsletter-title {
      font-size: 56px;
      text-transform: uppercase;
      font-weight: 900;
      margin: 0;
      color: var(--text);
    }

    .newsletter-description {
      color: var(--text-dim);
      margin: 16px auto 0;
      font-size: 17px;
      max-width: 560px;
      line-height: 1.75;
    }

    .newsletter-consent {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 12px;
      max-width: 640px;
      margin: 0 auto;
      color: rgba(255,255,255,0.78);
      font-size: 13px;
      line-height: 1.5;
      text-align: left;
    }

    .newsletter-consent input {
      width: 18px;
      height: 18px;
      margin: 2px 0 0;
      accent-color: var(--accent);
      flex: 0 0 auto;
    }

    .pr-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 30px;
    }

    .presskit-panel,
    .creators-panel {
      position: relative;
      border-radius: var(--radius-xl);
      padding: 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .presskit-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    radial-gradient(circle at bottom left, rgba(220,38,38,0.08), transparent 28%),
    var(--panel);
  border: 1px solid var(--border);
}

   .creators-panel {
  background:
    radial-gradient(circle at top left, rgba(220,38,38,0.10) 0%, transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    var(--panel);
  border: 1px solid rgba(239, 68, 68, 0.18);
  text-align: center;
  align-items: center;
}

.creators-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}

.creators-actions .btn {
  margin: 0;
}

    .panel-character {
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      object-fit: cover;
      object-position: right center;
      z-index: 0;
      opacity: 0.32;
      pointer-events: none;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
      mask-image: linear-gradient(to right, transparent 0%, black 50%);
      transition: transform 0.4s ease;
    }

    .presskit-panel:hover .panel-character,
    .creators-panel:hover .panel-character {
      transform: scale(1.05);
    }

    .panel-content {
      position: relative;
      z-index: 1;
    }

    .creators-icon {
      font-size: 48px;
      color: var(--accent-bright);
      margin-bottom: 20px;
      text-shadow: 0 0 22px rgba(220, 38, 38, 0.22);
    }

    .news-header-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 40px;
    }

    .news-fullwidth-wrapper {
      width: 100vw;
      margin-left: calc(-50vw + 50%);
    }

    .news-row {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      padding-left: calc(50vw - (var(--shell) / 2) + 32px);
      padding-right: calc(50vw - (var(--shell) / 2) + 32px);
      padding-top: 15px;
      margin-top: -15px;
      padding-bottom: 30px;
      -ms-overflow-style: none;
      scrollbar-width: none;
      scroll-behavior: smooth;
    }

    .news-row::-webkit-scrollbar { display: none; }

    .news-card {
  flex: 0 0 380px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    radial-gradient(circle at top left, rgba(220,38,38,0.05), transparent 28%),
    var(--panel);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: 0.3s;
  box-shadow: var(--shadow-soft);
}

    .news-card:hover {
      border-color: rgba(239, 68, 68, 0.38);
      transform: translateY(-4px);
      box-shadow: 0 14px 30px rgba(0,0,0,0.26);
    }

    .news-card-img {
      width: 100%;
      height: 218px;
      aspect-ratio: auto;
      background: linear-gradient(135deg, #232834, #1c2028);
      position: relative;
      overflow: hidden;
    }

    .news-card-img::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 42%;
      background: linear-gradient(to top, rgba(9, 10, 14, 0.4), transparent);
    }

    .news-card-img img {
      width: 100% !important;
      height: 100% !important;
      min-width: 100%;
      min-height: 100%;
      object-fit: cover !important;
      object-position: center center !important;
      display: block;
    }

    .news-date {
      color: #ffb3b3;
      font-weight: 800;
      font-size: 11px;
      text-transform: uppercase;
      margin-bottom: 10px;
      display: block;
      letter-spacing: 0.08em;
    }

    .site-footer {
      padding: 74px 0 32px;
      background: linear-gradient(180deg, #be1e2d 0%, #a41221 100%);
      border-top: 1px solid rgba(255,255,255,0.18);
      margin-top: 0;
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .site-footer::before {
      display: none;
    }

    .footer-top {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, .8fr));
      gap: 34px;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .footer-branding .custom-logo-link img,
.footer-branding .brand-link img {
  width: 180px;
  max-width: 100%;
  filter: none;
}

.footer-copy {
  margin: 22px 0 0;
  max-width: 320px;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  font-size: 14px;
}

.footer-title {
      text-transform: uppercase;
      font-size: 14px;
      margin: 0 0 20px;
      font-weight: 800;
      letter-spacing: 0.08em;
      color: #ffffff;
    }

    .footer-list {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 14px;
      line-height: 1.95;
      color: rgba(255, 255, 255, 0.92);
    }

    .footer-list li {
      display: block;
      margin-bottom: 6px;
    }

    .footer-list li i {
      width: 16px;
      text-align: center;
      color: #ffffff;
      flex-shrink: 0;
      font-size: 16px;
    }

    .footer-list a {
      color: rgba(255, 255, 255, 0.88);
      transition: color 0.2s ease;
    }

    .footer-list a:hover {
      color: #ffffff;
      text-decoration: underline;
    }

    .footer-note {
      margin-top: 34px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.25);
      font-size: 12px;
      color: rgba(255, 255, 255, 0.86);
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    @media (max-width: 1200px) {
      .footer-top { grid-template-columns: 1.25fr repeat(2, minmax(0,1fr)); }
    }

    @media (max-width: 1024px) {
      .feature-grid,
      .footer-top,
      .pr-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .publish-panel {
        padding: 40px 30px;
        text-align: center;
      }

      .publish-overlay {
        background: rgba(18, 19, 23, 0.88);
      }

      .publish-content {
        margin: 0 auto;
      }

      .newsletter-form-row {
        flex-direction: column;
        align-items: center;
      }

      .newsletter-form input {
        width: 100%;
        height: 54px;
      }

      .cards-row,
      .news-row {
        padding-left: 20px;
        padding-right: 20px;
      }

      .main-nav { display: none; }
      .newsletter-character,
      .panel-character { display: none; }

      .newsletter-consent {
        max-width: 100%;
      }

      .feature-media { min-height: 240px; }
      .newsletter-box { padding: 64px 28px; }
    }

    @media (max-width: 767px) {
      .shell,
      .shell-wide {
        width: min(calc(100% - 32px), var(--shell));
      }

      .topbar {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px 18px;
        border-radius: 28px;
      }

      .topbar-actions {
        flex-wrap: wrap;
        justify-content: space-between;
      }

      .feature-copy h2,
      .section-title-large {
        font-size: 34px;
      }

      .release-controls {
        position: static;
        margin-bottom: 24px;
        justify-content: flex-end;
      }

      .panel { padding: 28px; }
      .feature-media { min-height: 220px; }

      .newsletter-box { padding: 56px 22px; }
      .newsletter-title { font-size: 36px !important; }

      .site-footer { padding-top: 64px; }
    }


body.admin-bar .site-header { top: 18px; }
.screen-reader-text{position:absolute!important;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;}
.site-main{display:block;}
.site-header .shell, .site-header .shell-wide{position:relative;z-index:3;}
.brand, .brand-link, .custom-logo-link{display:inline-flex;align-items:center;}
.brand img, .brand-link img, .custom-logo-link img{width:180px;filter:none;height:auto;}
.main-nav ul{list-style:none;margin:0;padding:0;display:flex;justify-content:center;gap:20px;flex-wrap:wrap;}
.main-nav li{position:relative;list-style:none;}
.main-nav li.menu-item-has-children > a::after{content:'\f078';font-family:'Font Awesome 6 Free';font-weight:900;font-size:10px;margin-left:8px;opacity:.72;}
.main-nav .sub-menu{position:absolute;top:100%;left:0;min-width:240px;display:block;padding:14px 0;margin:14px 0 0;background:linear-gradient(135deg, rgba(27,31,39,.98), rgba(35,40,49,.96));border:1px solid rgba(255,255,255,.1);border-radius:20px;box-shadow:0 20px 50px rgba(0,0,0,.38);opacity:0;visibility:hidden;transform:translateY(8px);transition:.25s;z-index:999;}
.main-nav .sub-menu li{display:block;}
.main-nav .sub-menu a{display:block;padding:12px 18px;font-size:11px;opacity:.92;}
.main-nav li:hover > .sub-menu, .main-nav li:focus-within > .sub-menu{opacity:1;visibility:visible;transform:translateY(0);}


/* Games dropdown: split the desktop dropdown into columns after 8 items. */
.main-nav .anshar-games-menu--columns > .sub-menu {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(8, auto);
  grid-auto-columns: minmax(220px, max-content);
  gap: 0 24px;
  width: max-content;
  max-width: calc(100vw - 48px);
  padding: 18px 20px;
}
.main-nav .anshar-games-menu--columns > .sub-menu li {
  break-inside: avoid;
  white-space: nowrap;
}
.main-nav .anshar-games-menu--columns > .sub-menu a {
  min-width: 190px;
}
@media (max-width: 980px) {
  .main-nav .anshar-games-menu--columns > .sub-menu {
    display: block;
    width: auto;
    max-width: none;
    padding: 14px 0;
  }
  .main-nav .anshar-games-menu--columns > .sub-menu a {
    min-width: 0;
  }
}
.nav-toggle{display:none;align-items:center;justify-content:center;width:46px;height:46px;border-radius:999px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.04);color:#fff;cursor:pointer;}
.mobile-menu{display:none;position:relative;z-index:2;width:min(calc(100% - 64px), var(--shell));margin:12px auto 0;padding:18px;border-radius:24px;background:linear-gradient(135deg, rgba(27,31,39,.96), rgba(35,40,49,.94));border:1px solid rgba(255,255,255,.12);box-shadow:0 16px 40px rgba(0,0,0,.35);}
.mobile-menu.is-open{display:block;}
.mobile-menu ul{list-style:none;margin:0;padding:0;}
.mobile-menu li{list-style:none;}
.mobile-menu a{display:block;padding:12px 8px;font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;}
.mobile-menu .sub-menu{padding-left:14px;padding-bottom:8px;}
.custom-logo-link img{width:180px;}
main > .elementor{position:relative;z-index:1;}
.elementor-section.elementor-section-boxed > .elementor-container{max-width:none;}
.elementor-widget-container > .hero:first-child{margin-top:0;}
.page-default, .page-default-content, .entry-default, .archive-default, .single-default{padding:150px 0 80px;}
.page-default .content-shell, .entry-default .content-shell, .archive-default .content-shell, .single-default .content-shell{width:min(calc(100% - 64px), 980px);margin:0 auto;}
.page-hero, .archive-hero{padding:150px 0 24px;}
.page-hero-inner, .content-card, .archive-intro, .archive-game-card, .archive-news-card, .single-game-media, .single-game-content, .gallery-card{border-radius:28px;background:linear-gradient(135deg, rgba(27,31,39,.92), rgba(35,40,49,.88));border:1px solid rgba(255,255,255,.08);box-shadow:0 14px 40px rgba(0,0,0,.26);}
.page-hero-inner, .content-card, .archive-intro{padding:34px;}
.page-hero-inner h1, .archive-intro h1, .single-game-content h1, .content-card h1, .content-card h2, .content-card h3, .archive-news-card h3, .archive-game-card h3{color:var(--text);}
.page-hero-inner p, .archive-intro p, .content-card p, .content-card li, .single-game-content p, .archive-news-card p, .archive-game-card p{color:var(--text-dim);}
.entry-content a, .content-card a{color:#fff;text-decoration:underline;text-decoration-color:rgba(255,255,255,.28);}
.entry-content img{border-radius:18px;height:auto;}
.archive-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;}
.archive-grid.archive-games{grid-template-columns:repeat(2,minmax(0,1fr));}
.archive-game-card, .archive-news-card{display:flex;flex-direction:column;overflow:hidden;min-height:100%;}
.archive-game-card .card-media, .archive-news-card .card-media{display:block;aspect-ratio:16/10;overflow:hidden;}
.archive-game-card .card-media img, .archive-news-card .card-media img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease;}
.archive-game-card:hover .card-media img, .archive-news-card:hover .card-media img{transform:scale(1.04);}
.archive-game-card .card-body, .archive-news-card .card-body{padding:24px;}
.platform-tags, .meta-pills{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px;}
.platform-tags span, .meta-pills span{display:inline-flex;align-items:center;gap:8px;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);font-size:12px;color:var(--text-dim);}
.small-btn{min-height:44px;padding:0 18px;margin-top:20px;}
.single-game-shell{display:grid;grid-template-columns:1.06fr .94fr;gap:24px;}
.single-game-media{overflow:hidden;min-height:420px;}
.single-game-media img{width:100%;height:100%;object-fit:cover;}
.single-game-content{padding:34px;}
.two-col-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;}
.gallery-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;}
.gallery-card{overflow:hidden;}
.gallery-card img{width:100%;height:100%;object-fit:cover;}
.pagination-wrap{padding-top:28px;}
.pagination-wrap .nav-links{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;}
.pagination-wrap .page-numbers{display:inline-flex;align-items:center;justify-content:center;min-width:44px;min-height:44px;padding:0 16px;border-radius:999px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);color:var(--text-dim);}
.pagination-wrap .current{background:rgba(220,38,38,.22);border-color:rgba(239,68,68,.42);color:#fff;}
.footer-branding img{width:180px;filter:none;}
.not-found-wrap{padding:170px 0 90px;}
.comment-respond, .comments-area{display:none;}
@media (max-width: 1100px){
  .archive-grid, .archive-grid.archive-games, .single-game-shell, .two-col-grid, .gallery-grid{grid-template-columns:1fr;}
}
@media (max-width: 900px){
  .main-nav{display:none;}
  .nav-toggle{display:inline-flex;}
  .topbar-socials{display:none;}
}
@media (max-width: 768px){
  body.admin-bar .site-header{top:0;}
  .shell, .shell-wide, .mobile-menu, .page-default .content-shell, .entry-default .content-shell, .archive-default .content-shell, .single-default .content-shell{width:min(calc(100% - 32px), var(--shell));}
  .page-default, .page-default-content, .entry-default, .archive-default, .single-default, .page-hero, .archive-hero{padding-top:128px;}
  .page-hero-inner, .content-card, .archive-intro, .single-game-content{padding:24px;}
}

@media (max-width: 782px){
  body.admin-bar.home .site-header{top:46px;}
}


body.home .elementor-widget:not(:last-child){margin-bottom:0;}
body.home .elementor-section .elementor-container,
body.home .elementor-section .elementor-column,
body.home .elementor-section .elementor-widget-wrap,
body.home .elementor-section .elementor-widget-container{max-width:none;width:100%;}
body.home .elementor-column-gap-default > .elementor-column > .elementor-element-populated,
body.home .elementor-column-gap-narrow > .elementor-column > .elementor-element-populated,
body.home .elementor-column-gap-extended > .elementor-column > .elementor-element-populated,
body.home .elementor-column-gap-wide > .elementor-column > .elementor-element-populated,
body.home .elementor-column-gap-wider > .elementor-column > .elementor-element-populated{padding:0;}
body.home .elementor-widget-container > .anshar-hero-widget,
body.home .elementor-widget-container > .anshar-breakout-section{position:relative;width:100vw !important;max-width:100vw !important;margin-left:calc(50% - 50vw) !important;margin-right:calc(50% - 50vw) !important;}
body.home .elementor-widget-container > .anshar-breakout-section .shell{width:min(calc(100% - 64px), var(--shell));margin:0 auto;}
body.home .elementor-widget-container > .anshar-hero-widget .shell{width:min(calc(100% - 64px), var(--shell));margin:0 auto;}
body.home .elementor-widget-container > .anshar-breakout-section .games-fullwidth-wrapper,
body.home .elementor-widget-container > .anshar-breakout-section .news-fullwidth-wrapper{width:100vw;margin-left:calc(-50vw + 50%);}
body.home .elementor-widget-container > .anshar-breakout-section .cards-row{padding-left:calc(50vw - (var(--shell) / 2) + 32px);padding-right:calc(50vw - (var(--shell) / 2) + 32px);}
body.home .elementor-widget-container > .anshar-breakout-section .news-row{padding-left:calc(50vw - (var(--shell) / 2) + 32px);padding-right:calc(50vw - (var(--shell) / 2) + 32px);}
body.home .elementor-widget-container > .anshar-hero-widget{overflow:hidden;}
body.home .elementor-widget-container > .anshar-hero-widget .hero-content{max-width:700px;padding-left:18px;}
body.home .elementor-widget-container > .anshar-hero-widget .hero-dots{left:calc(50% - (var(--shell) / 2) + 18px);}
body.home .elementor-widget-container > .anshar-hero-widget .slide-bg-img{object-position:center center;}
@media (max-width:1024px){
  body.home .elementor-widget-container > .anshar-breakout-section .cards-row,
  body.home .elementor-widget-container > .anshar-breakout-section .news-row{padding-left:20px;padding-right:20px;}
}
@media (max-width:767px){
  body.home .elementor-widget-container > .anshar-breakout-section .shell,
  body.home .elementor-widget-container > .anshar-hero-widget .shell{width:min(calc(100% - 32px), var(--shell));}
  body.home .elementor-widget-container > .anshar-hero-widget .hero-dots{left:16px;}
}


.site-header,
body.home .site-header,
body.admin-bar .site-header,
body.admin-bar.home .site-header {
  position: sticky;
  top: 18px;
  left: auto;
  right: auto;
  padding-top: 22px;
  z-index: 1000;
}
@media (max-width:782px){
  body.admin-bar .site-header,
  body.admin-bar.home .site-header { top: 46px; }
}
@media (min-width:783px){
  body.admin-bar .site-header,
  body.admin-bar.home .site-header { top: 50px; }
}
body.home .hero { margin-top: 0; }
.site-header--template .elementor-section,
.site-footer--template .elementor-section { margin:0; }
.site-header--template .elementor-widget-wrap,
.site-footer--template .elementor-widget-wrap { padding:0 !important; }
.site-header--template .elementor-container,
.site-footer--template .elementor-container { max-width:none !important; }
.anshar-template-header,
.anshar-template-footer { width:100%; }

.section-heading-block { max-width: 560px; flex: 1 1 auto; padding-right: 40px; }
.section-heading {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 12px;
  color: var(--text);
}
.section-heading-text {
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}
.section-mini-btn { min-height:46px; padding:0 20px; margin-left:10px; }
.games-header-row,
.news-header-row {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 32px;
  margin-bottom: 34px;
}
.cards-row,
.news-row {
  padding-top: 0;
  margin-top: 0;
}
.game-card-date { color: var(--muted); font-size: 12px; margin: 0; }
.news-card-body { padding:25px; }
.news-card-title { margin:0 0 10px; text-transform:uppercase; font-size:18px; color:var(--text); }
.news-card-excerpt { color: var(--muted); font-size: 14px; line-height: 1.5; margin:0; }
.release-description { color: var(--muted); line-height: 1.6; margin: 0; }
.feature-actions,
.publish-actions,
.press-actions { margin-top: 30px; display:flex; gap:15px; flex-wrap:wrap; }
.publish-title { font-size:42px; text-transform:uppercase; font-weight:900; margin:0 0 20px; color:var(--text); }
.publish-description { color: var(--text-dim); line-height:1.8; margin-bottom:30px; font-size:16px; }
.publish-btn { min-height:60px; font-size:14px; }
.press-title { font-size:36px; text-transform:uppercase; font-weight:900; margin:0 0 20px; color:var(--text); }
.press-description { color: var(--muted); line-height:1.8; margin-bottom:30px; }
.creators-title { font-size:28px; text-transform:uppercase; font-weight:900; margin:0 0 15px; color:var(--text); }
.creators-description { color: var(--muted); line-height:1.6; margin-bottom:25px; font-size:14px; }
.creators-actions { gap: 18px; }

.feature-media-video-wrapper iframe {
  top: var(--video-y, 50%);
  left: var(--video-x, 50%);
  width: var(--video-width, 177.777777%);
  height: var(--video-height, 100%);
  transform: translate(-50%, -50%);
}

.site-footer .footer-grid,
.anshar-template-footer .footer-grid {
  display:grid !important;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 42px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.site-footer .footer-grid > div,
.anshar-template-footer .footer-grid > div { min-width:0; }
.site-footer .footer-copy,
.anshar-template-footer .footer-copy {
  margin: 22px 0 0;
  max-width: 320px;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  font-size: 14px;
}
.site-footer .footer-note,
.anshar-template-footer .footer-note {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}
.site-footer .footer-list li,
.anshar-template-footer .footer-list li {
  display:block;
  margin-bottom:8px;
}
.site-footer .footer-brand .custom-logo-link img,
.site-footer .footer-brand .brand-link img,
.anshar-template-footer .footer-brand .custom-logo-link img,
.anshar-template-footer .footer-brand .brand-link img {
  width: 180px;
  max-width: 100%;
}
.site-footer--template > .elementor,
.site-footer--template > .elementor-section-wrap,
.site-footer--template > .elementor-section {
  width:100%;
}

@media (max-width: 1200px) {
  .site-footer .footer-grid,
  .anshar-template-footer .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
@media (max-width: 1024px) {
  .games-header-row,
  .news-header-row { flex-direction:column; align-items:flex-start; }
  .site-footer .footer-grid,
  .anshar-template-footer .footer-grid { grid-template-columns:1fr; gap:40px; }
}



body.home .site-header,
body.home.admin-bar .site-header {
  position: fixed;
  width: 100%;
}

body.home .site-main {
  padding-top: 0;
}

body.home .anshar-hero-widget,
body.home .hero {
  margin-top: 0 !important;
}

body.home .hero-slide-inner {
  padding-top: 138px;
}

.game-card-img img,
.news-card-img img {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.game-card,
.news-card {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .section-heading-block {
    max-width: 100%;
    padding-right: 0;
  }

  .carousel-arrows {
    margin-left: 0;
  }
}



.games-header-row,
.news-header-row {
  align-items: flex-start;
  gap: 44px;
}

.section-heading-block {
  max-width: 640px;
  padding-right: 72px;
}

.carousel-arrows {
  margin-left: auto;
  flex: 0 0 auto;
  align-self: flex-start;
}

.cards-row,
.news-row {
  padding-left: calc(50vw - (var(--shell) / 2) + 40px);
  padding-right: calc(50vw - (var(--shell) / 2) + 40px);
}

.game-card-img,
.news-card-img {
  height: 220px;
  aspect-ratio: auto;
}

.game-card-img img,
.news-card-img img {
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: scale(1.08) translateZ(0);
}

.game-card:hover .game-card-img img,
.news-card:hover .news-card-img img {
  transform: scale(1.12) translateZ(0);
}

.site-header {
  padding-top: 14px;
}

body.home .site-header,
body.home.admin-bar .site-header {
  top: 0;
}

body.admin-bar .site-header,
body.admin-bar.home .site-header {
  top: 32px;
}

body.home .hero-slide-inner {
  padding-top: 118px;
}

.anshar-template-editor-preview {
  background: #0b0d12;
}

.anshar-template-editor-main {
  min-height: 100vh;
}

@media (max-width: 1200px) {
  .section-heading-block {
    max-width: 560px;
    padding-right: 40px;
  }
}

@media (max-width: 1024px) {
  .games-header-row,
  .news-header-row {
    gap: 24px;
  }

  .section-heading-block {
    max-width: 100%;
    padding-right: 0;
  }

  .carousel-arrows {
    margin-left: 0;
  }

  .cards-row,
  .news-row {
    padding-left: 16px;
    padding-right: 16px;
  }
}


.games-page-header {
  position: relative;
  padding: 210px 0 100px;
  margin-top: -115px;
}
.games-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}
.games-page-title {
  font-size: clamp(40px, 5vw, 56px);
  text-transform: uppercase;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 15px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
  letter-spacing: -0.02em;
}
.games-page-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
}

.anshar-publish-page-header .games-header-bg {
  object-position: center center;
}
.anshar-publish-page-hero-inner {
  max-width: 600px;
}
.anshar-publish-page-subtitle + .anshar-publish-hero-btn,
.anshar-publish-page-title + .anshar-publish-hero-btn {
  margin-top: 28px;
}
body.page .elementor-widget-container > .anshar-publish-page-header {
  position: relative;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}
body.page .elementor-widget-container > .anshar-publish-page-header .shell {
  width: min(calc(100% - 64px), var(--shell));
  margin: 0 auto;
}
.anshar-games-catalog-section {
  padding-top: 24px;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.filters-sidebar {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)), var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 120px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.search-bar {
  position: relative;
  margin-bottom: 30px;
}
.search-bar input {
  width: 100%;
  background: rgba(12, 14, 18, 0.58);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0 40px 0 20px;
  border-radius: 12px;
  color: var(--text);
  min-height: 48px;
  transition: 0.3s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  font-size: 13px;
}
.search-bar input::placeholder { color: rgba(255,255,255,0.5); }
.search-bar i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.5);
}
.filter-group { margin-bottom: 32px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--accent-bright);
  letter-spacing: 0.1em;
}
.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-item { margin-bottom: 12px; }
.filter-item label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.filter-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}
.anshar-filter-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.catalog-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 10px 0;
  gap: 18px;
  flex-wrap: wrap;
}
.results-count {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}
.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.sort-select {
  background: rgba(12, 14, 18, 0.58);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  padding: 10px 36px 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.game-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)), radial-gradient(circle at top left, rgba(220, 38, 38, 0.1), transparent 30%), var(--panel);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: 0.3s;
  box-shadow: var(--shadow-soft);
}
.game-card:hover {
  border-color: rgba(239, 68, 68, 0.45);
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.28);
}
.game-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #232834, #1c2028);
  position: relative;
  overflow: hidden;
}
.game-card-img::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(10, 11, 14, 0.35), transparent);
  pointer-events: none;
}
.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.game-card-body { padding: 20px; }
.game-card h3 {
  font-size: 16px;
  margin: 0 0 5px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text);
}
.game-card-date {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}
.game-platforms {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  color: #d0d7e5;
  font-size: 14px;
}
.anshar-archive-pagination {
  margin-top: 34px;
}
.anshar-archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  margin-right: 8px;
}
.anshar-archive-pagination .page-numbers.current,
.anshar-archive-pagination .page-numbers:hover {
  background: var(--accent);
  border-color: transparent;
}

.game-single-header {
  position: relative;
  padding: 180px 0 60px;
  margin-top: -115px;
}
.game-single-header .game-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  opacity: 0.38;
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}
.quick-tags,
.game-sidebar-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.quick-tags {
  margin-bottom: 20px;
}
.game-sidebar-tags {
  margin: 0 0 18px;
}
.quick-tags span,
.game-sidebar-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(239,68,68,0.22);
  background: rgba(220,38,38,0.08);
  color: var(--accent-bright);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.game-title {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  margin: 0 0 18px;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: -0.03em;
  font-weight: 900;
}
.hero-dev-info {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}
.hero-dev-info img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}
.hero-dev-info span { color: rgba(255,255,255,0.82); font-size: 14px; }
.hero-dev-info strong { color: var(--text); }
.anshar-single-main-wrap { padding-bottom: 88px; }
.game-details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(360px, 1fr);
  gap: 50px;
  align-items: start;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}
.game-main-col { min-width: 0; }
.game-media-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  aspect-ratio: 16 / 9;
  position: relative;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.game-media-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  background: #000;
}
.game-description,
.features-section {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  margin-bottom: 0;
}
.game-description h2,
.features-section h2 {
  margin-top: 0;
  margin-bottom: 18px;
  color: var(--text);
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.game-description .entry-content p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 20px;
}
.features-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.feature-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 18px;
}
.feature-item h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.15;
}
.feature-item p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  line-height: 1.75;
}
.steam-widget-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.steam-widget-container iframe {
  max-width: 100%;
  display: block;
  min-height: 190px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.game-sidebar-col { min-width: 0; }
.game-sidebar {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)), var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 120px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.game-cover-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
  gap: 16px;
}
.info-row:last-of-type { margin-bottom: 24px; }
.game-sidebar-tags + .info-row {
  border-top: 1px solid rgba(255,255,255,0.04);
}
.info-label { color: var(--muted); font-weight: 600; }
.info-val { font-weight: 800; color: var(--text); text-align: right; }
.info-val--accent { color: var(--accent-bright); }
.info-val--icons {
  font-size: 16px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.game-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}
.game-sidebar-actions .btn {
  width: 100%;
  min-height: 54px;
}
.developer-card {
  margin-top: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)), rgba(14,16,20,0.88);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 28px 26px 30px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.developer-card-logo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0,0,0,0.22);
}
.developer-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.developer-card-title {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.1;
}
.developer-card-text {
  margin: 0;
  color: rgba(255,255,255,0.74);
  line-height: 1.75;
  font-size: 15px;
}

@media (max-width: 1200px) {
  .games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .catalog-layout,
  .game-details-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .filters-sidebar,
  .game-sidebar { position: static; }
}
@media (max-width: 767px) {
  .games-page-header,
  .game-single-header {
    padding-top: 170px;
    margin-top: -90px;
  }
  .games-grid { grid-template-columns: 1fr; }
  .game-title { font-size: 38px; }
  .game-media-wrapper iframe { min-height: 260px; }
  .game-description,
  .features-section,
  .game-sidebar,
  .filters-sidebar { padding: 24px; }
  .catalog-top-bar,
  .sort-wrapper { align-items: flex-start; }
  .sort-wrapper { width: 100%; justify-content: space-between; }
}



.hero-dev-info { padding: 8px 16px 8px 8px; }
.hero-dev-info img { background:#000; box-shadow:0 0 0 1px rgba(255,255,255,0.08); }
.site-footer { padding: 80px 0 40px; background: var(--accent); border-top: none; margin-top: 0; color:#fff; position:relative; overflow:hidden; }
.site-footer .footer-grid { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr 1.2fr; gap:42px; position:relative; z-index:1; }
.site-footer .footer-title { text-transform:uppercase; font-size:14px; margin:0 0 20px; font-weight:800; letter-spacing:0.08em; color:#fff; }
.site-footer .footer-list { list-style:none; padding:0; margin:0; font-size:14px; line-height:2; color:rgba(255,255,255,.88); }
.site-footer .footer-list li { display:flex; align-items:center; gap:12px; margin-bottom:8px; }
.site-footer .footer-list--icons li { align-items:flex-start; }
.site-footer .footer-list i { width:16px; text-align:center; color:#fff; flex-shrink:0; font-size:16px; margin-top:4px; }
.site-footer .footer-list a, .site-footer .footer-list span { color:rgba(255,255,255,.88); transition:color .2s ease; }
.site-footer .footer-list a:hover { color:#fff; text-decoration:underline; }
.site-footer .footer-copy { color:rgba(255,255,255,.85); font-size:14px; line-height:1.6; margin:0; }
.site-footer .footer-socials { margin-left:0; margin-top:20px; }
.site-footer .footer-note { margin-top:60px; padding-top:20px; border-top:1px solid rgba(255,255,255,.25); font-size:12px; color:rgba(255,255,255,.82); position:relative; z-index:1; }
.site-footer .footer-note--split { display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; }
@media (max-width:1200px){ .site-footer .footer-grid{ grid-template-columns:1.4fr 1fr 1fr 1fr; } }
@media (max-width:1024px){ .site-footer .footer-grid{ grid-template-columns:1fr; gap:40px; } .game-details-layout{ grid-template-columns:1fr; margin-top:0; gap:40px; } .game-sidebar{ position:static; order:-1; } }
@media (max-width:767px){ .game-single-header{ padding:180px 0 60px; } .game-title{ font-size:38px; } }


.filter-item--platform .filter-label-content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.filter-item--platform .filter-label-content i {
  width: 18px;
  text-align: center;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
}
.filter-item--platform:hover .filter-label-content i,
.filter-item--platform input:checked + .filter-label-content i {
  color: var(--accent-bright);
}
.games-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.game-card {
  display: flex;
  flex-direction: column;
}
.game-card-img {
  aspect-ratio: 16 / 8.6;
}
.game-card-img img {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
}
.game-card:hover .game-card-img img {
  transform: scale(1.06);
}
.game-card-body {
  padding: 18px 20px 18px;
}
.game-card h3 {
  font-size: 15px;
  line-height: 1.08;
  margin: 0 0 8px;
}
.game-card-date {
  font-size: 12px;
}
.game-platforms {
  margin-top: 12px;
}
.site-header--blurred .topbar {
  background: linear-gradient(135deg, rgba(16, 18, 24, 0.72), rgba(26, 30, 38, 0.76));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: rgba(255,255,255,0.15);
}
@media (max-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .game-card-img {
    aspect-ratio: 16 / 9;
  }
}



.games-grid .game-card-img {
  height: 158px !important;
  aspect-ratio: auto !important;
}
.games-grid .game-card-img img {
  width: 100% !important;
  height: 100% !important;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
}
.games-grid .game-card-body {
  padding: 16px 18px 18px !important;
}
.games-grid .game-card h3 {
  margin: 0 0 10px !important;
}
@media (max-width: 767px) {
  .games-grid .game-card-img {
    height: 170px !important;
  }
}

.site-header--blurred .topbar {
  background: linear-gradient(135deg, rgba(15, 17, 23, 0.58), rgba(22, 26, 33, 0.68)) !important;
  backdrop-filter: blur(30px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(140%) !important;
  border-color: rgba(255,255,255,0.18) !important;
}
.site-header--blurred::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.filter-item--platform .filter-label-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}



.games-header-row,
.news-header-row {
  margin-bottom: 52px !important;
  align-items: flex-start !important;
}
.games-header-row .section-heading-block,
.news-header-row .section-heading-block {
  max-width: 640px;
  padding-right: 96px !important;
  padding-bottom: 8px;
}
.games-header-row .carousel-arrows,
.news-header-row .carousel-arrows {
  margin-left: auto !important;
  align-self: flex-start !important;
  padding-top: 2px;
}
.games-fullwidth-wrapper,
.news-fullwidth-wrapper {
  margin-top: 6px;
}
.cards-row,
.news-row {
  padding-top: 6px !important;
  margin-top: 0 !important;
}

.newsletter-form {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-consent {
  display: grid !important;
  grid-template-columns: 18px minmax(0,1fr);
  align-items: start;
  justify-content: stretch;
  gap: 12px;
  width: 100%;
  max-width: 640px;
  margin: 2px auto 0 !important;
  text-align: left !important;
}
.newsletter-consent input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0 !important;
}
.newsletter-consent span {
  display: block;
}

.feature-media-video-wrapper iframe {
  pointer-events: none;
  opacity: 1;
}

.game-sidebar-stack {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.game-sidebar {
  position: static !important;
  top: auto !important;
}
.developer-card {
  margin-top: 0;
}

.games-grid .game-card-img {
  height: 148px !important;
  aspect-ratio: auto !important;
}
.games-grid .game-card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
@media (max-width: 1024px) {
  .games-header-row .section-heading-block,
  .news-header-row .section-heading-block {
    max-width: 100%;
    padding-right: 0 !important;
  }
  .game-sidebar-stack {
    position: static;
  }
}
@media (max-width: 767px) {
  .games-header-row,
  .news-header-row {
    margin-bottom: 34px !important;
  }
  .news-row,
  .cards-row {
    padding-top: 0 !important;
  }
  .newsletter-consent {
    grid-template-columns: 18px minmax(0,1fr);
    max-width: 100%;
  }
  .games-grid .game-card-img {
    height: 168px !important;
  }
}



.games-header-row,
.news-header-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 56px;
  row-gap: 18px;
  align-items: start !important;
  margin-bottom: 28px !important;
}
.games-header-row .section-heading-block,
.news-header-row .section-heading-block {
  min-width: 0;
  max-width: 760px;
  padding-right: 0 !important;
  margin-right: 0 !important;
}
.games-header-row .section-heading-text,
.news-header-row .section-heading-text {
  max-width: 760px;
}
.games-header-row .carousel-arrows,
.news-header-row .carousel-arrows {
  justify-self: end;
  align-self: start !important;
  margin-left: 0 !important;
  padding-left: 24px;
  gap: 12px;
}
.games-fullwidth-wrapper,
.news-fullwidth-wrapper {
  padding-top: 18px;
}
.cards-row,
.news-row {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.news-row .news-card:first-child,
.cards-row .game-card:first-child {
  margin-left: 0;
}
.section-heading-block .section-heading-text {
  padding-right: 0 !important;
}

.newsletter-consent {
  display: flex !important;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  width: min(100%, 640px);
  margin: 10px auto 0 !important;
  text-align: left !important;
}
.newsletter-consent input {
  flex: 0 0 18px;
  width: 18px !important;
  height: 18px !important;
  margin: 3px 0 0 !important;
}
.newsletter-consent span {
  flex: 1 1 auto;
  line-height: 1.55;
}

.feature-media {
  overflow: hidden;
}
.feature-media-video-wrapper,
.publish-video-wrapper {
  overflow: hidden;
}
.feature-media-video-wrapper iframe,
.feature-media-video-wrapper video {
  position: absolute;
  top: var(--video-y, 50%);
  left: var(--video-x, 50%);
  width: var(--video-width, 177.777777%);
  height: var(--video-height, 100%);
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.feature-media-video-wrapper--youtube iframe {
  width: calc(var(--video-width, 210%) + 26%);
  height: calc(var(--video-height, 118%) + 14%);
}

.feature-media-video-wrapper--youtube::before,
.feature-media-video-wrapper--youtube::after,
.feature-media-video-wrapper--embed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 2;
}

.feature-media-video-wrapper--youtube::before {
  top: 0;
  height: 58px;
  background: linear-gradient(to bottom, rgba(10, 11, 15, 0.9), rgba(10, 11, 15, 0.32), transparent);
}

.feature-media-video-wrapper--youtube::after {
  bottom: 0;
  height: 74px;
  background: linear-gradient(to top, rgba(10, 11, 15, 0.96), rgba(10, 11, 15, 0.54), transparent);
}

.feature-media-video-wrapper--embed::after {
  inset: auto 0 0 0;
  height: 58px;
  background: linear-gradient(to top, rgba(10, 11, 15, 0.88), rgba(10, 11, 15, 0.34), transparent);
}

.feature-media-video-wrapper--direct video,
.feature-media-video-wrapper--vimeo iframe {
  width: calc(var(--video-width, 177.777777%) + 10%);
  height: calc(var(--video-height, 100%) + 8%);
}

.game-sidebar-col {
  align-self: start;
}
.game-sidebar-stack {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.game-sidebar,
.developer-card {
  position: static !important;
}
.developer-card {
  margin-top: 0 !important;
}

@media (max-width: 1024px) {
  .games-header-row,
  .news-header-row {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 18px;
  }
  .games-header-row .carousel-arrows,
  .news-header-row .carousel-arrows {
    justify-self: start;
    padding-left: 0;
  }
  .games-fullwidth-wrapper,
  .news-fullwidth-wrapper {
    padding-top: 8px;
  }
  .game-sidebar-stack {
    position: static;
  }
}

@media (max-width: 767px) {
  .newsletter-consent {
    width: 100%;
    gap: 12px;
  }
}



.anshar-scroll-widget--games,
.anshar-scroll-widget--news {
  padding-top: 64px;
  padding-bottom: 64px;
}

.anshar-latest-release-section .latest-release-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.anshar-latest-release-section .section-title-large {
  margin-bottom: 0;
}

.release-controls--header {
  position: static;
  top: auto;
  right: auto;
  align-items: center;
}

.release-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 6px;
  color: rgba(255,255,255,0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-counter-separator {
  color: rgba(255,255,255,0.3);
}

.latest-release-carousel {
  padding-top: 42px;
}

.release-slide .feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(8, 9, 12, 0.28), transparent);
  pointer-events: none;
  z-index: 1;
}

.feature-media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(18, 20, 26, 0.76), rgba(30, 34, 42, 0.92));
  z-index: 1;
}

.feature-media-placeholder span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.games-header-row,
.news-header-row {
  margin-bottom: 24px !important;
}

.games-fullwidth-wrapper,
.news-fullwidth-wrapper {
  padding-top: 10px;
}

.cards-row,
.news-row {
  gap: 22px;
}

.catalog-active-filters {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.active-filters-label {
  flex: 0 0 auto;
  padding-top: 4px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.active-filter-chips {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.active-filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.18);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.active-filters-clear {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  font-weight: 700;
}

.anshar-games-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
}

.anshar-games-empty-state p {
  margin: 0 0 18px;
  color: var(--muted);
}

.newsletter-consent {
  position: relative;
  gap: 0;
  align-items: flex-start;
}

.newsletter-consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.newsletter-consent-box {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(12,14,18,0.68);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.2s ease;
}

.newsletter-consent-box i {
  opacity: 0;
  font-size: 10px;
  transform: scale(0.7);
  transition: 0.2s ease;
}

.newsletter-consent-text {
  display: block;
  padding-left: 12px;
}

.newsletter-consent input:checked + .newsletter-consent-box {
  background: var(--accent);
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(220,38,38,0.12);
}

.newsletter-consent input:checked + .newsletter-consent-box i {
  opacity: 1;
  transform: scale(1);
}

.newsletter-form-row .btn {
  flex: 0 0 auto;
  min-width: 170px;
}


@media (max-width: 1024px) {
  .anshar-latest-release-section .latest-release-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-active-filters {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .anshar-scroll-widget--games,
  .anshar-scroll-widget--news {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .release-controls--header {
    width: 100%;
    justify-content: flex-start;
  }

  .newsletter-form-row {
    flex-direction: column;
  }

  .newsletter-form-row .btn,
  .newsletter-form input {
    width: 100%;
  }
}


.game-sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.game-sidebar-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: normal;
  overflow-wrap: anywhere;
}
.game-sidebar-tags + .info-row {
  border-top: 0;
}


.anshar-blog-header .games-page-title,
.anshar-post-header .post-title {
  max-width: 920px;
}
.anshar-blog-archive-section,
.anshar-post-content-section {
  padding-top: 24px;
}
.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.blog-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)), radial-gradient(circle at top left, rgba(220,38,38,0.05), transparent 28%), var(--panel);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: 0.3s;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(239, 68, 68, 0.38);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.26);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #232834, #1c2028);
  position: relative;
  overflow: hidden;
}
.blog-card-img::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(9, 10, 14, 0.4), transparent);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04) translateZ(0);
  transition: transform .35s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.08) translateZ(0);
}
.blog-card-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}
.blog-card-title {
  margin: 0;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.25;
  color: var(--text);
}
.blog-card-title a:hover {
  color: var(--accent-bright);
}
.blog-card-excerpt {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.blog-empty-state {
  grid-column: 1 / -1;
  padding: 32px;
}
.sidebar-widget {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)), var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 120px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.widget-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--accent-bright);
  letter-spacing: 0.1em;
}
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-list li {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.category-list li:last-child {
  margin-bottom: 0;
}
.category-list li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  transition: color 0.2s ease, transform 0.2s ease;
}
.category-list li a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: var(--accent);
}
.category-list li:hover,
.category-list li.is-active {
  color: var(--text);
}
.category-list li:hover a,
.category-list li.is-active a {
  transform: translateX(2px);
}
.post-header {
  position: relative;
  padding: 210px 0 100px;
  margin-top: -115px;
}
.post-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  opacity: 0.32;
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.post-meta span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-bright);
  letter-spacing: 0.1em;
}
.post-title {
  font-size: clamp(32px, 5vw, 56px);
  text-transform: uppercase;
  font-weight: 900;
  color: var(--text);
  margin: 0;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
  line-height: 1.1;
}
.post-content-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 60px;
  align-items: start;
}
.post-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.post-body > *:first-child {
  margin-top: 0;
}
.post-body p {
  margin-bottom: 24px;
}
.post-body h2 {
  color: var(--text);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 28px;
  margin: 40px 0 20px;
}
.post-body h3 {
  color: var(--text);
  font-weight: 700;
  font-size: 22px;
  margin: 30px 0 15px;
}
.post-body img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  margin: 40px 0;
  width: 100%;
  height: auto;
}
.post-body blockquote {
  margin: 40px 0;
  padding: 30px;
  border-left: 4px solid var(--accent);
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.08) 0%, transparent 100%);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 18px;
  font-style: italic;
  color: var(--text);
}
.author-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
}
.author-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255,255,255,0.08);
}
.author-role {
  color: var(--muted);
  font-size: 11px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.author-name {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--text);
}
.author-description {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 25px;
}
.author-divider {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 25px 0;
}
.author-back-link {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-bright);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.05em;
}
.author-back-link:hover {
  color: var(--text);
}
@media (max-width: 1024px) {
  .blog-layout,
  .post-content-wrapper {
    grid-template-columns: 1fr;
  }
  .blog-sidebar,
  .post-sidebar-col {
    order: -1;
  }
  .sidebar-widget {
    position: static;
  }
}
@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .post-header,
  .games-page-header {
    padding: 180px 0 72px;
  }
  .post-title,
  .games-page-title {
    font-size: 32px;
  }
  .blog-card-body,
  .sidebar-widget {
    padding: 24px;
  }
}


html {
  min-height: 100%;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-main {
  flex: 1 0 auto;
}
.site-footer {
  flex-shrink: 0;
}
body.admin-bar {
  min-height: calc(100vh - 32px);
}
@media (max-width: 782px) {
  body.admin-bar {
    min-height: calc(100vh - 46px);
  }
}

.anshar-media-overview-section .request-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.anshar-media-overview-section .request-box p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
  margin: 0 0 30px;
}
.anshar-media-request-btn {
  min-height: 60px;
  padding: 0 40px;
  font-size: 14px;
}
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.info-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)), var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.info-card:hover {
  border-color: rgba(239, 68, 68, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.info-icon {
  width: 60px;
  height: 60px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-bright);
  margin-bottom: 24px;
}
.info-card h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 15px;
}
.info-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 20px;
}
.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.info-card ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}
.info-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-bright);
  font-weight: bold;
}
.info-card .info-card-accent,
.info-card .info-card-accent strong {
  color: var(--text);
}
.info-card .info-card-accent strong {
  color: var(--accent-bright);
}
.anshar-media-card-btn {
  width: 100%;
  margin-top: auto;
}
.anshar-scroll-widget--spotlight {
  padding-top: 88px;
  padding-bottom: 88px;
}
.spotlight-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-left: calc(50vw - (var(--shell) / 2) + 32px);
  padding-right: calc(50vw - (var(--shell) / 2) + 32px);
  padding-top: 8px;
  padding-bottom: 30px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.spotlight-row::-webkit-scrollbar {
  display: none;
}
.spotlight-item {
  flex: 0 0 400px;
  max-width: 85vw;
  text-align: center;
}
.spotlight-item h3 {
  font-size: 15px;
  color: var(--text);
  margin: 0 0 15px;
  text-transform: uppercase;
  font-weight: 800;
}
.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: #000;
  position: relative;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.aurora-glow-red {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 150%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.4) 0%, rgba(220, 38, 38, 0.15) 50%, transparent 80%);
  filter: blur(80px);
  z-index: -2;
  animation: pulseGlow 6s infinite alternate;
  pointer-events: none;
}
.media-signup-box {
  border: 1px solid rgba(255,255,255,0.1);
}
.media-signup-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.media-signup-form input,
.media-signup-form .btn {
  width: 100%;
  max-width: 420px;
}
.media-signup-form input {
  background: rgba(12, 14, 18, 0.58);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0 25px;
  border-radius: 16px;
  color: var(--text);
  min-height: 58px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.media-signup-form input::placeholder {
  color: rgba(255,255,255,0.5);
}
.media-signup-form input:focus {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(12, 14, 18, 0.82);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}
.media-signup-form .btn {
  min-height: 58px;
}
body.page .elementor-widget-anshar-page-hero .elementor-widget-container,
body.page .elementor-widget-anshar-media-overview .elementor-widget-container,
body.page .elementor-widget-anshar-media-spotlight .elementor-widget-container,
body.page .elementor-widget-anshar-media-signup .elementor-widget-container,
body.page .elementor-widget-anshar-news-scroll .elementor-widget-container {
  width: 100%;
}
@media (max-width: 1024px) {
  .info-cards-grid {
    grid-template-columns: 1fr;
  }
  .spotlight-row,
  .news-row {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .games-page-header {
    padding: 180px 0 72px;
  }
  .games-page-title {
    font-size: 32px;
  }
  .anshar-scroll-widget--spotlight {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .spotlight-item {
    flex-basis: 320px;
  }
}



body.page .elementor-widget:not(:last-child){margin-bottom:0;}
body.page .elementor-section .elementor-container,
body.page .elementor-section .elementor-column,
body.page .elementor-section .elementor-widget-wrap,
body.page .elementor-section .elementor-widget-container{max-width:none;width:100%;}
body.page .elementor-column-gap-default > .elementor-column > .elementor-element-populated,
body.page .elementor-column-gap-narrow > .elementor-column > .elementor-element-populated,
body.page .elementor-column-gap-extended > .elementor-column > .elementor-element-populated,
body.page .elementor-column-gap-wide > .elementor-column > .elementor-element-populated,
body.page .elementor-column-gap-wider > .elementor-column > .elementor-element-populated{padding:0;}
body.page .elementor-widget-container > .anshar-hero-widget,
body.page .elementor-widget-container > .anshar-breakout-section{position:relative;width:100vw !important;max-width:100vw !important;margin-left:calc(50% - 50vw) !important;margin-right:calc(50% - 50vw) !important;}
body.page .elementor-widget-container > .anshar-breakout-section .shell,
body.page .elementor-widget-container > .anshar-hero-widget .shell{width:min(calc(100% - 64px), var(--shell));margin:0 auto;}
body.page .elementor-widget-container > .anshar-breakout-section .games-fullwidth-wrapper,
body.page .elementor-widget-container > .anshar-breakout-section .news-fullwidth-wrapper{width:100vw;margin-left:calc(-50vw + 50%);}
body.page .elementor-widget-container > .anshar-breakout-section .cards-row,
body.page .elementor-widget-container > .anshar-breakout-section .news-row,
body.page .elementor-widget-container > .anshar-breakout-section .spotlight-row{padding-left:calc(50vw - (var(--shell) / 2) + 32px);padding-right:calc(50vw - (var(--shell) / 2) + 32px);}
body.page .elementor-widget-container > .anshar-hero-widget{overflow:hidden;}
@media (max-width:1024px){
  body.page .elementor-widget-container > .anshar-breakout-section .cards-row,
  body.page .elementor-widget-container > .anshar-breakout-section .news-row,
  body.page .elementor-widget-container > .anshar-breakout-section .spotlight-row{padding-left:20px;padding-right:20px;}
}
@media (max-width:767px){
  body.page .elementor-widget-container > .anshar-breakout-section .shell,
  body.page .elementor-widget-container > .anshar-hero-widget .shell{width:min(calc(100% - 32px), var(--shell));}
}



.cards-row,
.news-row,
.carousel-row,
.spotlight-row {
  padding-top: 16px !important;
  margin-top: 0 !important;
}

.games-fullwidth-wrapper,
.news-fullwidth-wrapper,
.carousel-fullwidth-wrapper {
  overflow: visible;
}

.game-card,
.news-card,
.blog-card,
.info-card {
  transform: translateY(0) translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.game-card:hover,
.news-card:hover,
.blog-card:hover,
.info-card:hover {
  transform: translateY(-6px) translateZ(0);
}

.game-card-img,
.news-card-img,
.blog-card-img {
  overflow: hidden;
}

.game-card-img img,
.news-card-img img,
.blog-card-img img {
  transition: transform .4s ease, filter .4s ease !important;
  will-change: transform;
  transform: scale(1.04) translateZ(0) !important;
}

.game-card:hover .game-card-img img,
.news-card:hover .news-card-img img,
.blog-card:hover .blog-card-img img {
  transform: scale(1.08) translateZ(0) !important;
}

.newsletter-form > .newsletter-form-row input[type="email"],
.media-signup-form input[type="email"] {
  background: rgba(12, 14, 18, 0.58);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0 25px;
  border-radius: 16px;
  color: var(--text);
  width: 100%;
  max-width: 420px;
  min-height: 58px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.newsletter-form > .newsletter-form-row input[type="email"]::placeholder,
.media-signup-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form > .newsletter-form-row input[type="email"]:focus,
.media-signup-form input[type="email"]:focus {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(12, 14, 18, 0.82);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}

.newsletter-consent {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  column-gap: 12px;
  row-gap: 0;
  width: min(100%, 760px);
  max-width: 760px;
  margin: 2px auto 0 !important;
  text-align: left !important;
}

.newsletter-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.newsletter-consent-box {
  grid-column: 1;
  grid-row: 1;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.newsletter-consent-text,
.newsletter-consent span:last-child {
  grid-column: 2;
  grid-row: 1;
  padding-left: 0;
  display: block;
  line-height: 1.55;
}



.anshar-publish-hero {
  position: relative;
  padding: 210px 0 100px;
  margin-top: -115px;
  text-align: left;
  overflow: hidden;
}
.anshar-publish-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}
.anshar-publish-hero::before {
  content: none;
}
.anshar-publish-hero-inner {
  max-width: 600px;
  margin: 0;
}
.anshar-publish-title,
.anshar-publish-section-title {
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
  margin: 0 0 15px;
}
.anshar-publish-title {
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.anshar-publish-section-title { font-size: 36px; text-align: center; }
.anshar-publish-section-title--left { text-align: left; }
.anshar-publish-hero-subtitle,
.anshar-publish-copy {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 24px;
}
.anshar-publish-copy strong { color: var(--text); }
.anshar-publish-copy--narrow { max-width: 820px; }
.anshar-publish-hero-btn,
.anshar-publish-submit-btn { min-height: 60px; padding: 0 40px; font-size: 14px; }
.anshar-publish-section { padding: 88px 0; }
.anshar-publish-section--alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)), radial-gradient(circle at 15% 20%, rgba(220, 38, 38, 0.06), transparent 32%), rgba(18, 20, 26, 0.72);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.anshar-publish-section--white {
  background: #fff;
  color: #121317;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.anshar-publish-section--white .anshar-publish-section-title,
.anshar-publish-section--white .anshar-publish-analyze p,
.anshar-publish-section--white .anshar-publish-bullet-list li {
  color: #121317;
}
.anshar-publish-section--white .anshar-publish-analyze p,
.anshar-publish-section--white .anshar-publish-bullet-list li { color: #4a5568; }
.anshar-publish-sticky {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.anshar-publish-sticky-sidebar {
  position: sticky;
  top: 120px;
  width: 45%;
  flex-shrink: 0;
}
.anshar-publish-sticky-content {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.anshar-publish-partners img { max-width: 100%; height: auto; opacity: 0.5; }
.anshar-publish-service-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-lg);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.anshar-publish-service-box:hover {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(18, 20, 26, 0.8);
  box-shadow: var(--shadow-soft);
  transform: translateX(8px);
}
.anshar-publish-service-box h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 18px;
}
.anshar-publish-service-box h3 i { color: var(--accent-bright); font-size: 28px; }
.anshar-publish-service-box p { color: var(--muted); font-size: 16px; line-height: 1.8; margin: 0; }
.anshar-publish-overlap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 40px 0;
}
.anshar-publish-overlap-image {
  grid-column: 1 / 2;
  grid-row: 1;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.anshar-publish-overlap-image img {
  width: 100%;
  display: block;
  -webkit-mask-image: linear-gradient(to right, black 50%, transparent 100%);
  mask-image: linear-gradient(to right, black 50%, transparent 100%);
}
.anshar-publish-overlap-card {
  grid-column: 2 / 3;
  grid-row: 1;
  z-index: 2;
  margin-left: -80px;
  background: linear-gradient(135deg, rgba(28, 32, 40, 0.95), rgba(20, 22, 28, 0.98));
  padding: 60px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.anshar-publish-info-list { list-style: none; padding: 0; margin: 36px 0 0; }
.anshar-publish-info-list li { display: flex; gap: 20px; margin-bottom: 30px; align-items: flex-start; }
.anshar-publish-info-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: var(--accent-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.anshar-publish-info-list h4 {
  margin: 0 0 8px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text);
}
.anshar-publish-info-list p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--muted); }
.anshar-publish-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}
.anshar-publish-analyze p { line-height: 1.8; font-size: 16px; margin-bottom: 24px; color: var(--muted); }
.anshar-publish-showcase { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--border); object-fit: cover; }
.anshar-publish-bullet-list { padding-left: 20px; color: #4a5568; line-height: 1.8; font-size: 15px; }
.anshar-publish-bullet-list li { margin-bottom: 15px; }
.anshar-publish-no-border { width: 100%; height: auto; border: none; box-shadow: none; display: block; }
.anshar-publish-steam-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.anshar-publish-steam-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  transition: .3s;
}
.anshar-publish-steam-card:hover {
  border-color: rgba(239, 68, 68, 0.4);
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  background: rgba(18, 20, 26, 0.6);
}
.anshar-publish-steam-card-icon {
  width: 54px;
  height: 54px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent-bright);
  margin-bottom: 20px;
}
.anshar-publish-steam-card h3 {
  color: var(--text);
  font-size: 18px;
  margin: 0 0 15px;
  text-transform: uppercase;
  font-weight: 800;
}
.anshar-publish-steam-card p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; }
.anshar-publish-blue-glow { position: relative; display: flex; justify-content: center; align-items: center; width: 100%; }
.anshar-publish-blue-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}
.anshar-publish-blue-glow img { position: relative; z-index: 1; }
.anshar-publish-kick-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  padding-top: 16px !important;
  margin-top: 0 !important;
  padding-bottom: 34px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.anshar-publish-kick-row::-webkit-scrollbar {
  display: none;
}
.anshar-publish-kick-card {
  flex: 0 0 380px;
  width: 380px;
  max-width: calc(100vw - 48px);
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)), var(--panel);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.anshar-publish-kick-card:hover {
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
}
.anshar-publish-kick-image { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #000; }
.anshar-publish-kick-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
  transition: transform .5s ease, opacity .5s ease;
}
.anshar-publish-kick-card:hover .anshar-publish-kick-image img { transform: scale(1.03); opacity: 1; }
.anshar-publish-kick-body { padding: 30px 25px; display: flex; flex-direction: column; flex: 1; }
.anshar-publish-kick-body h3 {
  font-size: 16px;
  margin: 0 0 25px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}
.anshar-publish-kick-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: auto; }
.anshar-publish-kick-stat {
  padding: 15px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
}
.anshar-publish-kick-stat--primary { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.25); }
.anshar-publish-kick-stat--wide { grid-column: span 2; flex-direction: row; align-items: center; justify-content: center; }
.anshar-publish-kick-stat strong { font-size: 20px; font-weight: 900; line-height: 1; color: #fff; }
.anshar-publish-kick-stat--primary strong { color: #22c55e; }
.anshar-publish-kick-stat span { font-size: 11px; color: var(--muted); text-transform: uppercase; font-weight: 700; letter-spacing: .05em; }
.anshar-publish-kick-stat--wide span { font-size: 13px; text-transform: none; }
.anshar-publish-coverage-copy { text-align: center; max-width: 800px; margin: 0 auto 40px; }
.anshar-publish-coverage-copy p { line-height: 1.8; color: var(--muted); font-size: 16px; margin: 0 0 16px; }
.anshar-publish-coverage-grid img { width: 100%; border: 0; box-shadow: none; display: block; }
.anshar-publish-submit-section { padding-bottom: 120px; }
.anshar-publish-aurora {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 150%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.45) 0%, rgba(139, 92, 246, 0.2) 50%, transparent 80%);
  filter: blur(80px);
  z-index: -2;
  animation: pulseGlow 6s infinite alternate;
  pointer-events: none;
}
.anshar-publish-submit-box { max-width: 980px; }
.anshar-publish-submit-box .newsletter-character {
  right: -20px;
  bottom: -10px;
  height: 110%;
  opacity: .55;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 60%);
  mask-image: linear-gradient(to right, transparent 0%, black 60%);
}
body.page .elementor-widget-anshar-publish-hero .elementor-widget-container,
body.page .elementor-widget-anshar-publish-services .elementor-widget-container,
body.page .elementor-widget-anshar-publish-ip .elementor-widget-container,
body.page .elementor-widget-anshar-publish-why .elementor-widget-container,
body.page .elementor-widget-anshar-publish-steam .elementor-widget-container,
body.page .elementor-widget-anshar-publish-vision .elementor-widget-container,
body.page .elementor-widget-anshar-publish-kickstarter .elementor-widget-container,
body.page .elementor-widget-anshar-publish-coverage .elementor-widget-container,
body.page .elementor-widget-anshar-publish-submit .elementor-widget-container { width: 100%; }
body.page .elementor-widget-container > .anshar-publish-hero,
body.page .elementor-widget-container > .anshar-publish-section.anshar-publish-section--alt { position: relative; width: 100vw !important; max-width: 100vw !important; margin-left: calc(50% - 50vw) !important; margin-right: calc(50% - 50vw) !important; }
body.page .elementor-widget-container > .anshar-publish-hero .shell,
body.page .elementor-widget-container > .anshar-publish-section.anshar-publish-section--alt .shell { width: min(calc(100% - 64px), var(--shell)); margin: 0 auto; }
body.page .elementor-widget-container > .anshar-publish-section.anshar-publish-section--alt .carousel-fullwidth-wrapper { width: 100vw; margin-left: calc(-50vw + 50%); }
body.page .elementor-widget-container > .anshar-publish-section.anshar-publish-section--alt .carousel-row { padding-left: calc(50vw - (var(--shell) / 2) + 32px); padding-right: calc(50vw - (var(--shell) / 2) + 32px); }
@media (max-width: 1024px) {
  .anshar-publish-sticky { flex-direction: column; gap: 40px; }
  .anshar-publish-sticky-sidebar,
  .anshar-publish-sticky-content { width: 100%; position: static; }
  .anshar-publish-overlap,
  .anshar-publish-grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .anshar-publish-overlap-image { grid-column: 1; margin-bottom: -40px; }
  .anshar-publish-overlap-card { grid-column: 1; margin-left: 0; padding: 40px; }
  .anshar-publish-steam-cards { grid-template-columns: 1fr; }
  .anshar-publish-submit-box .newsletter-character { display: none; }
  body.page .elementor-widget-container > .anshar-publish-hero .shell,
  body.page .elementor-widget-container > .anshar-publish-section.anshar-publish-section--alt .shell { width: min(calc(100% - 40px), var(--shell)); }
  body.page .elementor-widget-container > .anshar-publish-section.anshar-publish-section--alt .carousel-row { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 767px) {
  .anshar-publish-hero { padding: 180px 0 72px; }
  .anshar-publish-title { font-size: 36px; }
  .anshar-publish-section-title { font-size: 28px; }
  .anshar-publish-submit-box .newsletter-title { font-size: 36px !important; }
}


body.page .elementor-widget-anshar-about-intro .elementor-widget-container,
body.page .elementor-widget-anshar-about-team .elementor-widget-container,
body.page .elementor-widget-anshar-about-philosophy .elementor-widget-container,
body.page .elementor-widget-anshar-eu-projects-content .elementor-widget-container {
  width: 100%;
}
.anshar-about-section {
  position: relative;
  padding: 60px 0 88px;
}
.anshar-about-section--intro {
  padding-top: 0;
  padding-bottom: 52px;
}
.anshar-about-grid-2 {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
}
.anshar-about-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 25px;
}
.anshar-about-copy strong {
  color: var(--text);
  font-weight: 800;
}
.anshar-about-highlight {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  border-left: 4px solid var(--accent);
  padding-left: 25px;
  margin: 40px 0;
  line-height: 1.5;
  text-transform: uppercase;
}
.anshar-about-logo-display {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 60px;
  background: linear-gradient(135deg, rgba(20,22,28,.75), rgba(31,35,43,.76));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.anshar-about-logo-display img {
  width: 100%;
  max-width: 250px;
  height: auto;
  opacity: .92;
}
.anshar-about-team-section {
  padding: 0 0 72px;
}
.anshar-about-team-photo {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.anshar-about-team-img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
}
.anshar-about-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,19,23,.9) 0%, rgba(18,19,23,.2) 50%, transparent 100%);
  pointer-events: none;
}
.anshar-about-team-caption {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 30px;
  z-index: 2;
}
.anshar-about-team-caption h3 {
  margin: 0 0 10px;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 900;
  color: #fff;
}
.anshar-about-team-caption p {
  margin: 0;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  max-width: 620px;
  line-height: 1.6;
}
.anshar-about-section--alt {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)), radial-gradient(circle at 15% 20%, rgba(220,38,38,.06), transparent 32%), rgba(18,20,26,.72);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.anshar-about-section-title {
  font-size: 32px;
  line-height: 1.12;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 40px;
  text-align: center;
}
.anshar-about-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.anshar-about-card {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)), var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.anshar-about-card:hover {
  border-color: rgba(239,68,68,.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.anshar-about-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(220,38,38,.1);
  border: 1px solid rgba(220,38,38,.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-bright);
  margin-bottom: 24px;
}
.anshar-about-card h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 15px;
}
.anshar-about-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}
.anshar-eu-section {
  padding: 0 0 88px;
}
.anshar-eu-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.anshar-eu-logo {
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-soft);
}
.anshar-eu-logo img {
  max-width: 100%;
  height: auto;
}
.anshar-eu-content h2 {
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--text);
  margin: 0 0 30px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 20px;
}
.anshar-eu-content h3 {
  font-size: 22px;
  color: var(--accent-bright);
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 25px;
}
.anshar-eu-content p {
  color: var(--text-dim);
  line-height: 1.8;
  font-size: 16px;
  margin: 0 0 20px;
}
.anshar-eu-highlight {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  background: rgba(0,0,0,.2);
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 3px solid var(--border-strong);
  margin-bottom: 25px;
}
.anshar-eu-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  color: var(--text-dim);
  line-height: 1.8;
  font-size: 16px;
}
.anshar-eu-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}
.anshar-eu-list li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-bright);
  font-size: 14px;
  top: 2px;
}
.anshar-eu-financials {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.anshar-eu-finance-box {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 25px;
  flex: 1;
  min-width: 250px;
}
.anshar-eu-finance-box span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 10px;
  letter-spacing: .05em;
}
.anshar-eu-finance-box strong {
  font-size: 28px;
  color: #fff;
  font-weight: 900;
}
.anshar-eu-finance-box--accent {
  border-color: rgba(239,68,68,.3);
  background: rgba(220,38,38,.05);
}
.anshar-eu-finance-box--accent span {
  color: var(--text);
}
.anshar-eu-finance-box--accent strong {
  color: var(--accent-bright);
}
@media (max-width: 1024px) {
  .anshar-about-grid-2,
  .anshar-about-cards-grid {
    grid-template-columns: 1fr;
  }
  .anshar-about-team-img {
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 767px) {
  .anshar-about-section--intro,
  .anshar-about-team-section,
  .anshar-eu-section {
    width: min(calc(100% - 40px), var(--shell));
  }
  .anshar-about-logo-display {
    min-height: 200px;
    padding: 40px 28px;
  }
  .anshar-about-highlight {
    font-size: 17px;
    padding-left: 18px;
    margin: 30px 0;
  }
  .anshar-about-team-caption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .anshar-about-team-caption h3 {
    font-size: 22px;
  }
  .anshar-about-section-title,
  .anshar-eu-content h2 {
    font-size: 28px;
  }
  .anshar-eu-content h3 {
    font-size: 18px;
  }
  .anshar-eu-finance-box strong {
    font-size: 22px;
  }
}


body.page .elementor-widget-anshar-publish-kickstarter .carousel-fullwidth-wrapper,
body.page .elementor-widget-container > .anshar-publish-kickstarter-section .carousel-fullwidth-wrapper {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: visible !important;
}

body.page .elementor-widget-anshar-publish-kickstarter .anshar-publish-kick-row,
body.page .elementor-widget-container > .anshar-publish-kickstarter-section .anshar-publish-kick-row {
  padding-left: calc(50vw - (var(--shell) / 2) + 32px) !important;
  padding-right: calc(50vw - (var(--shell) / 2) + 32px) !important;
  scroll-padding-left: calc(50vw - (var(--shell) / 2) + 32px) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: none !important;
}

@media (max-width: 1264px) {
  body.page .elementor-widget-anshar-publish-kickstarter .anshar-publish-kick-row,
  body.page .elementor-widget-container > .anshar-publish-kickstarter-section .anshar-publish-kick-row {
    padding-left: 32px !important;
    padding-right: 32px !important;
    scroll-padding-left: 32px !important;
  }
}

@media (max-width: 767px) {
  body.page .elementor-widget-anshar-publish-kickstarter .anshar-publish-kick-row,
  body.page .elementor-widget-container > .anshar-publish-kickstarter-section .anshar-publish-kick-row {
    padding-left: 20px !important;
    padding-right: 20px !important;
    scroll-padding-left: 20px !important;
  }
}

body.page .elementor-widget-container > .anshar-publish-kickstarter-section .anshar-publish-kick-fullwidth-wrapper,
body.page .elementor-widget-anshar-publish-kickstarter .anshar-publish-kick-fullwidth-wrapper {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  overflow: visible !important;
}

body.page .elementor-widget-container > .anshar-publish-kickstarter-section .cards-row.anshar-publish-kick-row,
body.page .elementor-widget-anshar-publish-kickstarter .cards-row.anshar-publish-kick-row {
  padding-left: calc(50vw - (var(--shell) / 2) + 32px) !important;
  padding-right: calc(50vw - (var(--shell) / 2) + 32px) !important;
  scroll-padding-left: calc(50vw - (var(--shell) / 2) + 32px) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: none !important;
}

@media (max-width: 1264px) {
  body.page .elementor-widget-container > .anshar-publish-kickstarter-section .cards-row.anshar-publish-kick-row,
  body.page .elementor-widget-anshar-publish-kickstarter .cards-row.anshar-publish-kick-row {
    padding-left: 32px !important;
    padding-right: 32px !important;
    scroll-padding-left: 32px !important;
  }
}

@media (max-width: 767px) {
  body.page .elementor-widget-container > .anshar-publish-kickstarter-section .cards-row.anshar-publish-kick-row,
  body.page .elementor-widget-anshar-publish-kickstarter .cards-row.anshar-publish-kick-row {
    padding-left: 20px !important;
    padding-right: 20px !important;
    scroll-padding-left: 20px !important;
  }
}


.site-footer--template .elementor,
.site-footer--template .elementor-section,
.site-footer--template .elementor-container,
.site-footer--template .elementor-column,
.site-footer--template .elementor-widget-wrap,
.site-footer--template .elementor-widget,
.site-footer--template .elementor-widget-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.site-footer--template .footer-brand .topbar-socials.footer-socials {
  margin-left: 0;
  margin-top: 20px;
}

.site-footer--template .footer-note.footer-note--split {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.game-story-sections {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.game-story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.game-story-section--image-right .game-story-media {
  order: 2;
}

.game-story-section--image-right .game-story-content {
  order: 1;
}

.game-story-section--image-top {
  grid-template-columns: 1fr;
  gap: 22px;
}

.game-story-section--image-top .game-story-media,
.game-story-section--image-top .game-story-content {
  order: initial;
}

.game-story-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.08);
}

.game-story-content h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 900;
}

.game-story-text,
.game-story-text p,
.developer-card-text,
.developer-card-text p {
  color: rgba(255,255,255,0.76);
  line-height: 1.8;
  font-size: 16px;
}

.game-story-text p,
.developer-card-text p {
  margin: 0 0 16px;
}

.game-story-text p:last-child,
.developer-card-text p:last-child {
  margin-bottom: 0;
}

.game-story-text strong,
.developer-card-text strong {
  color: var(--text);
  font-weight: 800;
}

.game-story-text ul,
.game-story-text ol,
.developer-card-text ul,
.developer-card-text ol {
  margin: 16px 0 0;
  padding-left: 22px;
  color: rgba(255,255,255,0.78);
}

.game-story-text li,
.developer-card-text li {
  margin-bottom: 8px;
}

.game-sidebar-actions .btn i {
  width: 18px;
  text-align: center;
}

.developer-card-logo img,
.hero-dev-info img {
  object-fit: contain !important;
  object-position: center center !important;
  box-sizing: border-box !important;
}

.developer-card-logo img {
  padding: 14px !important;
  border-radius: 0 !important;
}

.hero-dev-info img {
  padding: 5px !important;
}

@media (max-width: 1024px) {
  .game-story-section,
  .game-story-section--image-right,
  .game-story-section--image-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .game-story-section--image-right .game-story-media,
  .game-story-section--image-right .game-story-content {
    order: initial;
  }
}

@media (max-width: 767px) {
  .game-story-sections {
    gap: 40px;
  }

  .game-story-content h3 {
    font-size: 24px;
  }

  .game-story-text,
  .game-story-text p {
    font-size: 15px;
  }
}

.game-story-section-wrap.features-section {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 767px) {
  .game-story-section-wrap.features-section {
    padding: 32px 0 0 !important;
  }
}

.platform-store-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
  color: inherit;
  vertical-align: middle;
}


.platform-store-logo svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  fill: currentColor !important;
  overflow: visible;
}

.platform-store-logo img {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) opacity(0.85);
}


.platform-store-logo--icon {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
  font-size: 16px !important;
  line-height: 18px !important;
}


.game-platforms {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #d0d7e5;
}


.info-val--icons {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  color: #d0d7e5;
}


.game-sidebar-actions .game-cta-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-width: 0 !important;
}

.game-sidebar-actions .game-cta-button .cta-store-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px !important;
  color: currentColor;
}

.game-sidebar-actions .game-cta-button .cta-store-logo svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  fill: currentColor !important;
  overflow: visible;
}

.game-sidebar-actions .game-cta-button .cta-store-logo img {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
}

.game-sidebar-actions .game-cta-label {
  min-width: 0 !important;
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

@media (max-width: 480px) {
  .game-sidebar-actions .game-cta-button {
    gap: 8px !important;
  }
}



.platform-store-logo,
.cta-store-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 var(--anshar-logo-size, 24px) !important;
  width: var(--anshar-logo-size, 24px) !important;
  height: var(--anshar-logo-size, 24px) !important;
  min-width: var(--anshar-logo-size, 24px) !important;
  max-width: var(--anshar-logo-size, 24px) !important;
  min-height: var(--anshar-logo-size, 24px) !important;
  max-height: var(--anshar-logo-size, 24px) !important;
  line-height: 1 !important;
  color: currentColor !important;
  vertical-align: middle !important;
}

.platform-store-logo {
  --anshar-logo-size: 24px;
}

.cta-store-logo {
  --anshar-logo-size: 28px;
}

.platform-store-logo .anshar-svg-logo,
.cta-store-logo .anshar-svg-logo,
.platform-store-logo svg,
.cta-store-logo svg,
.platform-store-logo img,
.cta-store-logo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  overflow: visible !important;
}

.platform-store-logo svg *,
.cta-store-logo svg * {
  fill: currentColor !important;
}

.platform-store-logo--icon {
  font-size: 22px !important;
}

.info-val--icons,
.game-platforms {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.game-sidebar-actions .game-cta-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
}

.game-sidebar-actions .game-cta-button .cta-store-logo {
  margin: 0 !important;
}

@media (max-width: 480px) {
  .platform-store-logo {
    --anshar-logo-size: 22px;
  }

  .cta-store-logo {
    --anshar-logo-size: 26px;
  }

  .game-sidebar-actions .game-cta-button {
    gap: 12px !important;
  }
}


.game-card .game-platforms,
.games-grid .game-platforms,
.cards-row .game-platforms {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  margin-top: 10px !important;
  color: #d0d7e5 !important;
}

.game-card .game-platforms .platform-store-logo,
.games-grid .game-platforms .platform-store-logo,
.cards-row .game-platforms .platform-store-logo {
  --anshar-logo-size: 18px !important;
}

.game-card .game-platforms .platform-store-logo--icon,
.games-grid .game-platforms .platform-store-logo--icon,
.cards-row .game-platforms .platform-store-logo--icon {
  font-size: 17px !important;
}

.filter-item--platform .filter-label-content {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
}

.filter-item--platform .platform-store-logo {
  --anshar-logo-size: 15px !important;
  color: currentColor !important;
}

.filter-item--platform .platform-store-logo--icon {
  font-size: 14px !important;
}

/* Single game media gallery */
.game-media-gallery {
  margin-bottom: 40px;
}
.game-media-gallery .game-media-wrapper {
  margin-bottom: 16px;
}
.game-media-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.game-media-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.game-media-thumbs::-webkit-scrollbar {
  display: none;
}
.game-media-thumb {
  position: relative;
  flex: 0 0 146px;
  width: 146px;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor: pointer;
  padding: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: border-color .2s ease, transform .2s ease, opacity .2s ease;
}
.game-media-thumb:hover,
.game-media-thumb.is-active {
  border-color: rgba(239,68,68,.72);
  transform: translateY(-1px);
}
.game-media-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.game-media-thumb--video {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: radial-gradient(circle at center, rgba(220,38,38,.28), rgba(15,17,22,.95));
}
.game-media-thumb-video-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
}

/* About - editable team grid */
.anshar-about-team-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}
.anshar-about-team-head h2 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.12;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--text);
}
.anshar-about-team-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.anshar-about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 34px 28px;
  align-items: start;
}
.anshar-team-member {
  text-align: center;
  min-width: 0;
}
.anshar-team-photo-wrap {
  width: min(142px, 100%);
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, rgba(239,68,68,.62), rgba(255,255,255,.08), rgba(239,68,68,.22));
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}
.anshar-team-photo,
.anshar-team-photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(20,22,28,.96), rgba(45,49,60,.9));
  border: 1px solid rgba(255,255,255,.12);
}
.anshar-team-photo-placeholder {
  color: var(--text);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .03em;
}
.anshar-team-member h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
}
.anshar-team-position {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.anshar-team-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.anshar-team-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.anshar-team-socials a:hover {
  background: rgba(220,38,38,.18);
  border-color: rgba(239,68,68,.45);
  transform: translateY(-1px);
}
@media (max-width: 767px) {
  .game-media-thumb {
    flex-basis: 118px;
    width: 118px;
  }
  .anshar-about-team-head h2 {
    font-size: 28px;
  }
  .anshar-about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }
  .anshar-team-photo-wrap {
    width: min(118px, 100%);
  }
}

/* Final fix - About team rows and single game gallery controls */
.anshar-about-team-rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.anshar-about-team-row {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 34px 28px;
}
.anshar-team-member {
  flex: 0 0 170px !important;
  width: 170px !important;
  max-width: 170px !important;
  text-align: center;
  min-width: 0;
}
.anshar-team-photo-wrap {
  width: 142px !important;
  height: 142px !important;
  max-width: 142px !important;
  aspect-ratio: auto !important;
  margin: 0 auto 18px !important;
  border-radius: 50% !important;
  padding: 4px !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, rgba(239,68,68,.62), rgba(255,255,255,.08), rgba(239,68,68,.22));
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}
img.anshar-team-photo,
.anshar-team-photo-placeholder {
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: linear-gradient(135deg, rgba(20,22,28,.96), rgba(45,49,60,.9));
  border: 1px solid rgba(255,255,255,.12);
}
img.anshar-team-photo {
  display: block !important;
}
.anshar-team-photo-placeholder {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.game-media-thumbs-wrap {
  position: relative;
  width: 100%;
}
.game-media-thumbs-wrap .game-media-thumbs {
  padding-right: 2px !important;
}
.game-media-scroll-controls {
  position: static;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
  padding-left: 0;
  background: none;
  transform: none;
}
.game-media-scroll {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
  color: var(--text);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 12px 28px rgba(0,0,0,.22);
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.game-media-scroll:hover {
  background: rgba(220,38,38,.18);
  border-color: rgba(239,68,68,.55);
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 767px) {
  .anshar-about-team-rows {
    gap: 30px;
  }
  .anshar-about-team-row {
    gap: 28px 18px;
  }
  .anshar-team-member {
    flex: 0 0 calc(50% - 9px) !important;
    width: calc(50% - 9px) !important;
    max-width: 132px !important;
  }
  .anshar-team-photo-wrap {
    width: 118px !important;
    height: 118px !important;
    max-width: 118px !important;
  }
  .game-media-thumbs-wrap .game-media-thumbs {
    padding-right: 2px !important;
  }
  .game-media-scroll-controls {
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
    padding-left: 0;
  }
  .game-media-scroll {
    width: 38px;
    height: 38px;
  }
}

/* Team hotfix - icons and spacing only. Do not change team row grouping. */
.elementor-widget-anshar-about-team .anshar-about-team-section .anshar-about-team-rows {
  margin-top: 54px !important;
}
.elementor-widget-anshar-about-team .anshar-team-member h3 {
  margin: 0 0 12px !important;
  color: var(--text) !important;
  font-size: 16px !important;
  line-height: 1.25 !important;
  font-weight: 900 !important;
}
.elementor-widget-anshar-about-team .anshar-team-position {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}
.elementor-widget-anshar-about-team .anshar-team-socials {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  margin-top: 16px !important;
  line-height: 1 !important;
}
.elementor-widget-anshar-about-team .anshar-team-socials a {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  color: var(--text) !important;
  text-decoration: none !important;
  background: rgba(255,255,255,.055) !important;
  border: 1px solid rgba(255,255,255,.13) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 8px 22px rgba(0,0,0,.18) !important;
  transition: background .2s ease, border-color .2s ease, transform .2s ease !important;
}
.elementor-widget-anshar-about-team .anshar-team-socials a:hover {
  background: rgba(220,38,38,.18) !important;
  border-color: rgba(239,68,68,.48) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}
.elementor-widget-anshar-about-team .anshar-team-socials i,
.elementor-widget-anshar-about-team .anshar-team-socials svg {
  display: block !important;
  font-size: 14px !important;
  line-height: 1 !important;
}

/* Publish With Us - editable rich text and CTA refinements */
.games-page-subtitle p,
.anshar-publish-rich-text p,
.anshar-publish-service-text p,
.anshar-publish-copy p {
  margin: 0 0 16px;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.games-page-subtitle p:last-child,
.anshar-publish-rich-text p:last-child,
.anshar-publish-service-text p:last-child,
.anshar-publish-copy p:last-child {
  margin-bottom: 0;
}
.games-page-subtitle strong,
.anshar-publish-rich-text strong,
.anshar-publish-service-text strong,
.anshar-publish-copy strong {
  color: var(--text);
  font-weight: 800;
}
.anshar-publish-section--white .anshar-publish-rich-text strong,
.anshar-publish-section--white .anshar-publish-bullet-list strong {
  color: #121317;
}
.anshar-publish-rich-text ul,
.anshar-publish-rich-text ol,
.anshar-publish-service-text ul,
.anshar-publish-service-text ol,
.anshar-publish-copy ul,
.anshar-publish-copy ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.anshar-publish-rich-text li,
.anshar-publish-service-text li,
.anshar-publish-copy li {
  margin-bottom: 8px;
}
.anshar-publish-service-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}
.anshar-publish-analyze .anshar-publish-rich-text {
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--muted);
}
.anshar-publish-coverage-copy .anshar-publish-rich-text {
  line-height: 1.8;
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 16px;
}
.anshar-publish-inline-btn {
  display: inline-flex;
  margin-top: 10px;
  min-height: 56px;
  padding: 0 36px;
  font-size: 14px;
}
.anshar-publish-partners--logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: 28px;
}
.anshar-publish-partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  opacity: 0.55;
  transition: opacity .2s ease, transform .2s ease;
}
.anshar-publish-partner-logo:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.anshar-publish-partners--logos .anshar-publish-partner-logo img {
  width: auto;
  max-width: 132px;
  max-height: 44px;
  object-fit: contain;
  opacity: 1;
}

/* Mobile-only fixes requested for Anshar Publishing. */
@media (max-width: 900px) {
  .topbar .btn-publish:not(.mobile-menu-publish) {
    display: none !important;
  }

  .mobile-menu-cta {
    display: block;
    padding: 14px 8px 4px;
  }

  .mobile-menu-publish {
    display: inline-flex !important;
    width: 100%;
    min-height: 50px;
  }
}

@media (max-width: 767px) {
  .site-header {
    padding-top: 14px !important;
  }

  .site-header .shell-wide {
    width: min(calc(100% - 32px), var(--shell-wide)) !important;
  }

  .topbar {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 14px !important;
    min-height: 92px !important;
    padding: 14px 18px !important;
    border-radius: 28px !important;
  }

  .topbar .brand,
  .topbar .brand-link,
  .topbar .custom-logo-link {
    min-width: 0;
  }

  .topbar .brand img,
  .topbar .brand-link img,
  .topbar .custom-logo-link img {
    width: min(210px, 58vw) !important;
    max-width: 100% !important;
  }

  .topbar-actions {
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
  }

  .nav-toggle {
    width: 58px !important;
    height: 58px !important;
    flex: 0 0 58px;
  }

  .mobile-menu {
    width: min(calc(100% - 32px), var(--shell-wide)) !important;
    margin-top: 12px !important;
    padding: 24px 28px 26px !important;
    border-radius: 28px !important;
  }

  body.home .anshar-hero-widget,
  body.home .hero {
    min-height: 680px !important;
    height: auto !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  body.home .hero-slide {
    min-height: 680px !important;
    height: 100% !important;
    overflow: hidden !important;
  }

  body.home .slide-bg-img {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: 1 !important;
  }

  body.home .slide-overlay {
    background: linear-gradient(180deg, rgba(18,19,23,0.22) 0%, rgba(18,19,23,0.56) 54%, rgba(18,19,23,0.94) 100%) !important;
  }

  body.home .hero-slide-inner {
    min-height: 680px !important;
    align-items: center !important;
    padding-top: 176px !important;
    padding-bottom: 64px !important;
  }

  body.home .hero-content {
    padding-left: 0 !important;
  }

  .latest-release-carousel {
    touch-action: pan-y;
  }

  .feature-media-video-wrapper,
  .publish-video-wrapper {
    overflow: hidden !important;
  }

  .feature-media-video-wrapper iframe,
  .feature-media-video-wrapper video,
  .publish-video-wrapper iframe,
  .publish-video-wrapper video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    height: 100% !important;
    width: auto !important;
    min-width: 100% !important;
    aspect-ratio: 16 / 9;
    transform: translate(-50%, -50%) !important;
    object-fit: cover !important;
  }

  .publish-panel {
    min-height: 620px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .publish-content {
    text-align: center !important;
    margin: 0 auto !important;
  }

  .publish-actions,
  .feature-actions,
  .press-actions {
    justify-content: center !important;
  }

  .newsletter-box {
    min-height: 560px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .newsletter-character {
    display: block !important;
    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    bottom: auto !important;
    width: auto !important;
    max-width: none !important;
    height: 120% !important;
    opacity: 0.22 !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: translate(-50%, -50%) !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .newsletter-box:hover .newsletter-character {
    transform: translate(-50%, -50%) !important;
  }

  .presskit-panel {
    text-align: center !important;
    align-items: center !important;
  }

  .presskit-panel .panel-content {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  body.page .anshar-elementor-page-hero,
  body.page .anshar-publish-page-header {
    min-height: 620px !important;
    padding: 190px 0 96px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  body.page .anshar-elementor-page-hero .games-header-bg,
  body.page .anshar-publish-page-header .games-header-bg {
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: 0.68 !important;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%) !important;
    mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%) !important;
  }
}

/* Mobile-only follow-up fixes: YouTube cover, page hero background, Inner Circle image framing. */
@media (max-width: 767px) {
  .publish-panel {
    isolation: isolate !important;
  }

  .publish-video-wrapper {
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
  }

  .publish-video-wrapper iframe {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 340% !important;
    height: 100% !important;
    min-width: 340% !important;
    min-height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    transform: translate(-50%, -50%) !important;
    border: 0 !important;
  }

  body:not(.home) .site-header {
    margin-bottom: -128px !important;
  }

  body:not(.home) .games-page-header,
  body:not(.home) .anshar-elementor-page-hero,
  body:not(.home) .anshar-publish-page-header {
    margin-top: 0 !important;
    padding-top: 220px !important;
    background: transparent !important;
  }

  body:not(.home) .games-page-header .games-header-bg,
  body:not(.home) .anshar-elementor-page-hero .games-header-bg,
  body:not(.home) .anshar-publish-page-header .games-header-bg {
    top: 0 !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  body.home .newsletter-box:not(.media-signup-box) .newsletter-character {
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: -6% !important;
    width: 122% !important;
    max-width: none !important;
    height: auto !important;
    max-height: 92% !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    opacity: 0.26 !important;
    transform: translateX(-50%) !important;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 100%) !important;
    mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 100%) !important;
  }

  body.home .newsletter-box:not(.media-signup-box):hover .newsletter-character {
    transform: translateX(-50%) !important;
  }
}


/* Mobile-only correction v3 - cache-busted version, stronger YouTube cover, page hero background, Inner Circle framing. */
@media (max-width: 767px) {
  /* Force the pitch video iframe to behave like a background cover on tall mobile cards. */
  body.home .publish-panel {
    position: relative !important;
    min-height: 650px !important;
    overflow: hidden !important;
    isolation: isolate !important;
    background: #11141a !important;
  }

  body.home .publish-video-wrapper {
    position: absolute !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    transform: none !important;
    overflow: hidden !important;
    pointer-events: none !important;
    z-index: 0 !important;
  }

  body.home .publish-video-wrapper iframe,
  body.home .publish-video-wrapper iframe[src*="youtube"],
  body.home .publish-video-wrapper iframe[src*="youtu"],
  body.home .publish-video-wrapper iframe[src*="vimeo"] {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 420% !important;
    height: 236.25% !important;
    min-width: 420% !important;
    min-height: 236.25% !important;
    max-width: none !important;
    max-height: none !important;
    transform: translate(-50%, -50%) !important;
    border: 0 !important;
    display: block !important;
  }

  body.home .publish-overlay {
    z-index: 1 !important;
    background: linear-gradient(180deg, rgba(8,9,12,.64) 0%, rgba(10,11,15,.72) 46%, rgba(8,9,12,.78) 100%) !important;
  }

  body.home .publish-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  /* Let subpage hero backgrounds start behind the mobile header without a separate dark rectangle above them. */
  body:not(.home) .site-header {
    margin-bottom: 0 !important;
  }

  body:not(.home) .games-page-header,
  body:not(.home) .anshar-elementor-page-hero,
  body:not(.home) .anshar-publish-page-header {
    margin-top: -132px !important;
    padding-top: 250px !important;
    min-height: 620px !important;
    overflow: hidden !important;
    background: transparent !important;
    isolation: isolate !important;
  }

  body:not(.home) .games-page-header .games-header-bg,
  body:not(.home) .anshar-elementor-page-hero .games-header-bg,
  body:not(.home) .anshar-publish-page-header .games-header-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: .62 !important;
    z-index: -2 !important;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%) !important;
    mask-image: linear-gradient(to bottom, black 0%, black 72%, transparent 100%) !important;
  }

  /* Treat Inner Circle image as a full card background, not a bottom-aligned character crop. */
  body.home .newsletter-box:not(.media-signup-box) {
    min-height: 560px !important;
    overflow: hidden !important;
    background: rgba(24, 20, 29, .82) !important;
    isolation: isolate !important;
  }

  body.home .newsletter-box:not(.media-signup-box) .newsletter-character {
    position: absolute !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: .24 !important;
    transform: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    z-index: 0 !important;
  }

  body.home .newsletter-box:not(.media-signup-box):hover .newsletter-character {
    transform: none !important;
  }

  body.home .newsletter-box:not(.media-signup-box) .newsletter-content-wrapper {
    position: relative !important;
    z-index: 2 !important;
  }
}

/* Mobile scale and legal/newsletter follow-up fixes - mobile only. */
.newsletter-consent-text a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.38);
  text-underline-offset: 3px;
}
.newsletter-form.has-consent-error .newsletter-consent-box {
  border-color: rgba(239,68,68,0.9) !important;
  box-shadow: 0 0 0 4px rgba(220,38,38,0.16) !important;
}
.newsletter-form .btn[aria-disabled="true"] {
  opacity: .78;
}
.media-signup-form .newsletter-form-row {
  width: 100%;
  max-width: 420px;
}
.media-signup-form input[type="email"],
.media-signup-form .btn {
  width: 100%;
  max-width: 420px;
}
.media-signup-form .newsletter-consent {
  max-width: 420px;
}
.media-signup-form .newsletter-consent input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}
.anshar-legal-section {
  padding-top: 0;
}
.anshar-legal-content h3 {
  font-size: 22px;
  color: var(--accent-bright);
  font-weight: 800;
  line-height: 1.5;
  margin: 30px 0 16px;
}
.anshar-legal-content .anshar-legal-text,
.anshar-legal-content .anshar-legal-text p,
.anshar-legal-content .anshar-legal-text li {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.8;
}
.anshar-legal-content .anshar-legal-text p {
  margin: 0 0 18px;
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
    line-height: 1.58;
  }

  .shell,
  .shell-wide,
  .mobile-menu,
  .page-default .content-shell,
  .entry-default .content-shell,
  .archive-default .content-shell,
  .single-default .content-shell {
    width: min(calc(100% - 40px), var(--shell)) !important;
  }

  .site-header {
    padding-top: 10px !important;
  }

  .site-header .shell-wide {
    width: min(calc(100% - 32px), var(--shell-wide)) !important;
  }

  .topbar {
    min-height: 74px !important;
    padding: 10px 14px !important;
    border-radius: 22px !important;
    gap: 12px !important;
  }

  .topbar .brand img,
  .topbar .brand-link img,
  .topbar .custom-logo-link img {
    width: min(168px, 50vw) !important;
  }

  .nav-toggle {
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px !important;
    font-size: 16px !important;
  }

  .mobile-menu {
    margin-top: 10px !important;
    padding: 18px 20px 20px !important;
    border-radius: 22px !important;
  }

  .mobile-menu a {
    padding: 9px 6px !important;
    font-size: 11px !important;
    letter-spacing: .075em !important;
  }

  .mobile-menu-cta {
    padding: 10px 6px 2px !important;
  }

  .mobile-menu-publish {
    min-height: 46px !important;
  }

  .btn,
  .publish-btn,
  .anshar-media-request-btn,
  .anshar-media-card-btn,
  .anshar-publish-hero-btn,
  .anshar-publish-submit-btn,
  .media-signup-form .btn,
  .newsletter-form-row .btn {
    min-height: 48px !important;
    padding: 0 22px !important;
    border-radius: 12px !important;
    font-size: 11.5px !important;
    letter-spacing: .075em !important;
  }

  .section,
  .anshar-about-section,
  .anshar-publish-section,
  .anshar-scroll-widget--games,
  .anshar-scroll-widget--news,
  .anshar-scroll-widget--spotlight {
    padding-top: 42px !important;
    padding-bottom: 42px !important;
  }

  body.home .anshar-hero-widget,
  body.home .hero,
  body.home .hero-slide {
    min-height: 600px !important;
  }

  body.home .hero-slide-inner {
    min-height: 600px !important;
    padding-top: 120px !important;
    padding-bottom: 46px !important;
  }

  .hero-content .eyebrow,
  .eyebrow {
    font-size: 16px !important;
    letter-spacing: .16em !important;
    margin-bottom: 10px !important;
  }

  .hero h1,
  .games-page-title,
  .section-heading,
  .publish-title,
  .newsletter-title,
  .anshar-publish-title {
    font-size: 34px !important;
    line-height: 1.06 !important;
    letter-spacing: -0.025em !important;
  }

  .section-heading,
  .newsletter-title,
  .publish-title {
    margin-bottom: 18px !important;
  }

  .section-heading-text,
  .publish-description,
  .newsletter-description,
  .games-page-subtitle,
  .anshar-publish-hero-subtitle,
  .anshar-about-copy p,
  .anshar-eu-content p,
  .anshar-eu-list,
  .anshar-legal-content .anshar-legal-text,
  .anshar-legal-content .anshar-legal-text p,
  .request-box p,
  .info-card p,
  .anshar-about-team-head p {
    font-size: 15px !important;
    line-height: 1.68 !important;
  }

  .hero-actions {
    gap: 12px !important;
    margin-top: 28px !important;
  }

  .games-header-row,
  .news-header-row {
    gap: 18px !important;
    margin-bottom: 26px !important;
  }

  .carousel-btn {
    width: 46px !important;
    height: 46px !important;
  }

  .game-card,
  .news-card,
  .content-card,
  .info-card,
  .anshar-about-card,
  .newsletter-box,
  .publish-panel {
    border-radius: 24px !important;
  }

  .game-card-body,
  .news-card-body,
  .info-card,
  .anshar-about-card,
  .request-box,
  .content-card,
  .archive-intro,
  .single-game-content {
    padding: 24px !important;
  }

  .game-card h3,
  .news-card h3,
  .info-card h3,
  .anshar-about-card h3,
  .archive-game-card h3,
  .archive-news-card h3 {
    font-size: 20px !important;
    line-height: 1.12 !important;
  }

  body.home .publish-panel,
  .publish-panel {
    min-height: 540px !important;
    padding: 40px 24px !important;
  }

  body.home .publish-video-wrapper iframe,
  body.home .publish-video-wrapper iframe[src*="youtube"],
  body.home .publish-video-wrapper iframe[src*="youtu"],
  body.home .publish-video-wrapper iframe[src*="vimeo"] {
    width: 380% !important;
    min-width: 380% !important;
    height: 214% !important;
    min-height: 214% !important;
  }

  .publish-actions,
  .feature-actions,
  .press-actions {
    gap: 14px !important;
  }

  .newsletter-wrapper {
    padding: 0 !important;
  }

  .newsletter-box,
  body.home .newsletter-box:not(.media-signup-box) {
    min-height: 500px !important;
    padding: 42px 22px !important;
  }

  .newsletter-form,
  .newsletter-form-row,
  .media-signup-form .newsletter-form-row {
    max-width: 100% !important;
  }

  .newsletter-form input[type="email"],
  .media-signup-form input[type="email"] {
    min-height: 50px !important;
    height: 50px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
    border-radius: 13px !important;
  }

  .newsletter-consent {
    grid-template-columns: 18px minmax(0,1fr) !important;
    gap: 10px !important;
    margin-top: 4px !important;
  }

  .newsletter-consent-text,
  .newsletter-consent span:last-child {
    font-size: 11.5px !important;
    line-height: 1.45 !important;
  }

  body:not(.home) .games-page-header,
  body:not(.home) .anshar-elementor-page-hero,
  body:not(.home) .anshar-publish-page-header {
    min-height: 520px !important;
    padding-top: 200px !important;
    padding-bottom: 70px !important;
  }

  .anshar-publish-hero {
    padding: 160px 0 58px !important;
  }

  .anshar-about-section--intro,
  .anshar-about-team-section,
  .anshar-eu-section,
  .anshar-legal-section {
    width: min(calc(100% - 40px), var(--shell)) !important;
  }

  .anshar-about-highlight {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin: 26px 0 !important;
  }

  .anshar-about-section-title,
  .anshar-eu-content h2,
  .anshar-legal-content h2 {
    font-size: 26px !important;
    line-height: 1.12 !important;
    margin-bottom: 24px !important;
  }

  .anshar-eu-content h3,
  .anshar-legal-content h3 {
    font-size: 17px !important;
    line-height: 1.45 !important;
    margin: 24px 0 14px !important;
  }

  .anshar-eu-logo {
    padding: 24px 20px !important;
    margin-bottom: 34px !important;
  }

  .anshar-eu-financials {
    gap: 16px !important;
    margin-top: 34px !important;
  }

  .anshar-eu-finance-box {
    padding: 20px !important;
  }

  .anshar-eu-finance-box strong {
    font-size: 20px !important;
  }

  .spotlight-item {
    flex-basis: 300px !important;
  }

  .site-footer {
    padding-top: 48px !important;
  }
}


/* Consent + editable legal pages hotfix v5.9.28 - no mobile scale changes. */
.newsletter-form .newsletter-form-row input,
.newsletter-form .newsletter-form-row input[type="email"],
.media-signup-form .newsletter-form-row input,
.media-signup-form .newsletter-form-row input[type="email"] {
  width: 100% !important;
  max-width: 420px !important;
  min-height: 58px !important;
  height: auto !important;
  flex: 1 1 280px !important;
}

.newsletter-form .newsletter-form-row,
.media-signup-form .newsletter-form-row {
  width: 100% !important;
  max-width: 640px !important;
}

.media-signup-form .newsletter-form-row {
  max-width: 420px !important;
}

.newsletter-consent {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  align-items: start !important;
  column-gap: 12px !important;
  width: 100% !important;
  max-width: 640px !important;
  margin: 6px auto 0 !important;
  text-align: left !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.media-signup-form .newsletter-consent {
  max-width: 420px !important;
}

.newsletter-consent input[type="checkbox"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
  min-width: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.newsletter-consent-box {
  grid-column: 1 !important;
  grid-row: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  margin-top: 2px !important;
  border-radius: 6px !important;
  border: 2px solid rgba(255,255,255,0.55) !important;
  background: rgba(12,14,18,0.78) !important;
  color: #fff !important;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.24) !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.newsletter-consent-box i {
  display: inline-block !important;
  opacity: 0 !important;
  font-size: 11px !important;
  line-height: 1 !important;
  transform: scale(.7) !important;
  transition: .2s ease !important;
}

.newsletter-consent input[type="checkbox"]:checked + .newsletter-consent-box {
  background: var(--accent) !important;
  border-color: var(--accent-bright) !important;
  box-shadow: 0 0 0 4px rgba(220,38,38,0.16) !important;
}

.newsletter-consent input[type="checkbox"]:checked + .newsletter-consent-box i {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.newsletter-consent input[type="checkbox"]:focus-visible + .newsletter-consent-box {
  outline: 2px solid rgba(255,255,255,0.65) !important;
  outline-offset: 3px !important;
}

.newsletter-consent-text,
.newsletter-consent span.newsletter-consent-text {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: block !important;
  padding-left: 0 !important;
  color: rgba(255,255,255,0.72) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.newsletter-consent-text a {
  color: #fff !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(255,255,255,0.45) !important;
  text-underline-offset: 3px !important;
}

.newsletter-form.has-consent-error .newsletter-consent-box {
  border-color: rgba(239,68,68,0.95) !important;
  box-shadow: 0 0 0 4px rgba(220,38,38,0.18) !important;
}

.anshar-legal-editable-section {
  padding: 0 0 88px !important;
}

.anshar-legal-editable-section > .elementor-container,
.anshar-legal-editable-section > .elementor-column-gap-default,
.anshar-legal-editable-section .elementor-container {
  max-width: 1000px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.anshar-legal-editable-section .elementor-column,
.anshar-legal-editable-section .elementor-widget-wrap {
  width: 100% !important;
}

.anshar-legal-editable-section .elementor-widget-wrap {
  padding: 0 !important;
}

.anshar-legal-editable-title .elementor-heading-title,
.anshar-legal-editable-section h2 {
  font-size: 32px !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
  color: var(--text) !important;
  margin: 0 0 30px !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  padding-bottom: 20px !important;
}

.anshar-legal-editable-content,
.anshar-legal-editable-content .elementor-widget-container,
.anshar-legal-editable-content p,
.anshar-legal-editable-content li {
  color: var(--text-dim) !important;
  line-height: 1.8 !important;
  font-size: 16px !important;
}

.anshar-legal-editable-content p {
  margin: 0 0 20px !important;
}

.anshar-legal-editable-content h3 {
  font-size: 22px !important;
  color: var(--accent-bright) !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
  margin: 30px 0 16px !important;
}

@media (max-width: 767px) {
  .newsletter-form .newsletter-form-row input,
  .newsletter-form .newsletter-form-row input[type="email"],
  .media-signup-form .newsletter-form-row input,
  .media-signup-form .newsletter-form-row input[type="email"] {
    min-height: 50px !important;
    height: 50px !important;
    font-size: 14px !important;
    flex-basis: 100% !important;
  }

  .newsletter-consent {
    grid-template-columns: 20px minmax(0,1fr) !important;
    column-gap: 10px !important;
    margin-top: 8px !important;
  }

  .newsletter-consent-text,
  .newsletter-consent span.newsletter-consent-text {
    font-size: 11.5px !important;
    line-height: 1.45 !important;
  }

  .anshar-legal-editable-section {
    width: min(calc(100% - 40px), var(--shell)) !important;
  }

  .anshar-legal-editable-title .elementor-heading-title,
  .anshar-legal-editable-section h2 {
    font-size: 26px !important;
    line-height: 1.12 !important;
    margin-bottom: 24px !important;
  }

  .anshar-legal-editable-content,
  .anshar-legal-editable-content .elementor-widget-container,
  .anshar-legal-editable-content p,
  .anshar-legal-editable-content li {
    font-size: 15px !important;
    line-height: 1.68 !important;
  }

  .anshar-legal-editable-content h3 {
    font-size: 17px !important;
    line-height: 1.45 !important;
    margin: 24px 0 14px !important;
  }
}

/* Mobile-only games archive filter drawer and single game order */
.mobile-filters-toggle,
.mobile-filters-header,
.mobile-filters-backdrop {
  display: none;
}

@media (max-width: 767px) {
  .anshar-games-catalog-section .catalog-layout {
    display: block;
  }

  .mobile-filters-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    margin: 0 0 18px;
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)), rgba(22, 25, 32, 0.92);
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
  }

  .mobile-filters-toggle span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-filters-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    min-height: 26px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    line-height: 1;
  }

  .mobile-filters-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: block;
    background: rgba(4, 5, 8, 0.72);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .mobile-filters-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .filters-sidebar {
    position: fixed !important;
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 12px;
    z-index: 9999;
    width: auto;
    max-height: min(82vh, 680px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 20px !important;
    border-radius: 26px;
    transform: translateY(calc(100% + 28px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.25s ease, visibility 0.25s ease;
  }

  .filters-sidebar.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-filters-header {
    position: sticky;
    top: -20px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: -20px -20px 18px;
    padding: 18px 20px 14px;
    background: linear-gradient(180deg, rgba(23, 27, 35, 0.98), rgba(23, 27, 35, 0.9));
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-filters-header button {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: #fff;
    cursor: pointer;
  }

  body.anshar-mobile-filters-open {
    overflow: hidden;
  }

  .filters-sidebar .search-bar {
    margin-bottom: 22px;
  }

  .filters-sidebar .filter-group {
    margin-bottom: 24px;
  }

  .filters-sidebar .filter-title {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .filters-sidebar .filter-item {
    margin-bottom: 10px;
  }

  .filters-sidebar .anshar-filter-actions {
    position: sticky;
    bottom: -20px;
    margin: 20px -20px -20px;
    padding: 16px 20px 20px;
    background: linear-gradient(0deg, rgba(23, 27, 35, 0.98), rgba(23, 27, 35, 0.9));
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .anshar-single-main-wrap .game-details-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
  }

  .anshar-single-main-wrap .game-main-col,
  .anshar-single-main-wrap .game-sidebar-col,
  .anshar-single-main-wrap .game-sidebar-stack {
    display: contents !important;
  }

  .anshar-single-main-wrap .game-sidebar {
    order: 1 !important;
    width: 100%;
  }

  .anshar-single-main-wrap .game-media-gallery {
    order: 2 !important;
    width: 100%;
  }

  .anshar-single-main-wrap .game-description {
    order: 3 !important;
    width: 100%;
  }

  .anshar-single-main-wrap .features-section,
  .anshar-single-main-wrap .game-story-section-wrap {
    order: 4 !important;
    width: 100%;
  }

  .anshar-single-main-wrap .steam-widgets-stack {
    order: 5 !important;
    width: 100%;
  }

  .anshar-single-main-wrap .developer-card {
    order: 6 !important;
    width: 100%;
  }
}


/* Dynamic Sendy form layout hotfix v5.9.33 - keeps editable fields aligned and prevents Inner Circle background crop. */
.newsletter-form .anshar-form-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px 14px !important;
  width: 100% !important;
  max-width: 640px !important;
  margin: 0 auto !important;
  align-items: end !important;
}

.newsletter-form .anshar-newsletter-extra-fields {
  grid-template-columns: minmax(0, 1fr) !important;
  max-width: 640px !important;
}

.newsletter-form .anshar-form-section {
  width: 100% !important;
  max-width: 680px !important;
  margin: 0 auto 10px !important;
}

.newsletter-form .anshar-form-section-title,
.newsletter-form .anshar-choice-group-title,
.newsletter-form .anshar-field-label {
  display: block !important;
  width: 100% !important;
  margin: 0 0 8px !important;
  color: rgba(255,255,255,0.72) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  text-align: left !important;
}

.newsletter-form .anshar-form-section-title {
  margin: 4px 0 14px !important;
  color: var(--text) !important;
  font-size: 13px !important;
}

.newsletter-form .anshar-field,
.newsletter-form .anshar-choice-group {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  text-align: left !important;
}

.newsletter-form .anshar-field--full,
.newsletter-form .anshar-choice-group {
  grid-column: 1 / -1 !important;
}

.newsletter-form .anshar-newsletter-extra-fields .anshar-field,
.newsletter-form .anshar-newsletter-extra-fields .anshar-choice-group {
  max-width: 420px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.newsletter-form .anshar-newsletter-extra-fields .anshar-field--full,
.newsletter-form .anshar-newsletter-extra-fields .anshar-choice-group {
  max-width: 640px !important;
}

.newsletter-form .anshar-field input:not([type="hidden"]),
.newsletter-form .anshar-field textarea,
.newsletter-form .anshar-field select {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 58px !important;
  margin: 0 !important;
  background: rgba(12, 14, 18, 0.58) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 16px !important;
  color: var(--text) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.newsletter-form .anshar-field input:not([type="hidden"]),
.newsletter-form .anshar-field select {
  padding: 0 25px !important;
}

.newsletter-form .anshar-field textarea {
  min-height: 118px !important;
  padding: 18px 25px !important;
  resize: vertical !important;
}

.newsletter-form .anshar-field select {
  appearance: auto !important;
  -webkit-appearance: auto !important;
}

.newsletter-form .anshar-field input::placeholder,
.newsletter-form .anshar-field textarea::placeholder {
  color: rgba(255,255,255,0.5) !important;
}

.newsletter-form .anshar-field input:focus,
.newsletter-form .anshar-field textarea:focus,
.newsletter-form .anshar-field select:focus {
  border-color: rgba(239, 68, 68, 0.5) !important;
  background: rgba(12, 14, 18, 0.82) !important;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08) !important;
  outline: none !important;
}

.newsletter-form .anshar-choice-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
}

.newsletter-form .anshar-choice-grid--games {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.newsletter-form .anshar-choice-card {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  min-height: 48px !important;
  padding: 12px 14px !important;
  margin: 0 !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 14px !important;
  background: rgba(12, 14, 18, 0.46) !important;
  color: rgba(255,255,255,0.76) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  cursor: pointer !important;
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease !important;
}

.newsletter-form .anshar-choice-card input[type="checkbox"],
.newsletter-form .anshar-choice-card input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
  min-width: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.newsletter-form .anshar-choice-card span {
  display: block !important;
  min-width: 0 !important;
}

.newsletter-form .anshar-choice-card:has(input:checked) {
  border-color: rgba(239,68,68,.72) !important;
  background: rgba(220,38,38,.12) !important;
  color: #fff !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,.08) !important;
}

.newsletter-form .anshar-choice-card:has(input:focus-visible) {
  outline: 2px solid rgba(255,255,255,.62) !important;
  outline-offset: 3px !important;
}

.newsletter-form .anshar-consents-wrap {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: 100% !important;
  align-items: center !important;
}

/* The Inner Circle image should behave like a scalable card background when the form grows. */
body.home .newsletter-box:not(.media-signup-box),
.elementor-widget-anshar-newsletter .newsletter-box:not(.media-signup-box) {
  height: auto !important;
  min-height: 560px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body.home .newsletter-box:not(.media-signup-box) .newsletter-character,
.elementor-widget-anshar-newsletter .newsletter-box:not(.media-signup-box) .newsletter-character {
  position: absolute !important;
  left: 0 !important;
  right: auto !important;
  top: auto !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: left bottom !important;
  opacity: .28 !important;
  transform: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  z-index: 0 !important;
}

body.home .newsletter-box:not(.media-signup-box):hover .newsletter-character,
.elementor-widget-anshar-newsletter .newsletter-box:not(.media-signup-box):hover .newsletter-character {
  transform: none !important;
}

body.home .newsletter-box:not(.media-signup-box) .newsletter-content-wrapper,
.elementor-widget-anshar-newsletter .newsletter-box:not(.media-signup-box) .newsletter-content-wrapper {
  position: relative !important;
  z-index: 2 !important;
}

@media (max-width: 767px) {
  .newsletter-form .anshar-form-grid,
  .newsletter-form .anshar-choice-grid,
  .newsletter-form .anshar-choice-grid--games {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: 100% !important;
  }

  .newsletter-form .anshar-form-section,
  .newsletter-form .anshar-newsletter-extra-fields .anshar-field,
  .newsletter-form .anshar-newsletter-extra-fields .anshar-field--full,
  .newsletter-form .anshar-newsletter-extra-fields .anshar-choice-group {
    max-width: 100% !important;
  }

  .newsletter-form .anshar-field input:not([type="hidden"]),
  .newsletter-form .anshar-field select {
    min-height: 50px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
    border-radius: 13px !important;
  }

  .newsletter-form .anshar-field textarea {
    min-height: 104px !important;
    padding: 15px 18px !important;
    font-size: 14px !important;
    border-radius: 13px !important;
  }
}

/* Dynamic Sendy dropdown fix v5.9.34 - removes horizontal/inline scroll boxes for games and platforms. */
.newsletter-form .anshar-dropdown-field {
  position: relative !important;
  overflow: visible !important;
  z-index: 20 !important;
}

.newsletter-form .anshar-dropdown-field.is-open,
.newsletter-form .anshar-form-section:has(.anshar-dropdown-field.is-open) {
  z-index: 120 !important;
}

.newsletter-form .anshar-dropdown-toggle {
  width: 100% !important;
  min-height: 58px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 0 25px !important;
  margin: 0 !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 16px !important;
  background: rgba(12, 14, 18, 0.58) !important;
  color: var(--text) !important;
  text-align: left !important;
  cursor: pointer !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.newsletter-form .anshar-dropdown-toggle:focus-visible,
.newsletter-form .anshar-dropdown-field.is-open .anshar-dropdown-toggle {
  border-color: rgba(239, 68, 68, 0.5) !important;
  background: rgba(12, 14, 18, 0.82) !important;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08) !important;
  outline: none !important;
}

.newsletter-form .anshar-dropdown-value {
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  color: rgba(255,255,255,0.86) !important;
}

.newsletter-form .anshar-dropdown-value.is-placeholder {
  color: rgba(255,255,255,0.48) !important;
}

.newsletter-form .anshar-dropdown-menu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 140 !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  max-height: 280px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 8px !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 16px !important;
  background: rgba(14, 15, 20, 0.98) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

.newsletter-form .anshar-dropdown-menu[hidden] {
  display: none !important;
}

.newsletter-form .anshar-dropdown-option {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 11px 12px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: transparent !important;
  color: rgba(255,255,255,0.82) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  cursor: pointer !important;
  box-shadow: none !important;
}

.newsletter-form .anshar-dropdown-option:hover,
.newsletter-form .anshar-dropdown-option:has(input:checked) {
  background: rgba(220,38,38,0.14) !important;
  color: #fff !important;
}

.newsletter-form .anshar-dropdown-option input[type="checkbox"],
.newsletter-form .anshar-dropdown-option input[type="radio"] {
  position: static !important;
  display: inline-block !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  flex: 0 0 16px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 4px !important;
  background: initial !important;
  box-shadow: none !important;
  accent-color: #dc2626 !important;
  appearance: auto !important;
  -webkit-appearance: auto !important;
}

.newsletter-form .anshar-dropdown-option input[type="radio"] {
  border-radius: 50% !important;
}

.newsletter-form .anshar-dropdown-option span {
  display: block !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: normal !important;
}

.newsletter-form .anshar-dropdown-other {
  display: flex !important;
  flex-direction: column !important;
  gap: 7px !important;
  margin: 6px 0 2px !important;
  padding: 10px 12px 12px !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.62) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.newsletter-form .anshar-dropdown-other[hidden] {
  display: none !important;
}

.newsletter-form .anshar-dropdown-other input[type="text"] {
  width: 100% !important;
  min-height: 46px !important;
  padding: 0 14px !important;
  margin: 0 !important;
  border-radius: 12px !important;
  font-size: 14px !important;
}

.newsletter-form .anshar-dropdown-error .anshar-dropdown-toggle,
.newsletter-form .anshar-dropdown-field.anshar-field-error .anshar-dropdown-toggle {
  border-color: rgba(239,68,68,0.95) !important;
  box-shadow: 0 0 0 4px rgba(220,38,38,0.18) !important;
}

@media (max-width: 767px) {
  .newsletter-form .anshar-dropdown-toggle {
    min-height: 50px !important;
    padding: 0 18px !important;
    border-radius: 13px !important;
    font-size: 14px !important;
  }

  .newsletter-form .anshar-dropdown-menu {
    max-height: 260px !important;
  }
}
