:root {
  --main-green: #085765;
  --main-green-dark: #195660;
  --main-orange: #fa8617;
  --main-orange-shadow: #e7a14a44;
  --main-white: #fff;
  --main-yellow: #e7c97a;
  --main-footer-bg: #30545b;
  --main-footer-text: #e7c97a;
}


body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--main-green);
  color: var(--main-white);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  background: var(--main-green);
  position: relative;
  z-index: 10;
}

.header-left {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 48px;
  width: auto;
  margin-right: 16px;
}

.site-title-group {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Georgia', serif;
  color: var(--main-white);
}

.site-subtitle {
  font-size: 1rem;
  color: var(--main-yellow);
  margin-top: 2px;
}

.site-nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--main-white);
  text-decoration: none;
  padding: 10px 28px;
  border-radius: 32px;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
}

.nav-item.active .nav-link {
  background: var(--main-orange);
  color: var(--main-white);
  box-shadow: 0 4px 16px var(--main-orange-shadow);
}

.nav-link:hover {
  box-shadow: 0 4px 16px var(--main-orange-shadow);
  background: var(--main-green-dark);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--main-green-dark);
  cursor: pointer;
  transition: background 0.2s;
}

.burger span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px 0;
  background: var(--main-white);
  border-radius: 2px;
  transition: all 0.3s;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--main-green);
  z-index: 100;
  flex-direction: column;
  padding: 0 0 32px 0;
  box-shadow: 0 8px 32px #0003;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 8px 24px;
  border-bottom: 1px solid #ffffff22;
}

.close-mobile-nav {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  background: var(--main-green-dark);
}

.close-mobile-nav span {
  position: absolute;
  width: 24px;
  height: 3px;
  background: var(--main-white);
  border-radius: 2px;
  transition: all 0.3s;
}

.close-mobile-nav span:first-child {
  transform: rotate(45deg);
}

.close-mobile-nav span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 24px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav .nav-link {
  font-size: 1.2rem;
  padding: 16px 24px;
  border-radius: 12px;
  background: none;
  color: var(--main-white);
  transition: background 0.2s, color 0.2s;
}

.mobile-nav .nav-item.active .nav-link {
  background: var(--main-orange);
  color: var(--main-white);
}

.mobile-nav .nav-link:hover {
  background: var(--main-green-dark);
}

.site-footer {
  margin-top: 48px;
  padding: 0 0 32px 0;
  background: var(--main-green);
  color: var(--main-footer-text);
  text-align: center;
}

.footer-top {
  padding: 24px 0 8px 0;
  font-size: 1.1rem;
}

.footer-links a {
  color: var(--main-footer-text);
  text-decoration: underline;
  margin: 0 4px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--main-orange);
}

.footer-disclaimer {
  margin: 24px auto 0 auto;
  background: var(--main-footer-bg);
  color: var(--main-footer-text);
  border-radius: 12px;
  padding: 20px 0 16px 0;
  max-width: 900px;
  font-size: 1.15rem;
  font-weight: 400;
}

.footer-disclaimer strong {
  display: block;
  font-size: 1.18rem;
  margin-bottom: 6px;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}



.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 16px 60px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-float-j {
  margin-bottom: 18px;
}

.hero-j {
  width: 80px;
  height: 80px;
  background: var(--main-orange);
  color: var(--main-green);
  font-size: 2.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 32px #fa861755;
  animation: floatJ 2.5s ease-in-out infinite alternate;
}

@keyframes floatJ {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-18px);
  }
}

.hero-title {
  font-size: 3rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--main-white);
  margin-bottom: 18px;
  text-shadow: 0 2px 12px #0005;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #e7c97a;
  margin-bottom: 36px;
  max-width: 700px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 32px;
  padding: 12px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s, border 0.2s;
}

.btn-orange {
  background: var(--main-orange);
  color: var(--main-white);
  box-shadow: 0 4px 16px var(--main-orange-shadow);
}

.btn-orange:hover {
  box-shadow: 0 0 24px 6px #fa8617cc, 0 4px 16px var(--main-orange-shadow);
  background: #ff9a2b;
  color: var(--main-white);
}

.btn-outline {
  background: transparent;
  color: var(--main-white);
  border: 2px solid #3be18b;
  box-shadow: 0 0 0 0 #3be18b00;
}

.btn-outline:hover {
  background: #19566044;
  color: #3be18b;
  box-shadow: 0 0 16px 2px #3be18b77;
  border-color: #3be18b;
}

/* --- ABOUT SECTION --- */
.about-section {
  padding: 64px 0 32px 0;
  background: var(--main-green);
}

.about-container {
  display: flex;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 16px;
}

.about-left {
  flex: 1 1 350px;
  min-width: 320px;
}

.about-title {
  font-size: 2.2rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--main-white);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-text {
  font-size: 1.15rem;
  color: #e7c97a;
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid #e7c97a33;
  border-radius: 18px;
  padding: 18px 18px 14px 18px;
  box-shadow: 0 2px 16px #0002;
  backdrop-filter: blur(6px);
  transition: box-shadow 0.2s, border 0.2s, background 0.2s;
  cursor: pointer;
}

.feature-card i {
  font-size: 2rem;
  color: var(--main-orange);
  flex-shrink: 0;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--main-white);
}

.feature-desc {
  font-size: 1rem;
  color: #e7c97a;
}

.feature-card:hover {
  box-shadow: 0 0 24px 4px #fa8617cc, 0 2px 16px #0002;
  border: 1.5px solid var(--main-orange);
  background: rgba(255, 255, 255, 0.13);
}

.about-right {
  flex: 1 1 350px;
  min-width: 320px;
  display: flex;
  justify-content: center;
}

.about-img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  box-shadow: 0 6px 32px #0003;
}

/* --- GAMES SECTION --- */
.games-section {
  padding: 64px 0 32px 0;
  background: var(--main-green);
}

.games-title {
  font-size: 2.2rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--main-white);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.games-subtitle {
  color: #e7c97a;
  font-size: 1.15rem;
  margin-bottom: 32px;
  text-align: center;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.game-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid #e7c97a33;
  border-radius: 18px;
  box-shadow: 0 2px 16px #0002;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border 0.2s, background 0.2s, transform 0.2s;
  cursor: pointer;
}

.game-card:hover {
  box-shadow: 0 0 32px 6px #fa8617cc, 0 2px 16px #0002;
  border: 1.5px solid var(--main-orange);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-6px) scale(1.03);
}

.game-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.game-info {
  padding: 18px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

.game-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--main-white);
}

.game-genre {
  font-size: 1rem;
  color: #3be18b;
  font-weight: 600;
}

.game-desc {
  font-size: 1rem;
  color: #e7c97a;
  margin-bottom: 12px;
}

.game-card .btn-orange {
  margin-top: 8px;
  width: fit-content;
}

/* --- DISCLAIMER SECTION --- */
.disclaimer-section {
  padding: 64px 0 64px 0;
  background: var(--main-green);
  display: flex;
  justify-content: center;
  align-items: center;
}

.disclaimer-block {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid #e7c97a33;
  border-radius: 28px;
  box-shadow: 0 2px 16px #0002;
  backdrop-filter: blur(6px);
  padding: 40px 32px 32px 32px;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.disclaimer-title {
  font-size: 2rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--main-white);
  margin-bottom: 18px;
}

.disclaimer-text {
  font-size: 1.15rem;
  color: #e7c97a;
}

/* --- CONTACT HERO SECTION --- */
.contact-hero-section {
  background: var(--main-green);
  padding: 48px 0 0 0;
  text-align: center;
}

.contact-hero-title {
  font-size: 2.5rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--main-white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.contact-hero-title i {
  color: #3be18b;
  font-size: 2.2rem;
}

.contact-hero-subtitle {
  color: var(--main-white);
  font-size: 1.18rem;
  margin-bottom: 0;
  max-width: 700px;
  margin: 0 auto;
}

/* --- CONTACT MAIN SECTION --- */
.contact-main-section {
  background: var(--main-green);
  padding: 32px 0 64px 0;
}

.contact-main-container {
  display: flex;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 16px;
}

.contact-form-block {
  flex: 2 1 420px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid #e7c97a33;
  border-radius: 24px;
  box-shadow: 0 2px 16px #0002;
  backdrop-filter: blur(6px);
  padding: 36px 32px 28px 32px;
  margin-bottom: 24px;
}

.contact-form-title {
  font-size: 1.5rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--main-white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-form-title i {
  color: var(--main-orange);
  font-size: 2rem;
}

.contact-form-row {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}

.contact-form-group {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.contact-form-group label {
  color: var(--main-white);
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-form-group input,
.contact-form-group textarea {
  background: transparent;
  border: 2px solid #3be18b77;
  border-radius: 12px;
  color: var(--main-white);
  font-size: 1.08rem;
  padding: 10px 14px;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  resize: none;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border: 2px solid #3be18b;
  box-shadow: 0 0 8px 1px #3be18b55;
}

.contact-send-btn {
  margin-top: 10px;
  width: 100%;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--main-orange);
  color: var(--main-white);
  box-shadow: 0 4px 16px var(--main-orange-shadow);
  border: none;
  border-radius: 16px;
  padding: 16px 0;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
}

.contact-send-btn:hover {
  box-shadow: 0 0 24px 6px #fa8617cc, 0 4px 16px var(--main-orange-shadow);
  background: #ff9a2b;
  color: var(--main-white);
}

.contact-btn-magic {
  font-size: 1.2em;
  margin-left: 2px;
}

.contact-success-message {
  margin-top: 18px;
  color: #3be18b;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 0;
  border: 1.5px solid #3be18b55;
}

.contact-info-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid #e7c97a33;
  border-radius: 18px;
  padding: 22px 20px 16px 20px;
  box-shadow: 0 2px 16px #0002;
  backdrop-filter: blur(6px);
  transition: box-shadow 0.2s, border 0.2s, background 0.2s;
}

.contact-info-card i {
  font-size: 2rem;
  color: var(--main-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--main-white);
}

.contact-info-email {
  font-size: 1.08rem;
  color: #3be18b;
  font-weight: 700;
}

.contact-info-email a {
  color: #3be18b;
  text-decoration: underline;
}

.contact-info-desc {
  font-size: 1rem;
  color: #e7c97a;
}

.contact-info-card:hover {
  box-shadow: 0 0 24px 4px #fa8617cc, 0 2px 16px #0002;
  border: 1.5px solid var(--main-orange);
  background: rgba(255, 255, 255, 0.13);
}

.contact-invite-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid #e7c97a33;
  border-radius: 18px;
  box-shadow: 0 2px 16px #0002;
  backdrop-filter: blur(6px);
  padding: 28px 20px 18px 20px;
  text-align: center;
  margin-top: 12px;
}

.contact-invite-icon {
  font-size: 2.2rem;
  color: var(--main-orange);
  margin-bottom: 8px;
}

.contact-invite-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--main-white);
  margin-bottom: 8px;
}

.contact-invite-text {
  font-size: 1.05rem;
  color: #e7c97a;
}

/* --- POLICY HERO --- */
.policy-hero-section {
  background: var(--main-green);
  padding: 48px 0 0 0;
  text-align: center;
}

.policy-hero-title {
  font-size: 2.5rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--main-white);
  margin-bottom: 12px;
}

.policy-hero-subtitle {
  color: var(--main-white);
  font-size: 1.18rem;
  margin-bottom: 0;
  max-width: 700px;
  margin: 0 auto;
}

/* --- POLICY SECTIONS --- */
.policy-section {
  background: var(--main-green);
  padding: 32px 0 64px 0;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.policy-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid #e7c97a33;
  border-radius: 24px;
  box-shadow: 0 2px 16px #0002;
  backdrop-filter: blur(6px);
  padding: 32px 28px 24px 28px;
  color: var(--main-white);
  margin-bottom: 0;
}

.policy-title {
  font-size: 1.4rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--main-white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.policy-list {
  margin: 0 0 0 0;
  padding: 0 0 0 24px;
  color: var(--main-white);
}

.policy-list li {
  margin-bottom: 8px;
  font-size: 1.08rem;
  position: relative;
  line-height: 1.6;
}

.policy-list li:before {
  content: '•';
  color: #fa8617;
  font-size: 1.2em;
  position: absolute;
  left: -18px;
  top: 0;
}

.policy-accent {
  background: #3b5e44;
  color: var(--main-footer-text);
  border-radius: 14px;
  padding: 14px 18px;
  margin: 18px 0 0 0;
  font-weight: 600;
  text-align: left;
  border: 1.5px solid #e7c97a55;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
}

.policy-accent .fa,
.policy-accent .fas,
.policy-accent .far {
  color: var(--main-orange);
  font-size: 1.2em;
}

.policy-updated {
  background: #3b5e44;
  color: var(--main-footer-text);
  border-radius: 14px;
  padding: 12px 18px;
  margin: 18px 0 0 0;
  font-weight: 700;
  text-align: left;
  border: 1.5px solid #e7c97a55;
  display: inline-block;
  font-size: 1.08rem;
}

.policy-card strong {
  color: #fff;
}

@media (max-width: 700px) {
  .policy-hero-title {
    font-size: 1.3rem;
  }

  .policy-card {
    padding: 14px 6px 10px 6px;
    border-radius: 12px;
  }

  .policy-title {
    font-size: 1.1rem;
  }

  .policy-updated,
  .policy-accent {
    font-size: 0.98rem;
    padding: 8px 8px;
    border-radius: 8px;
  }
}

/* --- ADAPTIVE --- */
@media (max-width: 1100px) {

  .about-container,
  .games-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .about-container {
    flex-direction: column;
    gap: 32px;
  }

  .about-right,
  .about-left {
    min-width: 0;
  }

  .games-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .hero-content {
    padding: 40px 8px 32px 8px;
  }

  .hero-j {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .about-title {
    font-size: 1.3rem;
  }

  .about-img {
    max-width: 100%;
    border-radius: 16px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .games-title {
    font-size: 1.3rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .game-img {
    height: 140px;
  }

  .disclaimer-block {
    padding: 24px 8px 18px 8px;
    border-radius: 16px;
  }
}

@media (max-width: 900px) {
  .contact-main-container {
    flex-direction: column;
    gap: 24px;
  }

}

@media (max-width: 700px) {
  .contact-hero-title {
    font-size: 1.3rem;
  }

  .contact-form-title {
    font-size: 1.1rem;
  }

  .contact-form-block,
  .contact-info-block {
    padding: 18px 6px 12px 6px;
    border-radius: 12px;
  }

  .contact-info-card,
  .contact-invite-card {
    padding: 14px 6px 10px 6px;
    border-radius: 10px;
  }
}

/* --- GAME PAGE --- */
.game-back {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--main-white);
  font-size: 1.08rem;
  margin: 24px 0 18px 0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.game-back:hover {
  color: var(--main-orange);
}

/* --- GAME PAGE CONTAINER --- */
.game-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px 0 16px;
}

.game-main-block {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
  width: 100%;
}

.game-left {
  flex: 1 1 520px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.game-img-block {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 6px 32px #0003;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.08);
  height: 340px;
  display: flex;
  align-items: stretch;
}

.game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  display: block;
}

.game-genre-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--main-orange);
  color: var(--main-white);
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 24px;
  padding: 10px 28px;
  box-shadow: 0 4px 16px var(--main-orange-shadow);
  display: flex;
  align-items: center;
  gap: 8px;
}

.game-about-block {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid #e7c97a33;
  border-radius: 18px;
  box-shadow: 0 2px 16px #0002;
  backdrop-filter: blur(6px);
  padding: 24px 24px 18px 24px;
  margin-bottom: 0;
}

.game-about-title {
  font-size: 1.18rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--main-white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.game-about-title i {
  color: #3be18b;
}

.game-about-desc {
  color: #e7c97a;
  font-size: 1.08rem;
}

.game-right {
  flex: 1 1 520px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.game-title {
  font-size: 2.8rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--main-white);
  margin-bottom: 0;
  text-align: center;
  width: 100%;
}

.game-subtitle {
  color: #e7c97a;
  font-size: 1.25rem;
  margin-bottom: 18px;
  text-align: center;
  width: 100%;
}

.game-play-btn {
  background: var(--main-orange);
  color: var(--main-white);
  font-size: 1.35rem;
  font-weight: 700;
  border-radius: 32px;
  padding: 22px 64px;
  border: none;
  box-shadow: 0 4px 16px var(--main-orange-shadow);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
  outline: none;
  margin-left: auto;
  margin-right: auto;
}

.game-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.game-feature {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid #e7c97a33;
  border-radius: 14px;
  box-shadow: 0 2px 16px #0002;
  backdrop-filter: blur(6px);
  padding: 16px 18px;
  color: var(--main-white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  transition: box-shadow 0.2s, border 0.2s, background 0.2s;
}

.game-feature i {
  color: var(--main-orange);
  font-size: 1.2em;
}

.game-feature .star {
  color: #ffe066;
  font-size: 1.2em;
}

.game-feature:hover {
  box-shadow: 0 0 24px 4px #fa8617cc, 0 2px 16px #0002;
  border: 1.5px solid var(--main-orange);
  background: rgba(255, 255, 255, 0.13);
}

.game-disclaimer {
  background: #3b5e44;
  color: var(--main-footer-text);
  border-radius: 14px;
  padding: 18px 18px 10px 18px;
  margin-top: 12px;
  font-weight: 600;
  text-align: left;
  border: 1.5px solid #e7c97a55;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  width: 100%;
}

.game-disclaimer .fa,
.game-disclaimer .fas,
.game-disclaimer .far {
  color: #fa8617;
  font-size: 1.2em;
}

/* --- GAME PLAY BLOCK --- */
.game-play-block {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid #e7c97a33;
  border-radius: 24px;
  box-shadow: 0 2px 16px #0002;
  backdrop-filter: blur(6px);
  padding: 32px 28px 24px 28px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.game-play-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.game-play-title {
  font-size: 1.4rem;
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: var(--main-white);
}

.game-play-info-btn {
  background: #217a5a;
  color: var(--main-white);
  border: none;
  border-radius: 18px;
  padding: 8px 22px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.game-play-info-btn:hover {
  background: var(--main-orange);
  color: var(--main-white);
}

.game-iframe-block {
  background: #151e36;
  border-radius: 18px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
}

/* Позначка для вставки iframe */
.game-iframe-placeholder {
  color: #fff;
  font-size: 1.2rem;
  opacity: 0.5;
  text-align: center;
  width: 100%;
  padding: 60px 0;
}

.game-sound-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0 0;
  font-size: 1.1rem;
  color: var(--main-white);
}

.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 28px;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: var(--main-white);
  border-radius: 50%;
  transition: .4s;
}

input:checked+.slider {
  background: #3be18b;
}

input:checked+.slider:before {
  transform: translateX(20px);
}

.game-play-footer {
  text-align: center;
  margin-top: 18px;
}

.game-play-footer-text {
  color: var(--main-white);
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.game-play-footer .btn {
  margin-top: 0;
  padding: 12px 32px;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .game-main-block {
    flex-direction: column;
    gap: 24px;
  }

  .game-left,
  .game-right {
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .game-title {
    font-size: 1.3rem;
  }

  .game-play-block,
  .game-about-block {
    padding: 14px 6px 10px 6px;
    border-radius: 12px;
  }

  .game-img-block {
    border-radius: 12px;
  }

  .game-img {
    border-radius: 12px;
  }

  .game-feature {
    font-size: 0.98rem;
    padding: 10px 8px;
    border-radius: 8px;
  }

  .game-disclaimer {
    font-size: 0.98rem;
    padding: 10px 8px;
    border-radius: 8px;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .mobile-nav.active {
    display: flex !important;
  }
}

/* --- HEADER & FOOTER VISUAL --- */
.site-header {
  background: linear-gradient(90deg, #085765 80%, #195660 100%);
  border-bottom: 2px solid #217a5a44;
  box-shadow: 0 2px 12px #0002;
}

.site-footer {
  background: linear-gradient(90deg, #085765 80%, #195660 100%);
  border-top: 2px solid #217a5a44;
  box-shadow: 0 -2px 12px #0002;
}

/* --- HEADER NAV FONT SIZE --- */
.site-nav .nav-link {
  font-size: 1rem;
}

@media (max-width: 1100px) {
  .game-page-container {
    max-width: 100%;
    padding: 24px 4px 0 4px;
  }

  .game-title {
    font-size: 2rem;
  }
}

@media (max-width: 900px) {
  .game-main-block {
    flex-direction: column;
    gap: 24px;
  }

  .game-left,
  .game-right {
    min-width: 0;
  }

  .game-img-block {
    height: 220px;
    border-radius: 18px;
  }

  .game-img {
    border-radius: 18px;
  }
}

@media (max-width: 700px) {
  .game-title {
    font-size: 1.3rem;
  }

  .game-play-block,
  .game-about-block {
    padding: 14px 6px 10px 6px;
    border-radius: 12px;
  }

  .game-img-block {
    border-radius: 12px;
    height: 140px;
  }

  .game-img {
    border-radius: 12px;
  }

  .game-feature {
    font-size: 0.98rem;
    padding: 10px 8px;
    border-radius: 8px;
  }

  .game-disclaimer {
    font-size: 0.98rem;
    padding: 10px 8px;
    border-radius: 8px;
  }
}