*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: #555 transparent;
}
html::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
html::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 30px;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
body {
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e2e8f0;
  background-color: #0e0f1a;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #c4b5fd;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #a78bfa;
}
ul, ol {
  list-style: none;
}
button {
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
h1 {
  font-size: 2.25rem;
}
h2 {
  font-size: 1.75rem;
}
h3 {
  font-size: 1.25rem;
}
p {
  margin-bottom: 1rem;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #0e0f1a;
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
  padding: 0 20px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  z-index: 510;
}
.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  color: #b0b8c8;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(124, 58, 237, 0.15);
  color: #fff;
}
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  padding: 8px;
  border: none;
  cursor: pointer;
  z-index: 510;
  position: relative;
  width: 40px;
  height: 40px;
  pointer-events: auto;
}
.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.burger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.open span:nth-child(2) {
  opacity: 0;
}
.burger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 15, 26, 0.98);
  z-index: 450;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 90px 20px 40px;
  overflow-y: auto;
}
.mobile-nav-overlay.open {
  display: flex;
}
.mobile-nav-overlay a {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  transition: background 0.2s;
}
.mobile-nav-overlay a:hover {
  background: rgba(124, 58, 237, 0.2);
}
.hero {
  position: relative;
  padding: 80px 20px 60px;
  text-align: center;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 15, 26, 0.85);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-content h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
  color: #ffffff;
}
.hero-content p {
  font-size: 1.15rem;
  color: #a0aec0;
  margin-bottom: 28px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.stat-item {
  background: #161828;
  border: 1px solid rgba(124, 58, 237, 0.2);
  padding: 12px 20px;
  border-radius: 12px;
}
.stat-number {
  font-size: 1.4rem;
  font-weight: 900;
  color: #a78bfa;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #7c3aed;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
}
.hero-cta:hover {
  background: #6d28d9;
  transform: translateY(-2px);
  color: #fff;
}
.spotlight-section {
  padding: 40px 0;
}
.spotlight-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(14, 15, 26, 0.8) 100%);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}
.spotlight-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.spotlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spotlight-info h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #fff;
}
.spotlight-info p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.spotlight-badge {
  display: inline-block;
  background: #7c3aed;
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.games-section {
  padding: 60px 0;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-header h2 {
  font-size: 1.8rem;
}
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-tabs button {
  background: rgba(255, 255, 255, 0.06);
  color: #a0aec0;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.filter-tabs button:hover,
.filter-tabs button.active {
  background: #7c3aed;
  color: #fff;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.game-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
}
.game-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.game-card:hover .game-card-image img {
  transform: scale(1.06);
}
.game-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 15, 26, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}
.game-card:hover .game-card-overlay,
.game-card-image:hover .game-card-overlay {
  opacity: 1;
}
.play-btn {
  background: #7c3aed;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.5px;
}
.game-card:hover .play-btn,
.game-card-image:hover .play-btn {
  transform: translateY(0);
  opacity: 1;
}
.play-btn:hover {
  background: #6d28d9;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
}
.game-card-info {
  padding: 16px;
}
.game-card-info h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.game-card-info p {
  color: #718096;
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.4;
}
.game-card-tag {
  display: inline-block;
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.features-section {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-box:hover {
  border-color: rgba(124, 58, 237, 0.3);
  transform: translateY(-4px);
}
.feature-box h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #c4b5fd;
}
.feature-box p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.5;
}
.info-article-section {
  padding: 70px 0;
}
.article-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
}
.article-wrapper h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
}
.article-wrapper h3 {
  font-size: 1.3rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: #c4b5fd;
}
.article-wrapper p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.7;
}
.article-wrapper ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-wrapper ul li {
  color: #cbd5e1;
  margin-bottom: 8px;
  line-height: 1.6;
}
.faq-section {
  padding: 60px 0;
  background: rgba(124, 58, 237, 0.03);
  border-top: 1px solid rgba(124, 58, 237, 0.1);
}
.faq-title {
  text-align: center;
  margin-bottom: 40px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px;
}
.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #fff;
}
.faq-item p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}
.about-section {
  padding: 70px 0;
  background: rgba(124, 58, 237, 0.04);
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-content h2 {
  margin-bottom: 20px;
}
.about-content p {
  color: #a0aec0;
  font-size: 1.05rem;
  line-height: 1.7;
}
.site-footer {
  background: #090a14;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}
.footer-col h3 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 800;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul a {
  color: #718096;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: #c4b5fd;
}
.footer-brand p {
  color: #718096;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.footer-address {
  font-style: normal;
  color: #718096;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 16px;
}
.footer-address a {
  color: #a78bfa;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #a0aec0;
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover {
  background: #7c3aed;
  color: #fff;
}
.social-links svg {
  width: 18px;
  height: 18px;
}
.responsible-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}
.responsible-partner-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 10px;
  color: #a0aec0;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.responsible-partner-link:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.4);
  color: #fff;
  transform: translateY(-2px);
}
.partner-logo-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: #4a5568;
  font-size: 0.82rem;
  margin-bottom: 0;
}
.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-gate-overlay.hidden {
  display: none;
}
.age-gate-modal {
  background: #1a1b2e;
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  max-width: 480px;
  width: 100%;
}
.age-gate-modal .age-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.12);
  border: 2px solid rgba(239, 68, 68, 0.3);
  margin-bottom: 24px;
}
.age-icon-text {
  font-size: 2rem;
  font-weight: 900;
  color: #ef4444;
}
.age-gate-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.age-gate-modal p {
  color: #a0aec0;
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.age-gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.btn-confirm-age {
  background: #7c3aed;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 10px;
  transition: background 0.2s;
}
.btn-confirm-age:hover {
  background: #6d28d9;
}
.btn-deny-age {
  background: rgba(255, 255, 255, 0.06);
  color: #a0aec0;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 10px;
  transition: background 0.2s;
}
.btn-deny-age:hover {
  background: rgba(255, 255, 255, 0.1);
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1b2e;
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  padding: 20px;
  z-index: 9000;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 280px;
}
.cookie-text p {
  color: #a0aec0;
  font-size: 0.9rem;
  margin-bottom: 0;
}
.cookie-text a {
  color: #a78bfa;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn-cookie-accept {
  background: #7c3aed;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 8px;
  transition: background 0.2s;
}
.btn-cookie-accept:hover {
  background: #6d28d9;
}
.btn-cookie-decline {
  background: rgba(255, 255, 255, 0.06);
  color: #a0aec0;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 8px;
  transition: background 0.2s;
}
.btn-cookie-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}
.game-page {
  padding: 30px 0 60px;
}
.game-page-header {
  margin-bottom: 24px;
}
.game-page-header h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a78bfa;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  transition: color 0.2s;
}
.back-link:hover {
  color: #c4b5fd;
}
.game-iframe-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.2);
  background: #000;
  margin-bottom: 32px;
}
.game-iframe-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.fullscreen-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(14, 15, 26, 0.8);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 10;
  transition: background 0.2s;
}
.fullscreen-btn:hover {
  background: #7c3aed;
}
.game-description {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px;
}
.game-description h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.game-description p {
  color: #a0aec0;
  line-height: 1.7;
}
.content-page {
  padding: 60px 0 80px;
}
.content-page-inner {
  max-width: 800px;
  margin: 0 auto;
}
.content-page-inner h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.content-page-inner .page-updated {
  color: #4a5568;
  font-size: 0.85rem;
  margin-bottom: 32px;
}
.content-page-inner h2 {
  font-size: 1.35rem;
  margin-top: 36px;
  margin-bottom: 12px;
}
.content-page-inner h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 10px;
}
.content-page-inner p {
  color: #a0aec0;
  line-height: 1.8;
}
.content-page-inner ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.content-page-inner ul li {
  color: #a0aec0;
  margin-bottom: 6px;
  line-height: 1.7;
}
.content-page-inner a {
  color: #a78bfa;
  text-decoration: underline;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  color: #c4b5fd;
  font-size: 0.9rem;
  font-weight: 700;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 0.95rem;
  color: #e2e8f0;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #7c3aed;
  outline: none;
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-group .error-msg {
  color: #ef4444;
  font-size: 0.82rem;
  font-weight: 600;
  display: none;
}
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #ef4444;
}
.form-group.has-error .error-msg {
  display: block;
}
.btn-submit {
  background: #7c3aed;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.btn-submit:hover {
  background: #6d28d9;
  transform: translateY(-2px);
}
.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #22c55e;
  padding: 16px 20px;
  border-radius: 10px;
  font-weight: 700;
}
.form-success.visible {
  display: block;
}
.job-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}
.job-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
}
.job-card h3 {
  margin-bottom: 8px;
}
.job-card p {
  color: #a0aec0;
  margin-bottom: 12px;
}
.job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.job-meta span {
  color: #718096;
  font-size: 0.85rem;
  font-weight: 600;
}
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 40px 20px;
}
.error-page h1 {
  font-size: 6rem;
  color: #7c3aed;
  margin-bottom: 8px;
}
.error-page h2 {
  margin-bottom: 16px;
}
.error-page p {
  color: #a0aec0;
  margin-bottom: 28px;
}
.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #7c3aed;
  color: #fff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  transition: background 0.2s;
}
.btn-home:hover {
  background: #6d28d9;
  color: #fff;
}
@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .spotlight-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .burger-btn {
    display: flex;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 50px;
    min-height: 380px;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-stats {
    gap: 12px;
  }
  .stat-item {
    padding: 8px 14px;
  }
  .stat-number {
    font-size: 1.1rem;
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .responsible-partners {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .responsible-partner-link {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .age-gate-modal {
    padding: 32px 24px;
  }
  .age-gate-actions {
    flex-direction: column;
  }
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
  .article-wrapper {
    padding: 24px;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-cta {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  .header-inner {
    height: 56px;
  }
  .logo {
    font-size: 1.1rem;
  }
  .logo-icon {
    width: 30px;
    height: 30px;
  }
  .filter-tabs button {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  .game-card-info {
    padding: 12px;
  }
  .game-card-info h3 {
    font-size: 0.95rem;
  }
  .content-page-inner h1 {
    font-size: 1.5rem;
  }
  .container {
    padding: 0 12px;
  }
  .game-iframe-wrapper {
    border-radius: 10px;
  }
}
@media (max-width: 320px) {
  body {
    font-size: 14px;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .hero {
    padding: 40px 12px 36px;
    min-height: 280px;
  }
  .logo {
    font-size: 1rem;
    gap: 6px;
  }
  .logo-icon {
    width: 26px;
    height: 26px;
  }
}
