.policy,
.success {
  padding-block: 110px 60px !important;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 27px;
}

.success__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.success__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 28px;
  color: #ffffff;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #ffffff;
}

.policy__title {
  color: #ffffff;
}

.policy__text h2 {
  text-align: left;
  font-size: 21px;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 22px;
}

.policy__link {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding-inline: 20px;
}

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

body {
  font-family: "Inter", sans-serif;
  background: #070d2d;
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #070d2d;
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo {
  width: 30px;
  height: 30px;
}

.brand-text {
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f4a832;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(26, 31, 58, 0.98);
  padding: 20px 0;
}

.mobile-nav-link {
  display: block;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
  color: #f4a832;
  background: rgba(244, 168, 50, 0.1);
}

/* Main Sections */
main {
  margin-top: 70px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title.centered {
  text-align: center;
}

/* Hero Section */
.hero {
  padding: 100px 0 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: url(/wp-content/themes/wentarix.com/img/bg.png) center / cover no-repeat;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.hero-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.anubis-frame {
  position: relative;
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, #f4a832, #e6941f);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 10px solid #d4851a;
}

.anubis-frame::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  border: 6px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
}

.anubis-frame::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: linear-gradient(135deg, #f4a832, #e6941f);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.3;
}

.anubis-main {
  width: 350px;
  height: 350px;
  object-fit: contain;
  z-index: 2;
}

.hero-right {
  flex: 1;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 40px;
  line-height: 1.1;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff, #f4a832);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #f4a832, #e6941f);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px rgba(244, 168, 50, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(244, 168, 50, 0.6);
}

.cta-button.centered {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
}

/* Why Choose Section */
.why-choose {
  padding: 100px 0;
  background: #070d2d;
}

.why-choose-content {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

.why-choose-left {
  flex: 2;
}

.why-choose-intro {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.advantages {
  margin-bottom: 40px;
}

.advantages-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #f4a832;
}

.advantages-list {
  list-style: none;
  margin-bottom: 30px;
}

.advantages-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.advantages-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #f4a832;
  font-weight: bold;
  font-size: 1.3rem;
  top: -2px;
}

.advantages-list li strong {
  color: white;
  font-weight: 600;
}

.mission-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 1.1rem;
}

.why-choose-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.anubis-side {
  text-align: center;
}

.anubis-secondary {
  width: 380px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Games Preview */
.games-preview {
  padding: 60px 0;
}

.games-preview-img {
  width: 100%;
}

.games-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.game-card {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.game-card:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover img {
  transform: scale(1.1);
}

/* Genres Section */
.genres {
  padding: 100px 0;
  position: relative;
  background: #070d2d;
}

.genres-intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.genres-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.genre-item {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1.1rem;
}

.genre-item strong {
  color: #f4a832;
  font-weight: 600;
}

.genres-outro {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 50px auto;
  line-height: 1.8;
  font-size: 1.1rem;
}

.pyramid-3d {
  text-align: center;
  margin-top: 80px;
}

.pyramid-3d img {
  width: 350px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Gateway Section */
.gateway {
  padding: 100px 0;
}

.gateway-content {
  display: flex;
  gap: 100px;
  align-items: center;
}

.gateway-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.anubis-blue {
  text-align: center;
}

.anubis-blue img {
  width: 450px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.gateway-right {
  flex: 1;
}

.gateway-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 1.1rem;
}

.gateway-outro {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
  line-height: 1.8;
  font-weight: 600;
  font-size: 1.2rem;
}

/* Level Up Section */
.level-up {
  padding: 100px 0 80px;
  text-align: center;
  background: url(/wp-content/themes/wentarix.com/img/bg.png) center / cover no-repeat;
}

.level-up-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

.level-up-motto {
  color: #f4a832;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 50px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 0 120px;
  background: rgba(26, 31, 58, 0.5);
}

.form-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 60px;
  font-size: 1.2rem;
  line-height: 1.7;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px 25px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1.1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f4a832;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(244, 168, 50, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: #1a1f3a;
  color: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, #f4a832, #e6941f);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 15px 30px rgba(244, 168, 50, 0.4);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(244, 168, 50, 0.6);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Footer */
.footer {
  background: #070d2d;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  width: 35px;
  height: 35px;
}

.footer-brand-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #f4a832;
}

.footer-info {
  text-align: center;
}

.company-name {
  font-weight: 600;
  color: #f4a832;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.company-address,
.company-phone,
.company-email {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 5px;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  width: 50px;
  height: 50px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 25px rgba(244, 168, 50, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* Cookie Notice */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9998;
  display: none;
}

.overlay.show {
  display: block;
}

.cookie-notice {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  display: none;
}

.cookie-notice.show {
  display: flex;
}

.cookie-popup {
  background: linear-gradient(135deg, #1a1f3a 0%, #2d4a73 100%);
  border-radius: 25px;
  padding: 50px;
  max-width: 550px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(244, 168, 50, 0.3);
  position: relative;
}

.cookie-popup::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #f4a832, #e6941f);
  border-radius: 25px;
  z-index: -1;
  opacity: 0.2;
}

.cookie-icon {
  margin-bottom: 25px;
}

.cookie-icon img {
  width: 70px;
  height: 70px;
}

.cookie-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
}

.cookie-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 40px;
  font-size: 1rem;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-accept {
  background: linear-gradient(135deg, #f4a832, #e6941f);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(244, 168, 50, 0.4);
}

.cookie-manage {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-manage:hover {
  background: white;
  color: #1a1f3a;
  transform: translateY(-2px);
}

/* Games Page Specific */
.games-hero {
  padding: 120px 0 80px;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.games-hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff, #f4a832);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.games-hero-description {
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.8;
  font-size: 1.1rem;
}

.games-grid-section {
  padding: 80px 0 120px;
  position: relative;
}

.games-grid-section .container {
  display: flex;
  align-items: center;
  gap: 54px;
}

@media (max-width: 768px) {
  .games-grid-section .container {
    flex-direction: column;
  }
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.game-item {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  height: 250px;
}

.game-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

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

.game-item:hover img {
  transform: scale(1.1);
}

.game-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #FFFFFF99,
    #FFFFFF99
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.game-item:hover .game-item-overlay {
  opacity: 1;
}

.game-item-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgb(0, 0, 0);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 20px;
}

.gold-treasure {
width: 100%;
  height: auto;
  opacity: 0.4;
  z-index: -1;
  max-width: 360px;
}

/* Game Page Specific */
.game-hero {
  padding: 120px 0 100px;
}

.game-hero-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.game-hero-left {
  flex: 1;
  text-align: center;
}

.game-icon {
  width: 250px;
  height: 250px;
  border-radius: 25px;
  overflow: hidden;
  margin: 0 auto 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.game-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff, #f4a832);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.play-button {
  display: inline-block;
  background: linear-gradient(135deg, #f4a832, #e6941f);
  color: white;
  padding: 22px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px rgba(244, 168, 50, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.play-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(244, 168, 50, 0.6);
}

.game-hero-right {
  flex: 2;
}

.game-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.game-features {
  margin-bottom: 50px;
}

.features-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f4a832;
}

.features-intro {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.features-list {
  list-style: none;
}

.features-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  background: #f4a832;
  border-radius: 50%;
}

.features-list li strong {
  color: white;
  font-weight: 600;
}

.game-advantages {
  margin-bottom: 50px;
}

.advantages-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #f4a832;
}

.game-screenshots {
  position: relative;
  margin-top: 60px;
}

.screenshots-container {
  position: relative;
  width: 400px;
  height: 500px;
  margin-left: auto;
}

.screenshot {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.screenshot:first-child {
  top: 0;
  right: 0;
  width: 300px;
  height: 220px;
  z-index: 3;
}

.screenshot:last-child {
  bottom: 0;
  left: 0;
  width: 250px;
  height: 180px;
  z-index: 2;
}

.screenshot:hover {
  transform: scale(1.05);
  z-index: 4;
}

.screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  .hero-content,
  .why-choose-content,
  .gateway-content,
  .game-hero-content {
    gap: 60px;
  }

  .anubis-frame {
    width: 400px;
    height: 400px;
  }

  .anubis-main {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 1024px) {
  .hero-content,
  .why-choose-content,
  .gateway-content,
  .game-hero-content {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }

  .anubis-frame {
    width: 350px;
    height: 350px;
    margin: 0 auto;
  }

  .anubis-main {
    width: 260px;
    height: 260px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .games-hero-title {
    font-size: 3rem;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .gold-treasure {
    width: 400px;
    right: -80px;
    bottom: -80px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .burger-menu {
    display: flex;
  }

  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .mobile-menu.show {
    display: block;
  }

  .hero-title,
  .games-hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .game-title {
    font-size: 2.5rem;
  }

  .anubis-frame {
    width: 300px;
    height: 300px;
  }

  .anubis-main {
    width: 220px;
    height: 220px;
  }

  .genres-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .game-item {
    height: 220px;
  }

  .game-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .screenshots-container {
    width: 100%;
    height: 400px;
    margin: 30px auto 0;
  }

  .screenshot:first-child {
    top: 30px;
    right: 30px;
    width: 250px;
    height: 180px;
  }

  .screenshot:last-child {
    bottom: 30px;
    left: 30px;
    width: 200px;
    height: 140px;
  }

  .pyramid-3d img {
    width: 280px;
  }

  .anubis-secondary,
  .anubis-blue img {
    width: 320px;
  }

  .hero,
  .why-choose,
  .genres,
  .gateway,
  .level-up,
  .contact-form-section,
  .games-hero,
  .games-grid-section,
  .game-hero {
    padding: 80px 0 60px;
  }

  .contact-form-section {
    padding: 80px 0 100px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-title,
  .games-hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .game-title {
    font-size: 2rem;
  }

  .anubis-frame {
    width: 250px;
    height: 250px;
  }

  .anubis-main {
    width: 180px;
    height: 180px;
  }

  .games-row {
    gap: 15px;
  }

  .game-card {
    width: 120px;
    height: 120px;
  }

  .cookie-popup {
    margin: 20px;
    padding: 40px 30px;
  }

  .cookie-buttons {
    gap: 15px;
  }

  .pyramid-3d img {
    width: 220px;
  }

  .anubis-secondary,
  .anubis-blue img {
    width: 280px;
  }

  .contact-form {
    margin: 0;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .submit-button {
    padding: 18px 35px;
    font-size: 1.1rem;
  }

  .gold-treasure {
    width: 300px;
    right: -60px;
    bottom: -60px;
  }

  .game-item {
    height: 200px;
  }

  .game-item-title {
    font-size: 1.3rem;
  }
}

/* Additional animations and effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.why-choose-content,
.gateway-content {
  animation: fadeInUp 0.8s ease-out;
}
