@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Anton-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/Outfit-Regular.woff2') format('woff2');
}

:root {
  --qgr-bg-main: #0a0b10;
  --qgr-bg-darker: #06070a;
  --qgr-bg-card: #131520;
  --qgr-bg-card-hover: #1b1d2c;
  --qgr-bg-glass: rgba(19, 21, 32, 0.88);
  --qgr-accent-yellow: #ffcc00;
  --qgr-accent-gold: #ffbe0b;
  --qgr-accent-yellow-dark: #cc9900;
  --qgr-accent-cyan: #00f0ff;
  --qgr-accent-green: #10e760;
  --qgr-accent-purple: #a855f7;
  --qgr-accent-red: #ff3366;
  --qgr-text-main: #ffffff;
  --qgr-text-muted: #9ba1b8;
  --qgr-text-sub: #71768e;
  --qgr-border-light: rgba(255, 255, 255, 0.08);
  --qgr-border-comic: #25283b;
  --qgr-border-yellow: rgba(255, 204, 0, 0.4);
  --qgr-shadow-comic: 0 6px 0 #b38600;
  --qgr-shadow-comic-press: 0 2px 0 #b38600;
  --qgr-shadow-glow-yellow: 0 0 25px rgba(255, 204, 0, 0.25);
  --qgr-shadow-glow-cyan: 0 0 25px rgba(0, 240, 255, 0.25);
  --qgr-radius-sm: 8px;
  --qgr-radius-md: 14px;
  --qgr-radius-lg: 22px;
  --qgr-radius-pill: 999px;
  --qgr-font-heading: 'Anton', 'Impact', sans-serif;
  --qgr-font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --qgr-container-max: 1240px;
  --qgr-transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--qgr-bg-main);
  color: var(--qgr-text-main);
}

body {
  font-family: var(--qgr-font-body);
  background-color: var(--qgr-bg-main);
  color: var(--qgr-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--qgr-transition);
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  outline: none;
  border: none;
}

.qgr-container {
  width: 100%;
  max-width: var(--qgr-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.qgr-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 204, 0, 0.12);
  border: 1px solid var(--qgr-border-yellow);
  color: var(--qgr-accent-yellow);
  padding: 6px 16px;
  border-radius: var(--qgr-radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.qgr-section-tag.qgr-cyan {
  background: rgba(0, 240, 255, 0.12);
  border-color: rgba(0, 240, 255, 0.4);
  color: var(--qgr-accent-cyan);
}

.qgr-section-tag.qgr-purple {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.4);
  color: var(--qgr-accent-purple);
}

.qgr-section-title {
  font-family: var(--qgr-font-heading);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  color: var(--qgr-text-main);
  margin-bottom: 16px;
}

.qgr-section-title span {
  color: var(--qgr-accent-yellow);
}

.qgr-section-subtitle {
  font-size: 1.1rem;
  color: var(--qgr-text-muted);
  max-width: 680px;
  margin-bottom: 36px;
}

.qgr-site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 11, 16, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--qgr-border-light);
  transition: var(--qgr-transition);
}

.qgr-site-header.scrolled {
  background: rgba(6, 7, 10, 0.96);
  border-bottom-color: rgba(255, 204, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.qgr-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.qgr-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--qgr-font-heading);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--qgr-text-main);
}

.qgr-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--qgr-accent-yellow);
  color: #000000;
  font-weight: 900;
  font-size: 1.3rem;
  border-radius: var(--qgr-radius-sm);
  box-shadow: 0 3px 0 var(--qgr-accent-yellow-dark);
  transform: rotate(-4deg);
  transition: var(--qgr-transition);
}

.qgr-brand-logo:hover .qgr-logo-badge {
  transform: rotate(0deg) scale(1.08);
}

.qgr-brand-logo span.qgr-brand-yellow {
  color: var(--qgr-accent-yellow);
}

.qgr-nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.qgr-nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--qgr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 4px;
}

.qgr-nav-link:hover,
.qgr-nav-link.active {
  color: var(--qgr-accent-yellow);
}

.qgr-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--qgr-accent-yellow);
  transition: var(--qgr-transition);
  border-radius: 2px;
}

.qgr-nav-link:hover::after,
.qgr-nav-link.active::after {
  width: 100%;
}

.qgr-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.qgr-btn-comic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--qgr-accent-yellow);
  color: #08090d;
  font-family: var(--qgr-font-body);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: var(--qgr-radius-sm);
  box-shadow: var(--qgr-shadow-comic);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: var(--qgr-transition);
}

.qgr-btn-comic:hover {
  transform: translateY(-2px);
  background: #ffd633;
  box-shadow: 0 8px 0 #b38600, 0 10px 20px rgba(255, 204, 0, 0.35);
}

.qgr-btn-comic:active {
  transform: translateY(2px);
  box-shadow: var(--qgr-shadow-comic-press);
}

.qgr-btn-comic-cyan {
  background: var(--qgr-accent-cyan);
  color: #08090d;
  box-shadow: 0 6px 0 #0099ab;
}

.qgr-btn-comic-cyan:hover {
  transform: translateY(-2px);
  background: #33f3ff;
  box-shadow: 0 8px 0 #0099ab, 0 10px 20px rgba(0, 240, 255, 0.35);
}

.qgr-btn-comic-cyan:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #0099ab;
}

.qgr-btn-comic-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--qgr-text-main);
  border: 1px solid var(--qgr-border-comic);
  box-shadow: 0 6px 0 #181926;
}

.qgr-btn-comic-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--qgr-accent-yellow);
  color: var(--qgr-accent-yellow);
  transform: translateY(-2px);
}

.qgr-btn-comic-outline:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #181926;
}

.qgr-btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  box-shadow: 0 4px 0 #b38600;
}

.qgr-btn-lg {
  padding: 16px 34px;
  font-size: 1.05rem;
  border-radius: var(--qgr-radius-md);
}

.qgr-burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: var(--qgr-bg-card);
  border: 1px solid var(--qgr-border-comic);
  border-radius: var(--qgr-radius-sm);
  gap: 5px;
  z-index: 1001;
}

.qgr-burger-line {
  width: 22px;
  height: 2.5px;
  background: var(--qgr-text-main);
  border-radius: 2px;
  transition: var(--qgr-transition);
}

.qgr-burger-btn.active .qgr-burger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: var(--qgr-accent-yellow);
}

.qgr-burger-btn.active .qgr-burger-line:nth-child(2) {
  opacity: 0;
}

.qgr-burger-btn.active .qgr-burger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--qgr-accent-yellow);
}

.qgr-ticker-strip {
  width: 100%;
  background: var(--qgr-accent-yellow);
  color: #08090d;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
  font-family: var(--qgr-font-heading);
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  user-select: none;
}

.qgr-ticker-track {
  display: inline-flex;
  align-items: center;
  animation: qgrTickerSlide 26s linear infinite;
}

.qgr-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
}

.qgr-ticker-bullet {
  width: 8px;
  height: 8px;
  background: #08090d;
  border-radius: 50%;
  display: inline-block;
}

@keyframes qgrTickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.qgr-hero-section {
  position: relative;
  padding: 60px 0 80px;
  background: radial-gradient(circle at 70% 30%, rgba(255, 204, 0, 0.08) 0%, rgba(10, 11, 16, 0) 60%),
              radial-gradient(circle at 10% 80%, rgba(0, 240, 255, 0.06) 0%, rgba(10, 11, 16, 0) 50%);
  overflow: hidden;
}

.qgr-hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.qgr-hero-content {
  flex: 1 1 540px;
  z-index: 2;
}

.qgr-hero-heading {
  font-family: var(--qgr-font-heading);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}

.qgr-hero-heading .qgr-text-glow-yellow {
  color: var(--qgr-accent-yellow);
  text-shadow: 0 0 30px rgba(255, 204, 0, 0.4);
}

.qgr-hero-heading .qgr-text-cyan {
  color: var(--qgr-accent-cyan);
}

.qgr-hero-lead {
  font-size: 1.15rem;
  color: var(--qgr-text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 580px;
}

.qgr-hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.qgr-stats-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--qgr-border-light);
}

.qgr-stat-item {
  display: flex;
  flex-direction: column;
}

.qgr-stat-value {
  font-family: var(--qgr-font-heading);
  font-size: 1.9rem;
  color: var(--qgr-accent-yellow);
  letter-spacing: 1px;
}

.qgr-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--qgr-text-sub);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qgr-hero-visual {
  position: relative;
  flex: 1 1 440px;
  z-index: 1;
}

.qgr-hero-image-card {
  position: relative;
  border-radius: var(--qgr-radius-lg);
  overflow: hidden;
  border: 3px solid var(--qgr-accent-yellow);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), var(--qgr-shadow-glow-yellow);
  background: var(--qgr-bg-card);
}

.qgr-hero-image-card img {
  width: 100%;
  height: auto;
  transform: scale(1.01);
  transition: transform 0.6s ease;
}

.qgr-hero-image-card:hover img {
  transform: scale(1.04);
}

.qgr-hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 11, 16, 0.92);
  border: 2px solid var(--qgr-accent-yellow);
  border-radius: var(--qgr-radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.qgr-badge-icon-box {
  width: 36px;
  height: 36px;
  background: var(--qgr-accent-yellow);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--qgr-radius-sm);
  font-weight: 900;
  font-size: 1.1rem;
}

.qgr-badge-text-title {
  font-family: var(--qgr-font-heading);
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: var(--qgr-text-main);
}

.qgr-badge-text-sub {
  font-size: 0.78rem;
  color: var(--qgr-accent-green);
  font-weight: 700;
}

.qgr-fruit-spotlight-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--qgr-bg-main) 0%, #110e1c 50%, var(--qgr-bg-main) 100%);
  position: relative;
}

.qgr-fruit-banner-card {
  background: radial-gradient(circle at 80% 20%, rgba(255, 51, 102, 0.15) 0%, transparent 60%),
              var(--qgr-bg-card);
  border: 2px solid rgba(255, 204, 0, 0.4);
  border-radius: var(--qgr-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-wrap: wrap;
}

.qgr-fruit-visual-wrap {
  flex: 1 1 480px;
  position: relative;
  overflow: hidden;
  background: #000000;
}

.qgr-fruit-visual-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qgr-fruit-content-wrap {
  flex: 1 1 480px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.qgr-store-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 231, 96, 0.15);
  border: 1px solid rgba(16, 231, 96, 0.4);
  color: var(--qgr-accent-green);
  padding: 4px 14px;
  border-radius: var(--qgr-radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}

.qgr-fruit-title {
  font-family: var(--qgr-font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.qgr-fruit-title span {
  color: var(--qgr-accent-yellow);
}

.qgr-fruit-desc {
  font-size: 1.05rem;
  color: var(--qgr-text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.qgr-fruit-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.qgr-feature-pill {
  flex: 0 0 calc(50% - 7px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--qgr-text-main);
}

.qgr-pill-dot {
  width: 8px;
  height: 8px;
  background: var(--qgr-accent-yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--qgr-accent-yellow);
}

.qgr-fruit-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.qgr-btn-playmarket {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #0b0c10;
  padding: 12px 24px;
  border-radius: var(--qgr-radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 0 #b3b3b3;
  transition: var(--qgr-transition);
}

.qgr-btn-playmarket:hover {
  background: var(--qgr-accent-yellow);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #b38600;
}

.qgr-btn-playmarket svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.qgr-playmarket-label {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.qgr-playmarket-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #555555;
  font-weight: 600;
}

.qgr-btn-playmarket:hover .qgr-playmarket-sub {
  color: #222222;
}

.qgr-playmarket-main {
  font-size: 1rem;
  font-weight: 800;
}

.qgr-games-catalog-section {
  padding: 90px 0;
  background: var(--qgr-bg-main);
}

.qgr-catalog-header-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.qgr-catalog-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  background: var(--qgr-bg-card);
  padding: 16px 20px;
  border-radius: var(--qgr-radius-md);
  border: 1px solid var(--qgr-border-comic);
}

.qgr-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.qgr-filter-btn {
  padding: 8px 18px;
  border-radius: var(--qgr-radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--qgr-text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--qgr-border-comic);
  transition: var(--qgr-transition);
}

.qgr-filter-btn:hover,
.qgr-filter-btn.active {
  background: var(--qgr-accent-yellow);
  color: #08090d;
  border-color: var(--qgr-accent-yellow);
}

.qgr-search-box {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--qgr-border-comic);
  border-radius: var(--qgr-radius-pill);
  padding: 8px 16px;
  gap: 10px;
  width: 280px;
}

.qgr-search-box input {
  background: transparent;
  color: var(--qgr-text-main);
  font-size: 0.9rem;
  width: 100%;
}

.qgr-search-box input::placeholder {
  color: var(--qgr-text-sub);
}

.qgr-search-icon {
  width: 18px;
  height: 18px;
  fill: var(--qgr-text-sub);
}

.qgr-games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.qgr-game-card {
  flex: 0 0 calc(25% - 18px);
  background: var(--qgr-bg-card);
  border: 1px solid var(--qgr-border-comic);
  border-radius: var(--qgr-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--qgr-transition);
  position: relative;
}

.qgr-game-card:hover {
  transform: translateY(-6px);
  border-color: var(--qgr-accent-yellow);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 204, 0, 0.15);
}

.qgr-game-thumb-box {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #181926;
}

.qgr-game-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.qgr-game-card:hover .qgr-game-thumb-box img {
  transform: scale(1.08);
}

.qgr-game-badge-type {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(10, 11, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 3px 10px;
  border-radius: var(--qgr-radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--qgr-accent-yellow);
  letter-spacing: 0.5px;
}

.qgr-game-free-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--qgr-accent-green);
  color: #000000;
  padding: 3px 8px;
  border-radius: var(--qgr-radius-sm);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.qgr-game-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.qgr-game-title {
  font-family: var(--qgr-font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  color: var(--qgr-text-main);
}

.qgr-game-desc {
  font-size: 0.88rem;
  color: var(--qgr-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.qgr-card-disclaimer {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--qgr-text-sub);
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--qgr-radius-sm);
  padding: 6px 8px;
  text-align: center;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.qgr-game-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--qgr-border-light);
}

.qgr-game-rating-tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--qgr-accent-yellow);
}

.qgr-btn-play-game {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--qgr-accent-yellow);
  color: #08090d;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--qgr-radius-sm);
  box-shadow: 0 3px 0 #b38600;
  transition: var(--qgr-transition);
}

.qgr-btn-play-game:hover {
  background: #ffe066;
  transform: translateY(-1px);
}

.qgr-btn-play-game:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 #b38600;
}

.qgr-showcase-engine-section {
  padding: 90px 0;
  background: radial-gradient(circle at 10% 40%, rgba(168, 85, 247, 0.09) 0%, transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(0, 240, 255, 0.08) 0%, transparent 60%),
              var(--qgr-bg-card);
  border-top: 1px solid var(--qgr-border-comic);
  border-bottom: 1px solid var(--qgr-border-comic);
}

.qgr-showcase-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.qgr-showcase-visual {
  flex: 1 1 500px;
  position: relative;
}

.qgr-showcase-img-frame {
  border-radius: var(--qgr-radius-lg);
  overflow: hidden;
  border: 3px solid var(--qgr-accent-purple);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(168, 85, 247, 0.25);
  background: var(--qgr-bg-main);
}

.qgr-showcase-img-frame img {
  width: 100%;
  height: auto;
}

.qgr-showcase-content {
  flex: 1 1 500px;
}

.qgr-showcase-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.qgr-showcase-pill-card {
  flex: 0 0 calc(33.333% - 10px);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--qgr-border-comic);
  border-radius: var(--qgr-radius-md);
  padding: 16px;
  text-align: center;
}

.qgr-showcase-pill-num {
  font-family: var(--qgr-font-heading);
  font-size: 1.4rem;
  color: var(--qgr-accent-cyan);
  margin-bottom: 4px;
}

.qgr-showcase-pill-txt {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--qgr-text-muted);
}

.qgr-showcase-community-section {
  padding: 90px 0;
  background: var(--qgr-bg-main);
}

.qgr-showcase-grid-reverse {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.qgr-showcase-community-frame {
  border-radius: var(--qgr-radius-lg);
  overflow: hidden;
  border: 3px solid var(--qgr-accent-cyan);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), var(--qgr-shadow-glow-cyan);
  background: var(--qgr-bg-card);
}

.qgr-showcase-community-frame img {
  width: 100%;
  height: auto;
}

.qgr-about-story-section {
  padding: 90px 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
              var(--qgr-bg-card);
  border-top: 1px solid var(--qgr-border-comic);
  border-bottom: 1px solid var(--qgr-border-comic);
}

.qgr-story-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.qgr-story-content {
  flex: 1 1 500px;
}

.qgr-story-visual-wrap {
  flex: 1 1 440px;
  position: relative;
}

.qgr-story-card-comic {
  position: relative;
  border-radius: var(--qgr-radius-lg);
  overflow: hidden;
  border: 3px solid var(--qgr-accent-cyan);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), var(--qgr-shadow-glow-cyan);
}

.qgr-story-card-comic img {
  width: 100%;
  height: auto;
}

.qgr-story-badge-float {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(10, 11, 16, 0.9);
  border: 2px solid var(--qgr-accent-cyan);
  border-radius: var(--qgr-radius-md);
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--qgr-accent-cyan);
  text-transform: uppercase;
}

.qgr-story-content h2 {
  font-family: var(--qgr-font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}

.qgr-story-content h2 span {
  color: var(--qgr-accent-cyan);
}

.qgr-story-content p {
  font-size: 1.05rem;
  color: var(--qgr-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.qgr-company-meta-list {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--qgr-border-comic);
  border-radius: var(--qgr-radius-md);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.qgr-meta-item {
  flex: 0 0 calc(50% - 8px);
  display: flex;
  flex-direction: column;
}

.qgr-meta-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--qgr-text-sub);
  letter-spacing: 0.5px;
}

.qgr-meta-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--qgr-text-main);
}

.qgr-features-section {
  padding: 90px 0;
  background: var(--qgr-bg-main);
}

.qgr-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.qgr-feature-box {
  flex: 0 0 calc(33.333% - 19px);
  background: var(--qgr-bg-card);
  border: 1px solid var(--qgr-border-comic);
  border-radius: var(--qgr-radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--qgr-transition);
}

.qgr-feature-box:hover {
  transform: translateY(-6px);
  border-color: var(--qgr-accent-yellow);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

.qgr-feature-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(255, 204, 0, 0.12);
  border: 1px solid var(--qgr-border-yellow);
  border-radius: var(--qgr-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--qgr-accent-yellow);
}

.qgr-feature-icon-box svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.qgr-feature-box-title {
  font-family: var(--qgr-font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--qgr-text-main);
}

.qgr-feature-box-desc {
  font-size: 0.95rem;
  color: var(--qgr-text-muted);
  line-height: 1.6;
}

.qgr-faq-section {
  padding: 90px 0;
  background: var(--qgr-bg-card);
}

.qgr-faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qgr-faq-item {
  background: var(--qgr-bg-main);
  border: 1px solid var(--qgr-border-comic);
  border-radius: var(--qgr-radius-md);
  overflow: hidden;
  transition: var(--qgr-transition);
}

.qgr-faq-item.active {
  border-color: var(--qgr-accent-yellow);
}

.qgr-faq-question {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  font-family: var(--qgr-font-body);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--qgr-text-main);
}

.qgr-faq-icon-arrow {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.qgr-faq-icon-arrow svg {
  width: 14px;
  height: 14px;
  fill: var(--qgr-accent-yellow);
}

.qgr-faq-item.active .qgr-faq-icon-arrow {
  transform: rotate(180deg);
}

.qgr-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
  color: var(--qgr-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.qgr-faq-item.active .qgr-faq-answer {
  max-height: 250px;
  padding: 0 26px 22px 26px;
}

.qgr-disclaimer-banner {
  background: #161208;
  border-top: 2px solid var(--qgr-accent-yellow);
  border-bottom: 2px solid var(--qgr-accent-yellow);
  padding: 30px 0;
  margin: 40px 0;
}

.qgr-disclaimer-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.qgr-disclaimer-badge {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--qgr-accent-yellow);
  color: #000000;
  font-family: var(--qgr-font-heading);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--qgr-radius-md);
  box-shadow: 0 4px 0 var(--qgr-accent-yellow-dark);
}

.qgr-disclaimer-text h4,
.qgr-disclaimer-text h3 {
  font-family: var(--qgr-font-heading);
  font-size: 1.2rem;
  color: var(--qgr-accent-yellow);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.qgr-disclaimer-text p {
  font-size: 0.88rem;
  color: #d1b87a;
  line-height: 1.5;
}

.qgr-site-footer {
  background: var(--qgr-bg-darker);
  border-top: 1px solid var(--qgr-border-comic);
  padding: 70px 0 30px;
}

.qgr-footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 50px;
}

.qgr-footer-col-brand {
  flex: 0 0 calc(35% - 30px);
}

.qgr-footer-col-brand p {
  font-size: 0.92rem;
  color: var(--qgr-text-muted);
  line-height: 1.6;
  margin: 16px 0 20px;
  max-width: 320px;
}

.qgr-footer-col-nav {
  flex: 0 0 calc(18% - 20px);
}

.qgr-footer-col-legal {
  flex: 0 0 calc(20% - 20px);
}

.qgr-footer-col-info {
  flex: 0 0 calc(27% - 20px);
}

.qgr-footer-title {
  font-family: var(--qgr-font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: var(--qgr-accent-yellow);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.qgr-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qgr-footer-links a {
  font-size: 0.9rem;
  color: var(--qgr-text-muted);
}

.qgr-footer-links a:hover {
  color: var(--qgr-accent-yellow);
  padding-left: 4px;
}

.qgr-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--qgr-text-muted);
}

.qgr-contact-row {
  display: flex;
  flex-direction: column;
}

.qgr-contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--qgr-text-sub);
}

.qgr-contact-val {
  color: var(--qgr-text-main);
  font-weight: 600;
}

.qgr-footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--qgr-border-light);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.84rem;
  color: var(--qgr-text-sub);
}

.qgr-game-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.qgr-game-modal.active {
  display: flex;
}

.qgr-modal-content {
  background: var(--qgr-bg-card);
  border: 2px solid var(--qgr-accent-yellow);
  border-radius: var(--qgr-radius-lg);
  width: 100%;
  max-width: 980px;
  height: 86vh;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), var(--qgr-shadow-glow-yellow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: qgrModalPop 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes qgrModalPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.qgr-modal-header {
  background: rgba(0, 0, 0, 0.5);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--qgr-border-comic);
}

.qgr-modal-title-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qgr-modal-title {
  font-family: var(--qgr-font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  color: var(--qgr-text-main);
}

.qgr-modal-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qgr-modal-ctrl-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--qgr-radius-sm);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--qgr-text-main);
  transition: var(--qgr-transition);
}

.qgr-modal-ctrl-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.qgr-modal-ctrl-btn:hover {
  background: var(--qgr-accent-yellow);
  color: #000000;
}

.qgr-modal-ctrl-btn.qgr-close-btn:hover {
  background: var(--qgr-accent-red);
  color: #ffffff;
}

.qgr-modal-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: #000000;
  position: relative;
}

.qgr-modal-disclaimer {
  width: 100%;
  background: #110e05;
  border-bottom: 1px solid var(--qgr-border-yellow);
  padding: 6px 14px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--qgr-accent-yellow);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  flex-shrink: 0;
}

.qgr-game-iframe {
  width: 100%;
  height: 100%;
  flex: 1;
  border: none;
  background: #000000;
}

@media (max-width: 1100px) {
  .qgr-burger-btn {
    display: flex;
  }

  .qgr-nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(8, 9, 14, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 20px;
    gap: 16px;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-top: 1px solid var(--qgr-border-comic);
  }

  .qgr-nav-menu.active {
    transform: translateX(0);
  }

  .qgr-nav-link {
    font-size: 1.2rem;
    font-family: var(--qgr-font-heading);
    letter-spacing: 1px;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .qgr-nav-actions {
    display: none;
  }

  .qgr-hero-content {
    flex: 0 0 100%;
    text-align: center;
  }

  .qgr-hero-lead {
    margin: 0 auto 24px;
  }

  .qgr-hero-cta-group {
    justify-content: center;
  }

  .qgr-stats-list {
    justify-content: center;
  }

  .qgr-hero-visual {
    flex: 0 0 100%;
    max-width: 540px;
    margin: 0 auto;
  }

  .qgr-fruit-visual-wrap,
  .qgr-fruit-content-wrap {
    flex: 0 0 100%;
  }

  .qgr-game-card {
    flex: 0 0 calc(50% - 12px);
  }

  .qgr-showcase-visual,
  .qgr-showcase-content {
    flex: 0 0 100%;
  }

  .qgr-story-content,
  .qgr-story-visual-wrap {
    flex: 0 0 100%;
  }

  .qgr-features-grid .qgr-feature-box {
    flex: 0 0 calc(50% - 14px);
  }

  .qgr-footer-col-brand {
    flex: 0 0 100%;
  }

  .qgr-footer-col-nav,
  .qgr-footer-col-legal {
    flex: 0 0 calc(50% - 20px);
  }

  .qgr-footer-col-info {
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14.5px;
  }

  .qgr-container {
    padding: 0 16px;
  }

  .qgr-hero-section {
    padding: 40px 0 50px;
  }

  .qgr-hero-heading {
    font-size: 2.2rem;
    margin-bottom: 14px;
  }

  .qgr-hero-lead {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .qgr-btn-lg {
    padding: 12px 22px;
    font-size: 0.92rem;
  }

  .qgr-section-title {
    font-size: 2rem;
  }

  .qgr-section-subtitle {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }

  .qgr-fruit-spotlight-section,
  .qgr-games-catalog-section,
  .qgr-showcase-engine-section,
  .qgr-showcase-community-section,
  .qgr-about-story-section,
  .qgr-features-section,
  .qgr-faq-section {
    padding: 50px 0;
  }

  .qgr-fruit-content-wrap {
    padding: 24px 16px;
  }

  .qgr-fruit-title {
    font-size: 1.8rem;
  }

  .qgr-fruit-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .qgr-feature-pill {
    flex: 0 0 100%;
    font-size: 0.85rem;
  }

  .qgr-catalog-controls {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 14px;
  }

  .qgr-search-box {
    width: 100%;
  }

  .qgr-game-card {
    flex: 0 0 100%;
  }

  .qgr-game-card-body {
    padding: 16px;
  }

  .qgr-game-title {
    font-size: 1.15rem;
  }

  .qgr-game-desc {
    font-size: 0.82rem;
  }

  .qgr-showcase-pill-card {
    flex: 0 0 100%;
  }

  .qgr-features-grid .qgr-feature-box {
    flex: 0 0 100%;
    padding: 24px 20px;
  }

  .qgr-company-meta-list .qgr-meta-item {
    flex: 0 0 100%;
  }

  .qgr-disclaimer-wrap {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .qgr-disclaimer-badge {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  .qgr-faq-question {
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .qgr-faq-answer {
    font-size: 0.86rem;
  }

  .qgr-faq-item.active .qgr-faq-answer {
    padding: 0 18px 16px 18px;
  }

  .qgr-footer-col-nav,
  .qgr-footer-col-legal {
    flex: 0 0 100%;
  }

  .qgr-modal-content {
    height: 92vh;
    border-radius: var(--qgr-radius-md);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .qgr-hero-heading {
    font-size: 1.85rem;
  }

  .qgr-stats-list {
    gap: 16px;
  }

  .qgr-stat-value {
    font-size: 1.5rem;
  }

  .qgr-stat-label {
    font-size: 0.72rem;
  }

  .qgr-ticker-strip {
    font-size: 0.9rem;
    padding: 8px 0;
  }
}
