.policy,
.success {
  padding-block: 120px 60px !important;

  min-height: 92vh;
}

@media (max-width: 768px) {
  .policy {
    padding-block: 100px 60px !important;
  }
}

/* .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__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #ffffff;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 34px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 28px;
  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: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Fonts */
@font-face {
  font-family: "GillSansExtraBoldC";
  src: url(/wp-content/themes/bravonexis.com/fonts/itc-souvenir-lt-demi-5885804e6705a.ttf) format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "GillSansExtraBoldC", "Gill Sans", "Arial Black", sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #0f1616;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-popup.active {
  display: flex;
}

.cookie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(0px);
}

.cookie-content {
  position: relative;
  background: #fff;
  border: 4px solid #00bb1f;
  border-radius: 30px;
  padding: 50px;
  max-width: 700px;
  width: 100%;
  text-align: center;
  color: #000;
  z-index: 10001;
}

.cookie-icon {
  font-size: 80px;
  margin-bottom: 20px;
}

.cookie-content h2 {
  font-size: 36px;
  color: #00bb1f;
  margin-bottom: 20px;
  text-transform: none;
}

.cookie-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;

  font-weight: normal;
  color: #000;
}

.cookie-btn {
  width: 100%;
  padding: 18px 30px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #00bb1f;
  color: #000;
}

.cookie-accept:hover {
  background: #00dd00;
  transform: scale(1.02);
}

.cookie-manage {
  background: transparent;
  color: #00bb1f;
  border: 3px solid #00bb1f;
  margin-bottom: 0;
}

.cookie-manage:hover {
  background: #00bb1f;
  color: #000;
}

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

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  width: 40px;
  height: 40px;
}

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

.nav-list a {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  transition: color 0.3s;
  position: relative;
}

.nav-list a:hover {
  color: #00bb1f;
}

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00bb1f;
  transition: width 0.3s;
}

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

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  z-index: 1001;
}

.burger span {
  width: 30px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

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

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

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

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(10, 40, 70, 0.98);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-list a {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s;
}

.mobile-menu-list a:hover {
  color: #00bb1f;
}

.section-title {
  font-weight: 800;
  font-style: Regular;
  font-size: 50px;
  line-height: 110.00000000000001%;
  letter-spacing: 0%;
  text-transform: uppercase;
}

/* Button */
.btn {
  width: fit-content;
  display: inline-block;
  padding: 18px 50px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  border: 2px solid #ffffff80;
  background: #00bb1f;
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 255, 0, 0.3);
}

.btn-primary:hover {
  background: #02991b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 0, 0.4);
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;

  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/wp-content/themes/bravonexis.com/img/hero-bg-bravo.png) center/cover no-repeat;

  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: rgba(20, 60, 90, 0.7);
  backdrop-filter: blur(10px);
  padding: 60px 50px;
  border-radius: 30px;
  border: 3px solid rgba(0, 255, 0, 0.3);
}

.hero-title {
  -webkit-text-stroke: 4px white; /* Біла обведення */
  text-stroke: 2px white;
  text-shadow: 3px 3px 0 white, -3px -3px 0 white, 3px -3px 0 white,
    -3px 3px 0 white, 0 3px 0 white, 3px 0 0 white, 0 -3px 0 white,
    -3px 0 0 white, 3px 3px 5px rgba(0, 0, 0, 0.5);
  font-size: 76px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #00bb1f;
  text-shadow: 2px 2px 10px rgba(0, 255, 0, 0.5);
  letter-spacing: 2px;
}

.hero-text {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.8;
  margin-bottom: 40px;

  font-weight: normal;
}

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

.about-icon {
  text-align: center;
  margin-bottom: 30px;
}

.about-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-img {
    height: 300px;
  }
}

.about-icon img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.section-title {
  -webkit-text-stroke: 2px white; /* Біла обведення */
  text-stroke: 2px white;
  text-shadow: 2px 2px 0 white, -2px -2px 0 white, 2px -2px 0 white,
    -2px 2px 0 white, 0 2px 0 white, 2px 0 0 white, 0 -2px 0 white,
    -2px 0 0 white, 2px 2px 3px rgba(0, 0, 0, 0.5);
  font-size: 50px !important;
  font-weight: 800;
  line-height: 1.2 !important;
  text-align: center !important;
  color: #00bb1f !important;
  letter-spacing: 2px !important;
  margin-bottom: 30px;
}

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

.about-content {
  max-width: 970px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;

  font-weight: normal;
}

/* Portal Section */
.portal {
  padding: 100px 0;
}

.portal-header {
  margin-bottom: 50px;
}

.portal-icon {
  margin-bottom: 20px;
}

.portal-icon img {
  width: 80px;
  height: 80px;
}

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

.portal-image img {
  width: 100%;
}

.portal-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;

  font-weight: normal;
}

/* Features Section */
.features {
  padding: 100px 0;
}

.features-header {
  text-align: center;
  margin-bottom: 70px;
}

.features-icon {
  margin-bottom: 20px;
}

.features-icon img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.features-subtitle {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;

  font-weight: normal;
}

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

.feature-card {
  background: #00BB1F12;
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid rgba(0, 255, 0, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #00bb1f;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

.feature-arrow {
  font-size: 32px;
  color: #00bb1f;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 24px;
  color: #00bb1f;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;

  font-weight: normal;
}

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

.features-creatures img {
  width: 100%;
  height: auto;
  max-width: 834px;
  margin: 0 auto;

  transition: transform 0.3s ease;
}

.features-creatures img:hover {
  transform: scale(1.1) rotate(5deg);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0 0;
}

.testimonials-header {
  margin-bottom: 60px;
}

.testimonials-icon {
  margin-bottom: 20px;
}

.testimonials-icon img {
  width: 80px;
  height: 80px;
}

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

.testimonial-card {
  background: #00BB1F12;
  padding: 30px;
  border-radius: 15px;
  border: 2px solid rgba(0, 255, 0, 0.2);
}

.testimonial-rating {
  color: #ffd700;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-author {
  font-size: 24px;
  color: #00bb1f;
  font-weight: 700;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.7;

  font-weight: normal;
}

.testimonials-image {
  text-align: center;
}

.testimonials-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .testimonials-image img {
    height: 300px;
  }
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: url(/wp-content/themes/bravonexis.com/img/contact-bg-bravo.png) center / cover no-repeat;
  position: relative;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(20, 60, 90, 0.6);
  padding: 60px 50px;
  border-radius: 30px;
  border: 3px solid rgba(0, 255, 0, 0.3);
}

.contact-title {
  font-size: 48px;
  color: #00bb1f;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.contact-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;

  font-weight: normal;
}

.contact-info {
  font-size: 18px;
  line-height: 2;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info strong {
  color: #00bb1f;
}

/* Footer */
.footer {
  padding: 50px 0 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
}

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-nav {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #00bb1f;
}

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

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

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.footer-copyright {
  padding-top: 30px;
  font-size: 14px;
  opacity: 0.7;
}

/* Games Page */
.games-hero {
  padding: 150px 0 80px;

}

.games-hero-icon {

  margin-bottom: 30px;
}

.games-hero-icon img {
  width: 80px;
  height: 80px;

}

.games-hero-title {
  font-size: 52px;
  line-height: 1.2;
 
  color: #00bb1f;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.games-hero-content {

}

.games-hero-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;

  font-weight: normal;
}

/* Games Grid */
.games-grid-section {
  padding: 80px 0 100px;

}

.games-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .games-grid { 
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
  }
}

.game-card {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: #00bb1f;
  box-shadow: 0 15px 40px rgba(0, 255, 0, 0.3);
}

.game-card:hover .game-card-overlay {
  opacity: 1;
  visibility: visible;
}

.game-card:nth-of-type(1) {
  grid-column: 1/2;
  grid-row: 1/3;
}

.game-card:nth-of-type(2) {
  grid-column: 2/3;
  grid-row: 1/3;
}

.game-card:nth-of-type(3) {
  grid-column: 3/4;
  grid-row: 1/2;
}

.game-card:nth-of-type(4) {
  grid-column: 3/4;
  grid-row: 2/3;
}

.game-card:nth-of-type(5) {
  grid-column: 4/5;
  grid-row: 1/2;
}

.game-card:nth-of-type(6) {
  grid-column: 4/5;
  grid-row: 2/3;
}

.game-card-image {
  width: 100%;
  aspect-ratio: 1;
}

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

.game-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00bb1f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 17px;
}

.game-card-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 1px;
}

/* Game Page */
.game-hero {
  padding: 120px 0 80px;

}

.game-hero-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

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

.game-hero-image {
  width: 100%;
}

.game-hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 255, 0, 0.2);
}

.game-hero-icon {
  margin-bottom: 20px;
}

.game-hero-icon img {
  width: 60px;
  height: 60px;
}

.game-hero-title {
  font-size: 42px;
  color: #00bb1f;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.game-hero-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;

  font-weight: normal;
}

.game-details {
  padding: 80px 0 100px;
 
}

.game-details-content {
 display: flex;
 flex-direction: column;
  gap: 60px;
  align-items: center;
}

.game-details-icon {
  margin-bottom: 20px;
}

.game-details-icon img {
  width: 60px;
  height: 60px;
  margin:  0 auto;
}

.game-details-title {
  font-size: 36px;
  color: #00bb1f;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.game-details-text p {
  font-size: 16px;
  line-height: 1.8;
text-align: center;
  font-weight: normal;
}

.game-details-image img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 255, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .portal-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }


  .game-hero-content {
    grid-template-columns: 1fr;
  }

  .game-details-content {
    grid-template-columns: 1fr;
  }
}

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

  .burger {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-content {
    padding: 40px 30px;
  }

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

  .section-title {
    font-size: 36px !important;
  }

  .about,
  .portal,
  .features,
  .testimonials,
  .contact {
    padding: 60px 0;
  }

  .testimonials {
    padding: 60px 0 0;
  }

  .features-creatures {
    flex-wrap: wrap;
    gap: 20px;
  }

  

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

  .game-card-title {
    font-size: 20px;
  }

  .game-card-overlay {
    padding: 20px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-content {
    padding: 40px 30px;
  }

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

  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  .cookie-content {
    padding: 30px 25px;
  }

  .cookie-content h2 {
    font-size: 28px;
  }

  .cookie-icon {
    font-size: 60px;
  }

  .games-hero {
    padding: 120px 0 60px;
  }

  .games-hero-title {
    font-size: 36px;
  }

  .game-hero {
    padding: 100px 0 60px;
  }

  .game-hero-title {
    font-size: 32px;
  }

  .game-details-title {
    font-size: 28px;
  }
}

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

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

  .hero-text {
    font-size: 14px;
  }

  .section-title {
    font-size: 26px;
  }

  .btn {
    padding: 15px 35px;
    font-size: 16px;
  }

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

  .game-card-title {
    font-size: 24px;
  }

  .game-card-overlay {
    padding: 25px;
  }

  .cookie-content {
    padding: 25px 20px;
  }

  .cookie-content h2 {
    font-size: 24px;
  }

  .cookie-content p {
    font-size: 14px;
  }

  .cookie-btn {
    font-size: 16px;
    padding: 15px 25px;
  }
}

/* Smooth Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.about-content,
.portal-content,
.features-grid,
.testimonials-grid,
.contact-content {
  animation: fadeInUp 0.8s ease-out;
}
