.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: 1200px;
  padding-inline: 20px;
}

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

body {
  font-family: "Bebas Neue", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #000000;
  overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-popup.show {
  opacity: 1;
  visibility: visible;
}

.cookie-content {
  background-color: #000000;
  padding: 40px;
  max-width: 600px;
  text-align: left;
  border: 1px solid #333;
}

.cookie-content h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.cookie-content p {
  font-size: 1em;
  margin-bottom: 30px;
  line-height: 1.4;
  letter-spacing: 1px;
}

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

.accept-btn {
  background-color: #2196f3;
  color: white;
  border: none;
  padding: 15px 30px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2em;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
}

.accept-btn:hover {
  background-color: #1976d2;
}

.refuse-btn {
  background-color: transparent;
  color: white;
  border: 2px solid #ffffff;
  padding: 15px 30px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2em;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
}

.refuse-btn:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
  padding: 15px 0;
}

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

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

.logo-icon {
  font-size: 1.5em;
}

.logo-text {
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 400;
}

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

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2em;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #2196f3;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2196f3;
  transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

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

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
  padding-top: 190px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero--main {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(/wp-content/themes/clopirado/img/hero-bg.png) center / cover no-repeat;
}

.hero--game1 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(/wp-content/themes/clopirado/img/game-1.png) center / cover no-repeat;
}

.hero--game2 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(/wp-content/themes/clopirado/img/game-2.png) center / cover no-repeat;
}

.hero--game3 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(/wp-content/themes/clopirado/img/game-3.png) center / cover no-repeat;
}

.hero--game4 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(/wp-content/themes/clopirado/img/game-4.png) center / cover no-repeat;
}

.hero--game5 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(/wp-content/themes/clopirado/img/game-5.png) center / cover no-repeat;
}

.hero--game6 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(/wp-content/themes/clopirado/img/game-6.png) center / cover no-repeat;
}

.hero--game7 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(/wp-content/themes/clopirado/img/game-7.png) center / cover no-repeat;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: end;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 100px;
}

.hero-content h1 {
  font-size: 84px !important;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: 3px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 64px !important;
  }
}

.hero-content p {
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 40px;
  color: #cccccc;
  letter-spacing: 1px;
}

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

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #119de9;
  color: white;
  min-width: 218px;
  padding: 15px 30px;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3em;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #1976d2;
  transform: translateY(-2px);
}

/* About Section */
.about {
  padding: 100px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-text h2 {
  font-size: 3em;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.about-text p {
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #cccccc;
  letter-spacing: 1px;
}

.about-bottom {
  max-width: 500px;
}

.about-bottom p {
  font-size: 1em;
  line-height: 1.4;
  color: #cccccc;
  letter-spacing: 1px;
}

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

.why-choose h2 {
  font-size: 3.5em;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.section-subtitle {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 1px;
  line-height: 1.4;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.feature {
  text-align: left;
}

.feature h3 {
  font-size: 40px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  line-height: 1.3;
}

.feature p {
  font-size: 16px;

  color: #cccccc;
  line-height: 1.4;
  letter-spacing: 1px;
}

/* Categories Section */
.categories {
  padding: 100px 0;
}

.categories h2 {
  font-size: 3.5em;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.categories-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.category-item {
  margin-bottom: 40px;
}

.category-item h3 {
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  color: #ffffff;
}

.category-item p {
  font-size: 16px;

  color: #cccccc;
  line-height: 1.4;
  letter-spacing: 1px;
}

.category-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
}

/* Games Section */
.games {
  padding: 120px 0;
  background-color: #000000;
}

.games h2 {
  font-size: 3em;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 2px;
  line-height: 1.2;
}

.games-top {
  max-width: 700px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

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

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

.game-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Contact Section */
.contact {
  padding: 100px 0;
}

.contact h2 {
  font-size: 3.5em;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.contact > .container > p {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 60px;
  line-height: 1.4;
  letter-spacing: 1px;
}

.contact-info {
  margin-bottom: 40px;
}

.contact-info h3 {
  font-size: 1.5em;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.contact-info p {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.contact-details {
  text-align: center;
  margin: 60px 0;
}

.contact-details h3 {
  font-weight: 400;
  font-style: Regular;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;

  margin-bottom: 20px;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.social-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

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

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form h3 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  background-color: #222;
  border: 1px solid #444;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1em;
  letter-spacing: 1px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background-color: #2196f3;
  color: white;
  border: none;
  padding: 15px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3em;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #1976d2;
}

/* Footer */
footer {
  padding: 40px 0;
  background-color: #000000;
}

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

.footer-content p {
  font-size: 0.9em;
  color: #cccccc;
  letter-spacing: 1px;
}

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

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9em;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2196f3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start !important;
  }

  .hero-content h1 {
    font-size: 2.5em;
  }

  .hero-character {
    right: -20%;
    height: 100%;
  }

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

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

  .why-choose h2,
  .categories h2 {
    font-size: 2.5em;
  }

  .games h2 {
    font-size: 2.2em;
  }

  .contact h2 {
    font-size: 2.5em;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 15px;
  }

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

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

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

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

  .cookie-content h2 {
    font-size: 2em;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2em;
  }

  .why-choose h2,
  .categories h2,
  .contact h2 {
    font-size: 2em;
  }

  .games h2 {
    font-size: 1.8em;
  }

  .container {
    padding: 0 15px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Game Page Specific Styles */
.game-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #6b1f8a 0%, #4a148c 50%, #2e0854 100%);
}

.game-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.game-hero-character {
  position: absolute;
  right: -10%;
  bottom: 0;
  height: 120%;
  object-fit: cover;
  opacity: 0.8;
}

.game-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.game-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-top: 100px;
}

.game-hero-content h1 {
  font-size: 4em;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: 3px;
}

.game-hero-content p {
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 40px;
  color: #cccccc;
  letter-spacing: 1px;
}

.game-highlights {
  padding: 100px 0;
}

.game-highlights h2 {
  font-size: 3em;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.highlight-item {
  text-align: left;
}

.highlight-item h3 {
  font-size: 40px;
  margin-bottom: 20px;
  letter-spacing: 2px;
  line-height: 1.3;
}

.highlight-item p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.4;
  letter-spacing: 1px;
}

.game-about {
  padding: 100px 0;
}

.game-about-content {
  max-width: 540px;
}

.game-about h2 {
  font-size: 3em;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.game-about p {
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #cccccc;
  letter-spacing: 1px;
}

.game-features {
  margin-top: 60px;
}

.game-features .container {
  display: flex;
  justify-content: flex-end;
}


.game-features-content {
  max-width: 540px;
}

.game-features h3 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.feature-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.feature-list li {
  margin-bottom: 30px;
  padding-left: 0px;
  position: relative;
}


.feature-list strong {
  display: block;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.feature-list p {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.4;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.section-title {
  font-weight: 400 !important;
  font-style: Regular;
  font-size: 72px !important;
  line-height: 90% !important;
  letter-spacing: 0% !important;
  text-align: left !important;
}
