@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");
@import url("bootstrap.min.css");
@import url("owl.carousel.min.css");
@import url("owl.theme.default.min.css");
@import url("aos.css");
@import url("gallery.css");
/*-- font style --*/
/*-- media query --*/
* {
  outline: none;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  color: #FFE800;
}

a:hover,
a:active,
a:focus {
  transition: all ease-in-out 0.3s;
  color: #4611A7;
}

:focus-visible {
  outline: none;
}

button:focus:not(:focus-visible) {
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

input::-moz-placeholder {
  color: #FFE800 !important;
}

input::placeholder {
  color: #FFE800 !important;
}

.btn-wrapper {
  height: auto;
}
.btn-wrapper .menu-toggle {
  min-height: 40px;
}
.btn-wrapper .menu-toggle .icon-bars {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #4611A7;
  position: relative;
  transition: transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before, .btn-wrapper .menu-toggle .icon-bars::after {
  display: block;
  width: 2rem;
  height: 2px;
  background-color: #4611A7;
  content: "";
  position: absolute;
  left: 0;
  transition: top 0.3s 0.3s ease-in, transform 0.3s ease-in, background-color 0.2s ease;
}
.btn-wrapper .menu-toggle .icon-bars::before {
  top: 0.5em;
}
.btn-wrapper .menu-toggle .icon-bars::after {
  top: -0.5em;
}
.btn-wrapper .menu-toggle:active .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.btn-wrapper .menu-toggle:active .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.btn-wrapper .menu-toggle:active .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

.menu--is-revealed .menu-toggle .icon-bars {
  transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 135deg);
}
.menu--is-revealed .menu-toggle .icon-bars::before {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}
.menu--is-revealed .menu-toggle .icon-bars::after {
  transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
  transform: rotate3d(0, 0, 1, 90deg);
  top: 0;
}

html {
  font-size: 1rem;
}

body {
  font-family: "Nunito Sans", sans-serif;
  color: #ffffff;
}

a,
a:hover {
  text-decoration: none;
}

.font-small {
  font-size: 0.875rem;
}

.font-extra-small {
  font-size: 0.75rem;
}

.font-black {
  font-weight: 900;
}

/*-- background color css --*/
.bg-color {
  background-color: #FFE800;
}

.theme-bg-primary {
  background-color: #4611A7;
}

.theme-bg-secondary {
  background-color: #FFE800;
}

.theme-bg-accent-one {
  background-color: #000000;
}

.theme-bg-accent-two {
  background-color: #878A9B;
}

.theme-bg-accent-three {
  background-color: #F2F2F2;
}

.theme-bg-white {
  background-color: #ffffff;
}

.theme-transparent-bg {
  background-color: rgba(70, 17, 167, 0.1);
}

/*-- text color css --*/
.theme-text-white {
  color: #ffffff;
}

.theme-text-primary {
  color: #4611A7;
}

.theme-text-secondary {
  color: #FFE800;
}

.theme-text-accent-one {
  color: #000000;
}

.theme-text-accent-two {
  color: #878A9B;
}

.theme-text-accent-three {
  color: #F2F2F2;
}

/*-- shadow css --*/
.theme-box-shadow {
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

.theme-text-shadow {
  text-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

.theme-border-radius {
  border-radius: 1.25rem;
}

.theme-border-primary {
  border: 2px solid #4611A7;
}

.theme-border-secondary {
  border: 2px solid #FFE800;
}

.end-10 {
  right: 10px;
}

/*-- custom button css*/
.custom-btn-primary {
  background-color: #4611A7;
  color: #ffffff;
  min-width: 170px;
  min-height: auto;
  border: 0;
}

.custom-btn-secondary {
  background-color: #FFE800;
  color: #ffffff;
  min-width: 50px;
  border-radius: 50%;
}
.custom-btn-secondary:hover {
  background-color: #4611A7;
  color: #ffffff;
}

.custom-link {
  background-color: #FFE800;
  color: #ffffff;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
}
.custom-link:hover {
  background-color: transparent;
  color: #FFE800;
  border: 2px solid #FFE800;
}

/*-- primary button effect css --*/
.primary-btn-effect {
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  border: 2px solid #4611A7;
  border-radius: 50px;
  transition: all 0.15s ease-in-out;
  color: #ffffff;
}
.primary-btn-effect:hover {
  box-shadow: 0 0 10px 0 #FFE800 inset, 0 0 10px 2px #FFE800;
  border: 2px solid #4611A7;
  color: #ffffff;
  background-color: #4611A7;
}

/*-- secondary button css --*/
.secondary-btn-effect {
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  border: 2px solid #FFE800;
  border-radius: 50px;
  transition: all 0.15s ease-in-out;
  color: #4611A7;
}
.secondary-btn-effect:hover {
  box-shadow: 0 0 10px 0 #FFE800 inset, 0 0 10px 2px #FFE800;
  border: 2px solid #4611A7;
  color: #FFE800;
  background-color: #4611A7;
}

/*-- video button css --*/
.icon-wrapper {
  box-shadow: 0 0 0px 0px rgba(255, 232, 0, 0.5);
  cursor: pointer;
  border-radius: 50%;
  transition: 250ms color;
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes wave {
  0% {
    box-shadow: 0 0 0px 0px rgba(255, 232, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 0px 15px rgba(255, 232, 0, 0);
  }
}

.page-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #ffffff;
  z-index: 9999;
  overflow: visible;
}
.page-loader .loader {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.page-loader .loader .dot {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.page-loader .loader .dot:nth-child(1) {
  background-color: #4611A7;
  animation: jump 0.6s 0.5s ease-in infinite;
}
.page-loader .loader .dot:nth-child(2) {
  background-color: #FFE800;
  animation: jump 0.6s 0.7s ease-in infinite;
}
.page-loader .loader .dot:nth-child(3) {
  background-color: #000000;
  animation: jump 0.6s 0.9s ease-in infinite;
}
@keyframes jump {
  0% {
    transform: translate3D(0, 0, 0);
    opacity: 0;
  }
  50% {
    transform: translate3D(0, -15px, 0);
    opacity: 0.5;
  }
  100% {
    transform: translate3D(0, 0, 0);
    opacity: 1;
  }
}

.header {
  background-color: #FFE800;
}
.header .navbar-nav .nav-item .nav-link {
  color: #4611A7;
  padding: 1.2rem 1rem;
  font-weight: 600;
}
@media screen and (max-width: 992px) {
  .header .navbar-nav .nav-item .nav-link {
    padding: 0.8rem 0rem;
    border-bottom: 1px solid #ffffff;
  }
}
.header .navbar-nav .nav-item .active:after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: #4611A7;
  position: absolute;
  bottom: 0;
  display: block;
  left: 43%;
  border-radius: 3rem;
}
.header .navbar-nav .nav-item .dropdown-menu {
  border-radius: 0;
  border: 0;
  padding: 0;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  color: #000000;
  padding: 0.8rem 1rem;
  font-weight: 600;
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  background-color: #4611A7;
  color: #ffffff;
}

.smooth {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.nav-effect {
  position: relative;
}
.nav-effect::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 43%;
  width: 0.5rem;
  height: 0.5rem;
  background: #4611A7;
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
  border-radius: 3rem;
}
@media screen and (max-width: 992px) {
  .nav-effect::before {
    left: 0%;
  }
}
.nav-effect:hover:before {
  transform-origin: center center;
  transform: scale(1, 1);
}

.hero {
  position: relative;
}
.hero .max {
  max-width: 650px;
  margin: 0 auto;
}
.hero .shape-wrap img {
  position: absolute;
  z-index: -1;
}
.hero .shape-wrap .obj-1 {
  left: 25%;
  top: 15%;
  animation: rippleEffect 5s linear infinite;
}
.hero .shape-wrap .obj-2 {
  left: 8%;
  top: 10%;
  animation: ripple2Effect 5s linear infinite;
}
@keyframes rippleEffect {
  0% {
    transform: translate(0px, 0px);
  }
  33% {
    transform: translate(5px, -5px);
  }
  66% {
    transform: translate(-5px, 5px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes ripple2Effect {
  0% {
    transform: translate(0px, 0px);
  }
  33% {
    transform: translate(-5px, -5px);
  }
  66% {
    transform: translate(5px, 5px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}

.experience {
  background-color: #4611A7;
}
.experience .list {
  display: flex;
  flex-direction: column;
  border: 2px solid #4611A7;
  padding: 1rem;
  border-radius: 1.25rem;
}
.experience .list .image-icon img {
  max-width: initial;
}
.experience .list .con {
  margin-left: 1rem;
  text-align: center;
}

.games {
  position: relative;
  background-color: #ffffff;
}
.games .frame {
  direction: rtl;
  margin-top: 6rem;
}
.games .frame img {
  max-width: unset;
}
@media screen and (max-width: 992px) {
  .games .frame img {
    max-width: 100%;
  }
}
.games .game-card {
  background-color: #ffffff;
  transition: all ease-in-out 0.3s;
}
.games .game-card:hover {
  background-color: #FFE800;
}
.games .game-card .icon-bg {
  align-items: center;
  justify-content: center;
  display: flex;
  margin: 0 auto;
}

.howtoplay {
  background-color: #4611A7;
}
.howtoplay .step-card {
  cursor: pointer;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 2rem 0;
  border-radius: 1.25rem;
}
.howtoplay .step-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}
.howtoplay .step-card:hover:before {
  transform: scale(50);
}
.howtoplay .step-card:hover p {
  transition: all 0.3s ease-out;
}
.howtoplay .step-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #FFE800;
}
.howtoplay .step-corner .step-arrow {
  color: #4611A7;
}

.features {
  background-color: #ffffff;
}
.features .icon-bg img {
  width: auto;
  margin: auto;
}
.features .owl-carousel {
  margin-top: 4rem;
}
.features .owl-nav {
  position: absolute;
  top: -70px;
  margin: 0;
  left: 0;
  width: 100%;
}
.features .owl-nav button.owl-prev,
.features .owl-nav button.owl-next {
  padding: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #4611A7;
  border: 2px solid #4611A7;
  font-size: 2rem;
}
.features .owl-nav button.owl-prev:hover,
.features .owl-nav button.owl-next:hover {
  background-color: #FFE800;
  border: 2px solid #FFE800;
}

.review {
  background-color: #ffffff;
}
.review .icon-bg {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: 120px;
  max-height: 120px;
}
.review .icon-bg img {
  width: auto;
  margin: auto;
}
.review .owl-carousel {
  margin-top: 4rem;
}
.review .owl-nav {
  margin: 0;
  width: 100%;
}
.review .owl-nav button.owl-prev,
.review .owl-nav button.owl-next {
  padding: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #4611A7;
  border: 2px solid #4611A7;
  font-size: 2rem;
}
.review .owl-nav button.owl-prev:hover,
.review .owl-nav button.owl-next:hover {
  background-color: #FFE800;
  border: 2px solid #FFE800;
}

.demo {
  background-color: #ffffff;
}
.demo .group {
  display: flex;
  background-image: url(../images/video-bg.png);
  background-position: center center;
  min-height: 500px;
  border-radius: 1.25rem;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.demo .group::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(70, 17, 167, 0.5);
}
.demo .video-icon {
  border-radius: 50%;
  background-color: #FFE800;
  color: #FFE800;
  line-height: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseBig infinite 4s linear;
}
.demo .video-icon i {
  color: #4611A7;
  font-size: 1.5rem;
}
@keyframes pulseBig {
  0% {
    box-shadow: 0 0 0 0 #ffffff;
  }
  50% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.faq {
  background-color: #F2F2F2;
}
.faq .accordion-item {
  border: 0;
  margin-bottom: 1.5rem;
  background-color: #ffffff;
  border-radius: 1.25rem;
  border: none;
}
.faq .accordion-item .accordion-button {
  background-color: #ffffff;
  color: #4611A7;
  border-radius: 1.25rem !important;
  padding: 1.2rem 2rem;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: none;
}
.faq .accordion-item .accordion-button i {
  font-size: 1.5rem;
}
.faq .accordion-item .accordion-button::after {
  color: #ffffff;
}
.faq .accordion-item .accordion-button::after {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(../images/icons/arrow-minus.png);
  background-repeat: no-repeat;
  background-size: 20px;
  position: absolute;
  right: 30px;
  transition: all ease 0.3s;
}
.faq .accordion-item .accordion-button.collapsed::after {
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(../images/icons/arrow-plus.png);
  background-repeat: no-repeat;
  background-size: 20px;
  transform: rotate(-90deg);
  transition: all ease 0.3s;
}
.faq .accordion-item .accordion-body {
  padding: 0 20px;
}
.faq .accordion-item .accordion-body p {
  border-top: 1px solid #4611A7;
  padding: 20px 0;
}

.footer {
  background-color: #4611A7;
}
.footer h1,
.footer h2,
.footer h3,
.footer h4 {
  color: #FFE800;
}
.footer p {
  line-height: 2.2rem;
}
.footer .link-list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .footer .link-list {
    flex-direction: column;
  }
}
.footer .link-list li {
  line-height: 2.5rem;
  padding: 0 1rem;
}
.footer .link-list li a {
  color: #ffffff;
  font-size: 1.25rem;
}
.footer .link-list li a:hover {
  color: #FFE800;
}
.footer .social a {
  color: #4611A7;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-block;
  background: #ffffff;
  line-height: 3rem;
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
.footer .social a:last-child {
  margin-right: 0;
}
.footer .social a:hover {
  background: #FFE800;
}

.footer-link-effect {
  position: relative;
}
.footer-link-effect::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0px;
  width: 100%;
  height: 2px;
  border-radius: 0.5rem;
  background: #FFE800;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
}
.footer-link-effect:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.scrollup {
  overflow: hidden;
  position: fixed;
  height: 3rem;
  width: 3rem;
  line-height: 3rem;
  border-radius: 50%;
  bottom: -3rem;
  right: 3rem;
  text-align: center;
  z-index: 1;
  background-color: #FFE800;
  display: block;
  color: #4611A7;
  transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
}
.scrollup i {
  font-size: 1.5rem;
  display: inline-block;
  transition: all 0.5s ease-out;
}
.scrollup i:hover, .scrollup i:focus {
  animation: toBottomFromTop 0.5s forwards;
}
.scrollup:hover, .scrollup:focus {
  color: #4611A7;
}
.scrollup.back-top {
  bottom: 20px;
}
@keyframes toBottomFromTop {
  49% {
    transform: translateY(-20%);
  }
  50% {
    opacity: 0;
    transform: translateY(20%);
  }
  51% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}

.dark .header {
  background-color: #000000;
}
.dark .header .navbar-nav .nav-item .nav-link {
  color: #ffffff;
}
.dark .header .navbar-nav .nav-item .nav-link:hover {
  color: #FFE800;
}
@media screen and (max-width: 992px) {
  .dark .header .navbar-nav .nav-item .nav-link {
    padding: 0.8rem 0rem;
    border-bottom: 1px solid #ffffff;
  }
}
.dark .header .navbar-nav .nav-item .dropdown-menu {
  border-radius: 0;
  border: 0;
  padding: 0;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}
.dark .header .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  background-color: #000000;
  color: #ffffff;
  padding: 0.8rem 1rem;
  font-weight: 600;
}
.dark .header .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
  background-color: #4611A7;
}
.dark .hero {
  position: relative;
}
.dark .hero .bg {
  background-color: #4611A7;
  background-image: url(../images/hero/hero-dark-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  background-size: cover;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .dark .hero .bg {
    min-height: 60vh;
  }
}
.dark .hero .bg:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .dark .hero .bg:before {
    background: rgba(0, 0, 0, 0.8);
  }
}
.dark .experience {
  background-color: #000000;
}
.dark .games {
  background-color: #000000;
}
.dark .howtoplay {
  background-color: #000000;
}
.dark .howtoplay .step-card {
  cursor: pointer;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 2rem 0;
  border-radius: 1.25rem;
}
.dark .howtoplay .step-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: #4611a7;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}
.dark .howtoplay .step-card:hover:before {
  transform: scale(50);
}
.dark .features {
  background-color: #000000;
}
.dark .review {
  background-color: #000000;
}
.dark .demo {
  background-color: #000000;
}
.dark .faq,
.dark .contact,
.dark .footer {
  background-color: #000000;
}/*# sourceMappingURL=main.css.map */

.dark .hero .bg {
  align-items: flex-start;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* === TOP GAMES GRID === */
.top-games {
  background:#000;
}

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

.game-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background:#111;
  transition: transform 0.3s ease;
}

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

.game-card:hover {
  transform: translateY(-6px);
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.play-btn {
  padding: 12px 34px;
  border-radius: 999px;
  background: #000;
  color: #d4af37;
  border: 2px solid #d4af37;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.play-btn:hover {
  background: #d4af37;
  color: #000;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === CROWN EXPERIENCE === */
.crown-experience {
  background:#000;
}

.crown-card {
  background:#0b0b0b;
  border:1px solid rgba(212,175,55,0.25);
  border-radius:20px;
  padding:40px 28px;
  height:100%;
  text-align:center;
  transition:all 0.3s ease;
}

.crown-card:hover {
  transform: translateY(-8px);
  border-color:#d4af37;
  box-shadow:0 0 30px rgba(212,175,55,0.15);
}

/* =========================================================
   ICONS (support, security, payments) — GOLD

   ========================================================= */
.crown-card img {
  width:56px;        
  height:56px;       
  margin-bottom:22px;

  filter: brightness(0) saturate(100%)
          invert(83%) sepia(29%) saturate(650%)
          hue-rotate(2deg) brightness(95%) contrast(92%);
}

/* TITLE */
.crown-card h3 {
  color:#d4af37;
  font-size:1.15rem;
  font-weight:700;
  margin-bottom:14px;
}

/* TEXT */
.crown-card p {
  color:#b8b8b8;
  font-size:0.95rem;
  line-height:1.6;
  margin:0;
}

/* === BADGES === */
.crown-badge {
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  font-size:0.75rem;
  font-weight:700;
  letter-spacing:1px;
  color:#000;
  background:#d4af37;
}

.crown-badge-live { background:#fff; color:#000; }
.crown-badge-table { background:#bfa24a; color:#000; }
.crown-badge-mobile { background:#e0c66a; color:#000; }

/* === FEATURE BOX === */
.crown-feature-box {
  background:#0b0b0b;
  border:1px solid rgba(212,175,55,0.25);
  border-radius:20px;
  padding:28px;
}

.crown-feature-box ul {
  list-style:none;
  padding:0;
  margin:0;
}

.crown-feature-box li {
  color:#b8b8b8;
  margin-bottom:12px;
  font-size:0.95rem;
}

/* =========================================================
   CROWN GAMES 
   ========================================================= */
.crown-game-card {
  background:#0b0b0b;
  border:1px solid rgba(212,175,55,0.25);
  border-radius:22px;
  padding:32px 20px;
  text-align:center;
  height:100%;
  transition:all 0.3s ease;
}

.crown-game-card:hover {
  transform: translateY(-8px);
  border-color:#d4af37;
  box-shadow:0 0 30px rgba(212,175,55,0.15);
}

.crown-game-card figure {
  width:140px;      
  height:140px;     
  margin:0 auto 18px;
  border-radius:50%;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* =========================================================
   GAME IMAGES (roulette, poker, slots) 
   ========================================================= */
.crown-game-card img {
  width:100px;      
  height:100px;     
  object-fit:contain;
  filter:none;
}

.crown-game-card h3 {
  color:#d4af37;
  font-size:1.1rem;
  font-weight:700;
  margin-bottom:16px;
}

/* === CROWN GAME BUTTON === */
.crown-play-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:10px 34px;
  border-radius:999px;

  background:#000;
  color:#d4af37;
  border:2px solid #d4af37;

  font-weight:600;
  font-size:1rem;
  line-height:1;
  text-decoration:none;

  transition:all 0.25s ease;
}

.crown-play-btn:hover {
  background:#d4af37;
  color:#000;
  box-shadow:0 0 18px rgba(212,175,55,0.35);
}

/* === CROWN SLOTS SECTION === */
.crown-slots {
  background:#000;
}

/* SLOT IMAGE */
.crown-slots-image {
  width:260px;       
  max-width:100%;
  margin-bottom:10px;

  filter: brightness(0) saturate(100%)
          invert(83%) sepia(29%) saturate(650%)
          hue-rotate(2deg) brightness(95%) contrast(92%);
}

/* TEXT */
.crown-slots h2 {
  color:#d4af37;
  font-weight:800;
}

.crown-text {
  color:#b8b8b8;
  font-size:1rem;
  line-height:1.7;
  margin-bottom:26px;
}

/* GRID */
.crown-slots-grid {
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}

@media (max-width:768px) {
  .crown-slots-grid {
    grid-template-columns:1fr;
  }
}

/* BOX */
.crown-slots-box {
  background:#0b0b0b;
  border:1px solid rgba(212,175,55,0.25);
  border-radius:18px;
  padding:22px;
}

.crown-slots-box h3 {
  color:#d4af37;
  font-size:1.05rem;
  margin-bottom:14px;
}

.crown-slots-box ul {
  list-style:none;
  padding:0;
  margin:0;
}

.crown-slots-box li {
  color:#b8b8b8;
  font-size:0.95rem;
  margin-bottom:8px;
  position:relative;
  padding-left:18px;
}

.crown-slots-box li::before {
  content:"•";
  color:#d4af37;
  position:absolute;
  left:0;
}

/* === CROWN TABLE GAMES SECTION === */
.crown-tables {
  background:#000;
}


.crown-tables-image {
  width:260px;       
  max-width:100%;
  margin-bottom:10px;

  filter: brightness(0) saturate(100%)
          invert(83%) sepia(29%) saturate(650%)
          hue-rotate(2deg) brightness(95%) contrast(92%);
}

/* === CROWN LIVE CASINO SECTION === */
.crown-live {
  background:#000;
}

/*  РАЗМЕР LIVE PNG*/
.crown-live-image {
  width:260px;        
  max-width:100%;
  margin-bottom:10px;

  filter: brightness(0) saturate(100%)
          invert(83%) sepia(29%) saturate(650%)
          hue-rotate(2deg) brightness(95%) contrast(92%);
}

/* === CROWN GAME SECTION TITLES === */
.crown-slots h2,
.crown-tables h2,
.crown-live h2 {
  color:#d4af37;
}

/* === CROWN GAME SECTION TITLES === */
.crown-slots h2,
.crown-tables h2,
.crown-live h2 {
  color: #d4af37;
  font-weight: 800;   
  letter-spacing: -0.02em;
}

/* === CROWN SECTION TITLES === */
.crown-title {
  color:#d4af37;
  font-weight:800;
  letter-spacing:-0.02em;
}

/* === LOGIN & REGISTRATION === */
.crown-login {
  background:#000;
}

.crown-title {
  color:#d4af37;
  font-weight:800;
}

.crown-chip {
  display:inline-block;
  padding:8px 20px;
  border-radius:999px;
  background:#d4af37;
  color:#000;
  font-weight:700;
  letter-spacing:1px;
  font-size:0.75rem;
}

.crown-info-card {
  background:#0b0b0b;
  border:1px solid rgba(212,175,55,0.25);
  border-radius:22px;
  padding:32px;
  height:100%;
  transition:all 0.3s ease;
}

.crown-info-card:hover {
  transform:translateY(-6px);
  border-color:#d4af37;
  box-shadow:0 0 30px rgba(212,175,55,0.15);
}

.crown-info-card h3 {
  color:#d4af37;
  font-size:1.2rem;
  margin:16px 0;
  font-weight:700;
}

.crown-info-card p {
  color:#b8b8b8;
  font-size:0.95rem;
  line-height:1.6;
}

.crown-list {
  list-style:none;
  padding:0;
  margin:18px 0;
}

.crown-list li {
  color:#b8b8b8;
  margin-bottom:10px;
  padding-left:18px;
  position:relative;
}

.crown-list li::before {
  content:"•";
  color:#d4af37;
  position:absolute;
  left:0;
}

.crown-highlight {
  margin-top:18px;
  padding:14px;
  border-radius:14px;
  background:rgba(212,175,55,0.12);
  color:#d4af37;
  font-weight:700;
  font-size:0.95rem;
}

.crown-note {
  font-size:0.85rem;
  color:#999;
  margin-top:14px;
}

/* === CROWN APP SECTION === */
.crown-app {
  background:#000;
}

.crown-app-image img {
  max-width:140px; 
}



.crown-app-box {
  background:#0b0b0b;
  border:1px solid rgba(212,175,55,0.25);
  border-radius:22px;
  padding:28px;
  margin-bottom:28px;
}

.crown-app-box h3 {
  color:#d4af37;
  font-size:1.25rem;
  font-weight:700;
  margin-bottom:16px;
}

.crown-app-box p {
  color:#b8b8b8;
  font-size:0.95rem;
  line-height:1.6;
}

.crown-icon-list {
  list-style:none;
  padding:0;
  margin:18px 0 0;
}

.crown-icon-list li {
  color:#b8b8b8;
  margin-bottom:12px;
  font-size:0.95rem;
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.crown-icon-list .icon {
  color:#d4af37;
  font-weight:700;
}

.crown-store-buttons {
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.crown-store-buttons img {
  height:48px; 
  cursor:pointer;
}

.crown-payments {
  background:#000;
}

.crown-text-intro {
  max-width:900px;
  margin:0 auto;
  color:#b8b8b8;
}

.crown-tabs {
  display:flex;
  gap:14px;
}

.crown-tab {
  background:#000;
  border:2px solid #d4af37;
  color:#d4af37;
  padding:10px 28px;
  border-radius:999px;
  font-weight:600;
  cursor:pointer;
  transition:all .25s ease;
}

.crown-tab.active,
.crown-tab:hover {
  background:#d4af37;
  color:#000;
}

.crown-table-wrapper {
  display:none;
}

.crown-table-wrapper.active {
  display:block;
}

.crown-table {
  width:100%;
  border-collapse:collapse;
  background:#0b0b0b;
  border-radius:16px;
  overflow:hidden;
}

.crown-table th,
.crown-table td {
  padding:14px 18px;
  border-bottom:1px solid rgba(212,175,55,.15);
  color:#b8b8b8;
  text-align:left;
}

.crown-table th {
  color:#d4af37;
  font-weight:700;
}

.crown-info-box {
  background:#0b0b0b;
  border:1px solid rgba(212,175,55,.25);
  border-radius:18px;
  padding:26px;
  height:100%;
}

.crown-info-box h3 {
  color:#d4af37;
  font-size:1.1rem;
  margin-bottom:12px;
}

.crown-info-box p {
  color:#b8b8b8;
  font-size:.95rem;
  line-height:1.6;
}

/* === CROWN TRUST SECTION === */
.crown-trust {
  background: #000;
}

/* Card */
.crown-trust-box {
  background: #0b0b0b;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 22px;
  padding: 32px;
  height: 100%;
  text-align: center;
}

/* Icon container */
.crown-trust-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

/*  FIXED ICON SIZE  */
.crown-trust-icon img {
  width: 48px;      
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;

  object-fit: contain;

  
  filter: brightness(0) saturate(100%)
          invert(83%) sepia(29%) saturate(650%)
          hue-rotate(2deg)
          brightness(95%)
          contrast(95%);
}

/* Titles */
.crown-trust-box h3 {
  color: #d4af37;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Text */
.crown-trust-box p {
  color: #b8b8b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* === FORCE CROWN FAQ STYLE (OVERRIDE BOOTSTRAP) === */

.faq .accordion-item {
  background: #0b0b0b !important;
  border: 1px solid rgba(212,175,55,0.35) !important;
  border-radius: 18px;
}

/* QUESTION */
.faq .accordion-button,
.faq .accordion-button.collapsed {
  background: #0b0b0b !important;
  color: #d4af37 !important;
  font-weight: 600;
  box-shadow: none !important;
}

/* REMOVE BOOTSTRAP BLUE / PURPLE */
.faq .accordion-button:not(.collapsed) {
  color: #d4af37 !important;
  background: #0b0b0b !important;
}

/* BODY */
.faq .accordion-body {
  background: #0b0b0b !important;
  color: #b8b8b8;
  border-top: 1px solid rgba(212,175,55,0.2);
}

/* PLUS / MINUS */
.faq .accordion-button::after {
  background-image: none !important;
  content: "+" !important;
  font-size: 1.6rem;
  color: #d4af37;
}

.faq .accordion-button:not(.collapsed)::after {
  content: "–" !important;
}

/* REMOVE FOCUS / ACTIVE */
.faq .accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* HOVER EFFECT */
.faq .accordion-button:hover {
  background: rgba(212,175,55,0.06) !important;
}

/* ===============================
   CROWN REVIEWS SECTION
================================ */

.crown-reviews {
  background: #000;
  overflow: hidden;
}

/* Rating Box */
.crown-rating-box {
  background: #0b0b0b;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 20px;
  padding: 24px;
}

.crown-rating-title {
  color: #d4af37;
  font-weight: 600;
  font-size: 1rem;
}

.crown-rating-score {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
}

.crown-stars {
  color: #d4af37;
  font-size: 1.3rem;
  letter-spacing: 4px;
}

/* Review Cards */
.crown-review-card {
  position: relative;
  background: #0b0b0b;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 22px;
  padding: 32px;
  text-align: center;
  height: auto;
  transition: all 0.3s ease;
}

.crown-review-card:hover {
  border-color: #d4af37;
  transform: translateY(-6px);
  box-shadow: 0 0 28px rgba(212,175,55,0.18);
}

.crown-review-card h5 {
  color: #d4af37;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.crown-review-card p {
  color: #b8b8b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Quote icon FIX */
.crown-quote {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 34px;
  height: 34px;

  max-width: 34px;
  max-height: 34px;

  opacity: 0.85;
  pointer-events: none;
  object-fit: contain;
  filter: none;
}

/* Owl Carousel Fix */
.crown-review-carousel .owl-stage-outer {
  overflow: hidden;
}

.crown-review-carousel .owl-item {
  padding: 10px;
  height: auto;
}

/* Global safety */
html,
body {
  overflow-x: hidden;
}

/* === CROWN BONUSES === */
.crown-bonuses {
  background:#000;
}

.crown-welcome-box {
  background:#0b0b0b;
  border:1px solid rgba(212,175,55,0.35);
  border-radius:26px;
  padding:40px;
}

.crown-welcome-box h3 {
  color:#d4af37;
  font-weight:700;
}

.crown-welcome-offer {
  font-size:1.4rem;
  color:#fff;
}

.crown-btn-gold {
  background:#d4af37;
  color:#000;
  border-radius:999px;
  padding:12px 32px;
  font-weight:700;
  text-decoration:none;
}

.crown-btn-gold:hover {
  background:#c3a032;
  color:#000;
}

.crown-bonus-card {
  background:#0b0b0b;
  border:1px solid rgba(212,175,55,0.25);
  border-radius:22px;
  overflow:hidden;
  height:100%;
}

.crown-bonus-card img {
  width:100%;
  height:220px;
  object-fit:cover;
}

.crown-bonus-content {
  padding:22px;
  text-align:center;
}

.crown-bonus-content h4 {
  color:#d4af37;
  font-size:1.15rem;
  margin-bottom:12px;
}

.crown-bonus-content p {
  color:#b8b8b8;
  font-size:0.95rem;
  line-height:1.6;
}

/* === CROWN FOOTER === */
.crown-footer {
  background:#000;
  padding:70px 0 40px;
}

.crown-footer-logo {
  max-width:180px;
}

.crown-footer-text {
  color:#b8b8b8;
  font-size:0.95rem;
  line-height:1.7;
}

.crown-footer-title {
  color:#d4af37;
  font-size:1.05rem;
  font-weight:700;
  margin-bottom:16px;
}

.crown-footer-links {
  list-style:none;
  padding:0;
  margin:0;
}

.crown-footer-links li {
  margin-bottom:10px;
}

.crown-footer-links a {
  color:#cfcfcf;
  text-decoration:none;
  font-size:0.95rem;
  transition:color 0.25s ease;
}

.crown-footer-links a:hover {
  color:#d4af37;
}

.crown-footer-divider {
  height:1px;
  background:rgba(212,175,55,0.25);
  margin:40px 0 30px;
}

.crown-footer-copy {
  color:#d4af37;
  font-size:0.9rem;
}

.crown-footer-disclaimer {
  color:#9a9a9a;
  font-size:0.8rem;
  max-width:640px;
}

.crown-footer-license {
  color:#b8b8b8;
  font-size:0.85rem;
}
