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

.success__text {
  margin-bottom: 27px;
}

.success {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

.policy__text {
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  letter-spacing: 0%;
}

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

.policy__link {
  color: #fff;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #222222;
}

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

/* Buttons */
.btn-primary {
  width: fit-content;
  display: inline-block;
  background: #ff6b35;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 20px;
  z-index: 10000;
  transition: bottom 0.3s ease;
}

.cookie-popup.show {
  bottom: 0;
}

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

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.btn-accept,
.btn-decline {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-accept {
  background: #ff6b35;
  color: white;
}

.btn-decline {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.btn-accept:hover {
  background: #e55a2b;
}

.btn-decline:hover {
  background: white;
  color: #333;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
}

.logo-icon {
  width: 24px;
  height: 24px;
}

.logo-text {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-link {
  text-decoration: none;
  color: #222;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  color: #222222;
  padding: 150px 0 0px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: center;
  justify-items: end;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-content {
    justify-items: center;
  }
}

.hero-title {
  font-family: Inter;
  font-weight: 800;
  font-size: 80px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 14px;
  line-height: 130%;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-image {
  position: relative;
}

.hero-characters {
  width: 100%;
  height: auto;
}

/* Story Section */
.story {
  padding: 100px 0;
  background: #f8f9fa;
}

.story-content {
  display: grid;
  grid-template-columns: 3fr 4fr 1fr;
  gap: 20px;
  align-items: flex-start;
}

.story-image {
  position: relative;
}

.story-like {
  width: 168px;
  height: 178px;
  object-fit: contain;
  align-self: flex-end;
}

.story-characters {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.story-title {
  font-size: 36px;
  font-weight: 900;
  color: #333;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.story-description {
  font-size: 14px;
  line-height: 130%;
  color: #666;
  margin-bottom: 40px;
}

/* Advantages Section */
.advantages {
  padding: 100px 0;
  background: white;
}

.advantages-top {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .advantages-top {
    flex-direction: column;
  }
}

.advantages-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.advantages-title {
  font-size: 36px;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.advantages-intro {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

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

.advantages-list li {
  margin-bottom: 25px;
  padding-left: 20px;
  position: relative;
}

.advantages-list li::before {
  content: "•";
  color: #ff6b35;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 20px;
}

.advantages-list h3 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.advantages-list p {
  font-size: 14px;
  color: #666;
  line-height: 130%;
}

.advantages-image {
  position: relative;
  text-align: center;
}

.advantages-character {
  width: 100%;
  max-width: 700px;
  height: auto;
}

.emoji-reactions {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  padding: 10px 15px;
  display: flex;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.emoji {
  font-size: 20px;
  width: 100%;
  max-width: 400px;
}

/* Trending Section */
.trending {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
}

@media (max-width: 768px) {
  .trending {
    padding: 170px 0;
  }
}

.trending-title {
  font-size: 36px;
  font-weight: 900;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.trending-description {
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.games-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto 60px;
  justify-items: center;
  max-width: 700px;
}

.game-item {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.game-item:hover {
  transform: translateY(-5px);
}

.game-icon {
  width: 150px;
  height: 150px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.game-item:hover .game-icon {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  background: #ff5906b2;
}

.game-tooltip {
  position: absolute;
  bottom: 8px;
  left: 50%;
  border-radius: 15px;

  width: 150px;
  height: 150px;
  transform: translateX(-50%);
  background: #ff5906b2;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.trending .btn-primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.games-decor1 {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 185px;
  height: 252px;
  background: url(/wp-content/themes/sultriona.com/img/fire.png) center / contain no-repeat;
}

.games-decor2 {
  position: absolute;
  bottom: 10%;
  right: 0;
  width: 185px;
  height: 252px;

  background: url(/wp-content/themes/sultriona.com/img/star.png) center / contain no-repeat;
}

@media (max-width: 768px) {
  .games-decor1 {
    width: 103px;
    height: 120px;
    bottom: 92%;
    left: 0;
  }

  .games-decor2 {
    width: 103px;
    height: 120px;
    bottom: 10%;
    right: 0;
  }
}

/* CTA Section */
.cta {
  padding: 100px 0 0 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: 36px;
  font-weight: 900;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.cta-description {
  font-size: 14px;
  line-height: 130%;

  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.cta .btn-primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.cta-characters {
  margin-top: 60px;
  text-align: center;
}

.cta-image {
  width: 100%;
  height: auto;
}

/* Form Section */
.form-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.form-section h2 {
  font-size: 36px;
  font-weight: 900;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.contact-form .btn-primary {
  width: 100%;
  margin-top: 20px;
}

/* Footer */
.footer {
  color: #222;
  padding: 60px 0 20px;
}

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

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

.footer-logo .logo-text {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
  color: #222;
}

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

.footer-link {
  color: #222;

  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 28px;
  height: 28px;
  transition: opacity 0.3s ease;
}

.social-link:hover .social-icon {
  opacity: 0.7;
}

.footer-bottom {
  text-align: center;

  font-size: 14px;
}

/* Game Page Styles */
.game-hero {
  color: #222;
  padding: 150px 0 80px;
}

.game-hero-content {
  display: grid;
  grid-template-columns: 5fr 6fr 1fr;
  gap: 60px;
  align-items: center;
}

.game-logo-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.game-logo {
  width: 100%;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.thumbs-up {
  align-self: flex-end;
  width: 170px;
  height: 178px;
  object-fit: contain;
}

.thumbs-icon {
  width: 170px;
  height: 178px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.game-info h1 {
  font-size: 70px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.game-info p {
  font-size: 14px;
  line-height: 130%;
  opacity: 0.9;
  margin-bottom: 30px;
}

.game-content {
  padding: 100px 0;
  background: #f8f9fa;
}

.game-section {
  margin-bottom: 80px;
}

.game-section h2 {
  color: #333;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

@media (max-width: 768px) {
  .game-section h2 {
    flex-direction: column;
    align-items: flex-start;
  }
}

.fire-icon {
  width: 106px;
  height: 116px;
  object-fit: contain;
}

.game-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-text p {
  font-size: 14px;
  line-height: 130%;

  margin-bottom: 30px;
}

.game-screenshot {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Content Pages Styles */
.page-content {
  padding: 150px 0 80px;
  background: white;
  min-height: calc(100vh - 200px);
}

.page-content h1 {
  font-size: 48px;
  font-weight: 900;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.content-text {
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.8;
  color: #666;
}

.content-text h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 30px 0 15px;
}

.content-text p {
  margin-bottom: 20px;
}

.back-home {
  text-align: center;
}

.nav-logo {
  text-decoration: none;
}

/* Fix for logo link */
.nav-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
}

.nav-logo a:hover {
  color: #ff6b35;
}

/* Mobile styles for content pages */
@media (max-width: 768px) {
  .page-content h1 {
    font-size: 36px;
  }

  .content-text {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {

  .nav-container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .nav-menu .nav-link {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .hero-title {
    font-size: 46px;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .advantages-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .games-grid .game-item:nth-child(n + 5) {
    grid-column: auto;
  }

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

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .game-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .game-info h1 {
    font-size: 38px;
  }

  .game-features {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .game-section h2 {
    font-size: 28px;
    justify-content: center;
  }
}

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

  .hero-title {
    font-size: 28px;
  }

  .story-title,
  .advantages-title,
  .trending-title,
  .cta-title {
    font-size: 28px;
  }

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

.section-title {
  font-family: Inter;
  font-weight: 800;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #222;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 38px;
  }
}
