/********** Template CSS **********/
:root {
  --primary: #4ac4f3;
  --light: #edf5ff;
  --dark: #202942;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 500 !important;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn.btn-primary {
  color: var(--light);
}

.btn.btn-light {
  color: var(--primary);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: bold;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--light);
  outline: none;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: black;
}

.sticky-top.navbar .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark);
}

.sticky-top.navbar .navbar-nav .nav-link:hover,
.sticky-top.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .navbar-brand h1 {
  color: #ffffff;
}

.navbar .navbar-brand img {
  max-height: 130px;
  transition: 0.5s;
}

.sticky-top.navbar .navbar-brand img {
  max-height: 100px;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar {
    position: relative;
    background: #ffffff;
  }

  .navbar .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar .navbar-nav .nav-link,
  .sticky-top.navbar .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--dark);
  }

  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
  }

  .navbar .navbar-brand h1 {
    color: var(--primary);
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }

  .hero-header-other {
    display: none;
  }

  .page-content .content ul li p {
    height: auto !important;
  }
}

@media (min-width: 992px) {
  .navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
  }

  .sticky-top.navbar {
    position: fixed;
    background: #ffffff;
  }

  .sticky-top.navbar .navbar-brand h1 {
    color: var(--primary);
  }

  .navbar .navbar-nav .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .navbar-nav .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }

  .sticky-top.navbar .btn {
    color: var(--light);
    background: var(--primary);
    border-color: var(--primary);
  }
}

/*** Hero Header ***/
.hero-header {
  margin-bottom: 6rem;
  padding: 9rem 0;
  background: url(../img/bg-bottom.png) center bottom no-repeat;
}

@media (max-width: 991.98px) {
  .hero-header {
    padding: 6rem 0 9rem 0;
    margin-bottom: 0;
  }
}

/*** Feature ***/
.feature-item,
.advanced-feature-item {
  height: 100%;
  transition: 0.5s;
}

.feature-item:hover {
  margin-top: -15px;
}

.advanced-feature-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.advanced-feature-item * {
  transition: 0.5s;
}

.advanced-feature-item:hover {
  background: var(--primary);
}

.advanced-feature-item:hover * {
  color: #ffffff !important;
}

/*** Process ***/
.process {
  padding: 0;
  list-style: none;
}

.process li {
  position: relative;
  display: flex;
  padding-bottom: 25px;
}

.process li::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 20px;
  background: var(--primary);
}

.process li:last-child {
  padding-bottom: 0;
}

.process li:last-child:after {
  display: none;
}

.process li span {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  background: var(--primary);
  border-radius: 40px;
  z-index: 1;
}

.process li p {
  margin: 0;
}

/*** Price ***/
.price-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}

.price-item:hover {
  margin-top: -10px;
}

/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
  padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: var(--light);
  border-radius: 60px;
  font-size: 22px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/*** Footer ***/
.footer {
  margin-top: 1rem;
  padding: 30px;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #858585;
  border-radius: 40px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
  border-color: var(--light);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: #858585;
  font-weight: normal;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
  color: var(--light);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
  color: var(--secondary);
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* 
---------------------------------------------
Gaming Library Style
--------------------------------------------- 
*/

.gaming-library {
  margin-top: 0;
  padding: 0 30px;
  background-color: white;
  border-radius: 23px;
}

.gaming-library .item {
  border-bottom: 1px solid #5c5b57;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.gaming-library .last-item {
  margin-bottom: 30px;
}

.profile-library .last-item {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.gaming-library .item ul {
  display: flex;
  align-items: center;
}

.gaming-library .item ul li {
  margin-top: 15px;
}

.gaming-library .item ul li:nth-last-child(2) {
  width: 25%;
}

.gaming-library .item ul li img {
  margin-top: -30px;
}

.gaming-library .item ul li {
  display: inline-block;
  width: 22%;
  text-align: center;
}

.gaming-library .item ul li:first-child {
  width: 150px;
}

.gaming-library .item ul li:last-child {
  width: 15%;
  text-align: right;
}

.gaming-library .item ul li h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.gaming-library .item ul li h4 p {
  font-size: 16px;
}

.gaming-library .item ul li span {
  color: #666;
  font-size: 16px;
}

.gaming-library .main-button {
  text-align: center;
  margin-bottom: -53px;
}

.star {
  display: inline-block;
  margin: 0 auto;
  width: 25px;
  height: 25px;
  background: none;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.star.full {
  background-color: gold;
}

.star.star40 {
  background: linear-gradient(to right, gold 40%, lightgray 60%);
}

.star.star50 {
  background: linear-gradient(to right, gold 50%, lightgray 50%);
}

.star.star60 {
  background: linear-gradient(to right, gold 60%, lightgray 40%);
}

.star.star70 {
  background: linear-gradient(to right, gold 70%, lightgray 30%);
}

.star.star80 {
  background: linear-gradient(to right, gold 80%, lightgray 20%);
}

.star.star90 {
  background: linear-gradient(to right, gold 90%, lightgray 10%);
}

.gaming-library .item ul li:nth-child(3) span {
  color: #4ac4f3;
  font-size: 16px;
}

img {
  width: 100%;
  overflow: hidden;
}

.features {
  display: flex;
  flex-direction: column;
  color: black;
}

.page-content ul,
.page-content ol {
  margin-left: 35px;
}

.features li {
  width: 100% !important;
  text-align: left !important;
  margin-top: 5px !important;
}

.main-border-button a {
  font-size: 14px;
  color: #4ac4f3;
  background-color: transparent;
  border: 1px solid #4ac4f3;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 25px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.heading-section h4 {
  color: #4ac4f3;
  font-size: 34px;
  text-decoration: none;
  margin-bottom: 100px;
  text-align: center;
}

.navbar-nav {
  width: 100%;
  justify-content: end;
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer {
  padding-top: 15px;
}

footer p {
  text-align: center;
  padding: 10px 0px 30px;
  color: black;
  font-weight: 300;
}

footer p a {
  color: black;
  transition: all 0.3s;
}

footer p a:hover {
  color: #4ac4f3;
}

footer ul {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin: 20px 0 30px;
}

footer ul li {
  padding: 5px;
}

footer ul li a {
  color: black;
}

.hero-header-other {
  margin-bottom: 3rem;
  padding: 4rem 0;
}

.page-content.contact-page {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-content.contact-page .gaming-library {
  margin-top: 10px;
  width: 60%;
}

.page-content {
  padding: 0 30px;
}

.page-content .heading h2 {
  text-align: center;
  margin-bottom: 25px;
}
.page-content .heading p {
  margin: 10px 0 20px;
}
.page-content .content h4 {
  margin: 20px 0 10px;
}

.page-content .heading h1 {
  text-align: center;
  margin-bottom: 25px;
}

.page-content .content h2 {
  margin: 20px 0 10px;
}

.page-content .content ol li {
  color: #666 !important;
  list-style: number;
}
.page-content .content ul li {
  color: #666;
}

.page-content .content ul li {
  list-style: disc !important;
}

.page-content .content ul li p {
  margin-bottom: 0;
  height: 30px;
}

@media (max-width: 767px) {
  .gaming-library {
    margin-top: 20px;
  }
  .gaming-library .item ul {
    display: block;
  }
  .gaming-library .item ul li,
  .gaming-library .item ul li:first-child,
  .gaming-library .item ul li:last-child {
    width: 100% !important;
    text-align: center !important;
  }
  .gaming-library .item ul li {
    margin-top: 30px;
  }
  .gaming-library .item ul li:nth-child(2) {
    width: 48% !important;
  }
  .gaming-library .item ul li:nth-child(3) {
    width: 48% !important;
  }
  .gaming-library .item ul li:nth-last-child(2) {
    width: 100% !important;
  }
  .gaming-library .item ul li img {
    width: 170px;
  }
  .page-content.contact-page .gaming-library {
    width: 100% !important;
  }
}

.uk-width-100 {
  width: 100%;
}

.uk-textarea,
.uk-input {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: black !important;
  width: 100%;
  max-width: 100%;
  padding: 0 10px;
  border-radius: 15px;
}

.uk-input {
  height: 50px;
}

.uk-button-primary {
  margin-top: 20px;
  background-color: #4ac4f3 !important;
  color: black !important;
}

.uk-div {
  margin-top: 15px;
}

.uk-div:first-child {
  margin-top: 0;
}

.uk-form {
  text-align: center;
}

button {
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.portal-veil1,
.portal-veil {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 10200;
}

.portal-veil .popup {
  padding: 50px 20px;
  position: relative;
  background-color: white;
}

.portal-veil .popup .close-btn {
  position: absolute;
  right: 10px;
  top: 5px;
  background: transparent;
  color: black;
}

.age-gate {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.5s ease-in-out;
}

button {
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.accept {
  background: green;
  color: white;
}

.reject {
  background: red;
  color: white;
}

.settings {
  background: gray;
  color: white;
}

.age-options {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.access-btn {
  flex: 1;
  padding: 12px;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s ease;
}

.yes-btn {
  background: #28a745;
  color: white;
}

.yes-btn:disabled {
  background: #b1dfbb;
  cursor: not-allowed;
}

.no-btn {
  background: #dc3545;
  color: white;
  margin-right: 10px;
}

.age-gate {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.5s ease-in-out;
}

.age-gate h2 {
  margin-bottom: 10px;
  font-size: 26px;
  color: black;
}

.age-gate p {
  font-size: 18px;
  color: black;
  margin-bottom: 20px;
}

/* Блок з чекбоксом */
.age-checkbox {
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-checkbox input {
  margin-top: 0;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.age-checkbox label {
  font-size: 16px;
  color: black;
  cursor: pointer;
  margin-bottom: 0;
}

.cookie-bg {
  display: none;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
}

.cookie-modal {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #27292a;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  max-width: 600px;
  text-align: center;
  z-index: 9999999999;
}

.cookie-bg.show {
  display: block;
}

.portal-veil.show {
  display: flex;
}

.cookie-buttons {
  margin-top: 10px;
  display: flex;
  justify-content: space-around;
}

.settings-panel {
  display: none;
  margin-top: 10px;
  text-align: left;
  color: #666;
}

.settings-panel.show {
  display: block;
}

.hero-header .container h1{
  font-size: 44px;
}

.hero-header .container p{
  font-size: 22px;
}

footer .must-pages{
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}

footer .must-pages ul{
  flex-direction: column;
}