/*
Template Name: RaidHost - Game Server Website
Template URI: https://fnscreator.tech/demo/raidhost/
Author: FnsCreator
Author URI: https://www.templatemonster.com/authors/fnscreator/
Description: RaidHost is a Responsive Game Server HTML Website Template
*/

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
  box-sizing: border-box;
  font-family: var(--poppins-font-family);
}
/* Vaiables */
:root {
  /* Fonts Families */
  --poppins-font-family: "Poppins", sans-serif;
  /* Colors */
  --body-color: #171b44;
  --body-alter-color: #4454ff;
  --main-color: #ff4d55;
  --hover-color: #f8646c;
  --container-color: #1d2352;
  --text-alter-color: #0bd2d4;
  --text-color: #fbfeff;
}
/* Basic Styles */
::selection {
  background: var(--main-color);
  color: var(--text-color);
}
section {
  padding: 4rem 0 3rem;
}
img {
  width: 100%;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
body {
  color: var(--text-color);
  background: var(--body-color);
}
.container {
  max-width: 1060px;
  margin: auto;
  width: 100%;
}
/* Header  */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(29 35 82 / 90%);
  z-index: 200;
}
header.shadow {
  background: var(--container-color);
  transition: 0.4s all linear;
}
.nav {
  max-width: 1200px;
  margin: auto;
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.logo {
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
}
.logo span {
  color: var(--main-color);
}
.navbar {
  display: flex;
  align-items: center;
  column-gap: 1.2rem;
}
.nav-link {
  position: relative;
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 3px;
  background: var(--main-color);
}
.nav-link:hover::after {
  width: 100%;
  transition: 0.4s all linear;
}
.login-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2px;
  background: var(--main-color);
  color: var(--text-color);
  font-weight: 500;
  padding: 8px 15px;
  cursor: pointer;
}
.login-btn .bx {
  font-size: 1.1rem;
  font-weight: 600;
}
.login-btn:hover {
  background: var(--hover-color);
  transition: 0.3s all linear;
}
/* Drop Login */
.drop-login {
  position: absolute;
  top: 115%;
  right: 0;
  width: 231px;
  height: auto;
  background: var(--container-color);
  box-shadow: 4px 4px 10px 2px rgb(23 27 38 / 60%);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.drop-login .drop-item {
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
}
.drop-login .drop-item:hover {
  background: var(--main-color);
  transition: 0.3s all linear;
}
.drop-login .drop-item a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
}
.drop-login .drop-item span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-color);
}
.drop-login.drop-login-open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: 0.4s all linear;
}
/* Menu Icon */
.menu-icon {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 5px;
  cursor: pointer;
  z-index: 200;
  transition: 0.3s;
}
.menu-icon div {
  display: block;
  background: var(--text-color);
  height: 2px;
  width: 25px;
  transition: 0.3s;
}
.move .line1 {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.move .line2 {
  opacity: 0;
}
.move .line3 {
  transform: rotate(45deg) translate(-5px, -5px);
}
/* Home */
.home-slide {
  min-height: 640px;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.slide-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
.home-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    74deg,
    rgb(23, 27, 68, 80%) 50%,
    rgb(23, 27, 68, 14%)
  );
  z-index: 200;
}
.swiper-pagination-bullet {
  width: 6px !important;
  height: 6px !important;
  border-radius: 0.2rem !important;
  background: var(--text-color) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  width: 1.5rem !important;
  background: var(--main-color) !important;
}
.home-text {
  z-index: 200;
}
.slide-title {
  position: relative;
  font-size: 2.1rem;
  font-weight: 700;
  text-transform: uppercase;
}
.slide-title::after,
.faq-title::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 44px;
  height: 3px;
  background: var(--main-color);
}
.slide-title span {
  color: var(--main-color);
}
.slide-description {
  max-width: 450px;
  font-size: 0.938rem;
  margin: 0.2rem 0 1rem;
}
.btn {
  display: inline-flex;
  background: var(--main-color);
  padding: 10px 16px;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}
.btn:hover {
  background: var(--hover-color);
  transition: 0.3s all linear;
}
/* Heading */
.heading {
  position: relative;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.heading::after {
  content: "";
  position: absolute;
  display: flex;
  left: 50%;
  transform: translate(-50%);
  bottom: -4px;
  width: 44px;
  height: 3px;
  background: var(--main-color);
}
.services-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, auto));
  gap: 1.5rem;
}
.ser-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--container-color);
  border-radius: 0.3rem;
  padding: 15px;
}
.ser-box:hover {
  transform: scale(1.05);
  transition: 0.4s all ease-in-out;
}
.ser-box .bx {
  font-size: 1.7rem;
  padding: 10px;
  background: var(--main-color);
  border-radius: 0.3rem;
}
.ser-box-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 1.3rem 0 0.5rem;
}
.ser-box p {
  font-size: 0.938rem;
}
/* Games */
.games-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, auto));
  gap: 2rem;
}
.game-box {
  background: var(--container-color);
  border-radius: 0.3rem;
}
.game-text {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.game-box-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  border-radius: 0.4rem;
  box-shadow: 0px 10px 7px 0px rgb(23, 27, 68, 80%);
}
.game-box-title {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
}
.game-price {
  font-size: 0.9rem;
  font-weight: 400;
  margin: 2px 0;
}
.game-price span {
  color: var(--text-alter-color);
  font-weight: 500;
}
.game-box p {
  font-size: 0.938rem;
}
.game-btn {
  font-size: 0.944rem;
  font-weight: 500;
  margin-top: 0.5rem;
  color: var(--main-color);
}
.faq {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.faq-text {
  flex: 1 1 17rem;
}
.faq-img {
  flex: 1 1 17rem;
}
.faq-title {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
}
.faq-text p {
  font-size: 0.938rem;
  text-align: justify;
  margin: 0.5rem 0 1.5rem;
}
.faq-accorion {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.accordion-text {
  flex: 1 1 17rem;
}
.accordion-container {
  flex: 1 1 17rem;
}
.accordion-text h2 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
}
.accordion-text p {
  margin: 0.5rem 0 1.5rem;
}
.accordion-container {
  display: grid;
  gap: 1rem;
}
.accordion-item {
  border-radius: 0.25rem;
  background: var(--container-color);
  padding: 10px;
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  cursor: pointer;
}
.accordion-title {
  font-size: 1rem;
  font-weight: 400;
  transition: 0.3s all;
}
.accordion-icon {
  font-size: 1.3rem;
  color: var(--text-color);
  transition: 0.3s;
}
.accordion-content {
  border-radius: 0.25rem;
  background: var(--body-color);
  border-left: 4px solid var(--main-color);
  height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}
.accordion-answer {
  font-size: 0.87rem;
  padding: 10px;
}
.accordion-open .accordion-icon {
  transform: rotate(45deg);
}
.accordion-open .accordion-title {
  font-weight: 600;
}
/* Control */
.control {
  background: var(--container-color);
}
.control-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  background: var(--container-color);
}
.control-text {
  flex: 1 1 17rem;
}
.control-title {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
}
.control-text p {
  font-size: 0.938rem;
  margin: 0.5rem 0 0.8rem;
}
.control-text .bx {
  color: var(--main-color);
}
.spec-box {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.spec-box span {
  font-size: 0.938rem;
}
.control-images {
  flex: 1 1 17rem;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px !important;
  font-weight: 600;
  color: var(--text-color);
}
/* Footer */
.footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem !important;
  padding-bottom: 20px;
}
.footer-box {
  display: flex;
  flex-direction: column;
}
.footer-box {
  display: flex;
  flex-direction: column;
}
.footer-title {
  font-size: 1.2rem;
  color: var(--text-color);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.footer-box a {
  color: #d4d4d4;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}
.footer-box a:hover {
  color: var(--hover-color);
  transition: 0.3s all linear;
}
.footer-box .footer-logo {
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--main-color);
}
.social {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.social .bx {
  font-size: 24px;
}
.social .bx:hover {
  color: var(--main-color);
  transition: 0.3s all linear;
}
.copyright {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--text-color);
}
.copyright p {
  font-size: 0.82rem;
}
.payments .bx {
  font-size: 25px;
}
/* Prices */
.prices {
  width: 100%;
  height: auto;
  display: grid;
  place-items: center;
  background-image: linear-gradient(
      rgb(23, 27, 68, 87%) 100%,
      rgb(23, 27, 68, 87%) 100%
    ),
    url(..//img/prices-home.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.prices-text {
  padding-top: 5rem;
  padding-bottom: 2rem;
  text-align: center;
}
.prices-subtitle {
  font-size: 1.2rem;
  color: var(--text-color);
  text-transform: uppercase;
  font-weight: 500;
}
.prices-title {
  font-size: 3.5rem;
  color: var(--text-color);
  text-transform: uppercase;
  font-weight: 700;
}
.prices-description {
  font-size: 1rem;
  max-width: 800px;
  margin: auto;
  margin-bottom: 1.5rem;
}
.prices-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem !important;
}
.price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--container-color);
  border-radius: 0.4rem;
  margin-bottom: 5rem;
}
.price-item:hover {
  transform: translateY(-10px);
  transition: 0.3s;
}
.price-box-img {
  display: block;
  width: 100px;
  position: relative;
  margin-top: -64px;
  margin-left: auto;
  margin-right: auto;
}
.card-top {
  margin: 1rem;
}
.price-item-title {
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 600;
}
.card-top p {
  font-size: 0.95rem;
  color: #d4d4d4;
}
.price-heaing {
  width: 100%;
  padding: 8px 0;
  background: var(--main-color);
}
.price-heaing h2 {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
}
.price-heaing span {
  font-size: 1rem;
  font-weight: 500;
  text-transform: lowercase;
}
.ram-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  margin: 0.7rem 0 1rem;
  font-weight: 600;
}
.ram-title span {
  font-size: 1.0125rem;
  color: #d4d4d4;
  font-weight: 500;
}
.plan-btn {
  padding: 8px 24px;
  color: var(--text-color);
  text-transform: uppercase;
  font-weight: 500;
  background: var(--main-color);
  margin-bottom: 1.5rem;
}
.plan-btn:hover {
  background: var(--hover-color);
  transition: 0.4s all linear;
}

.contact {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  background: #1d2352;
}

.contact-container {
  max-width: 660px;
  margin: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: #1d2352;
  box-shadow: 0 0 1rem hsla(0 0 0 / 16%);
  border-radius: 0.5rem;
  overflow: hidden;
}

.contact .heading {
  align-items: center;
}

.form-container {
  padding: 20px;
}

.form-container h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-form {
  display: grid;
  row-gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #2c2f48;
  padding: 10px;
  font-size: 0.9rem;
  color: #fff;
  border-radius: 0.4rem;
}

.contact-form textarea {
  resize: none;
  height: 200px;
}

.contact-form .send-button {
  border: none;
  outline: none;
  background: #00dbde;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form .send-button:hover {
  background: hsl(181, 100%, 44%, 0.8);
  transition: 0.3s all linear;
}

.map iframe {
  width: 100%;
  height: 100%;
}

/* Making Responsive */
@media (max-width: 1050px) {
  .container {
    margin: 0 auto;
    width: 92%;
  }
}
@media (max-width: 952px) {
  .nav {
    padding: 14px 0;
  }
  section {
    padding: 3rem 0 2rem;
  }
  .home-slide {
    min-height: 560px;
  }
  .games-content {
    grid-template-columns: repeat(auto-fit, minmax(260px, auto));
  }
  .game-box-img {
    height: 160px;
  }
}
@media (max-width: 850px) {
  .prices-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
  .prices-title {
    font-size: 2.8rem;
  }
}
@media (max-width: 792px) {
  .menu-icon {
    display: flex;
  }
  .navbar {
    position: absolute;
    top: 0%;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--container-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
  }
  .navbar.open-menu {
    right: 0;
    transition: 0.5s;
  }
  .nav-link {
    display: block;
    margin: 1rem 0;
  }
  .login-btn {
    margin-top: 1.5rem;
  }
  .drop-login {
    left: 0;
    background: var(--body-color);
  }
}
@media (max-width: 750px) {
  .home-slide {
    min-height: 500px;
  }
  p {
    font-size: 0.875rem;
  }
  .slide-title {
    font-size: 1.7rem;
  }
  .slide-description,
  .ser-box p,
  .control-text p,
  .faq-text p {
    font-size: 0.875rem;
  }
  .heading,
  .accordion-text h2,
  .control-title {
    font-size: 1.5rem;
  }
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
  .prices-text {
    padding-top: 3rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 640px) {
  .faq-accorion {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
  .accordion-text {
    flex: 1 1 10rem;
  }
}
@media (max-width: 540px) {
  .prices-container {
    grid-template-columns: 1fr;
  }
  .accordion-title {
    font-size: 0.92rem;
  }
  .prices-title {
    font-size: 2rem;
  }
  .prices-description {
    font-size: 0.85rem;
  }
}
@media (max-width: 440px) {
  .home-slide {
    min-height: 454px;
  }
  .games {
    width: 90%;
  }
  .game-box-img {
    height: 190px;
  }
  .footer {
    grid-template-columns: 1fr;
  }
  .copyright {
    padding: 20px 0;
    flex-direction: column;
    row-gap: 1rem;
  }
}
@media (max-width: 392px) {
  .navbar {
    width: 280px;
  }
  .services-content,
  .games-content {
    grid-template-columns: 1fr;
  }
  .footer-title {
    font-size: 1.074rem;
  }
  .prices-subtitle {
    font-size: 0.9rem;
  }
  .prices-title {
    font-size: 1.6rem;
  }
  .price-box-img {
    width: 90px;
  }
}
@media (max-width: 316px) {
  .navbar {
    width: 100%;
  }
}

.play-now-btn .btn {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(90deg, #ffb300, #ff6600);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 8px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.play-now-btn .btn:hover {
  background: linear-gradient(90deg, #ff6600, #ffb300);
  transform: scale(1.05);
}

.home-slide {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.home-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); 
  z-index: 1; 
}

.home-text {
  flex: 1 1 50%;
  position: relative;
  z-index: 2; 
  color: #fff;
  text-align: left;
  padding: 0 60px;
}

.home-text h1,
.home-text p,
.home-text a {
  position: relative;
  z-index: 2;
}

.slide-image-right {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.slide-image-right img {
  max-width: 420px;
  height: auto;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(90deg, #ffb300, #ff6600);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 8px;
  letter-spacing: 1px;
  transition: 0.3s;
  z-index: 2;
}

.btn:hover {
  background: linear-gradient(90deg, #ff6600, #ffb300);
  transform: scale(1.05);
}

.slide-title span {
  color: #ff6600;
}

@media (max-width: 992px) {
  .home-slide {
    flex-direction: column;
    text-align: center;
  }
  .home-text, .slide-image-right {
    flex: 1 1 100%;
    padding: 20px;
  }
  .slide-image-right img {
    max-width: 280px;
    margin-top: 20px;
  }
}

.home {
  background-color: #0d1033; 
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 40px;
}

.home-text {
  flex: 1 1 50%;
  color: #fff;
  text-align: left;
  padding-right: 40px;
}

.slide-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.slide-title span {
  color: #ff6600;
}

.slide-description {
  font-size: 1.1rem;
  color: #dcdcdc;
  margin-bottom: 30px;
  max-width: 480px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(90deg, #ffb300, #ff6600);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 8px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn:hover {
  background: linear-gradient(90deg, #ff6600, #ffb300);
  transform: scale(1.05);
}

.slide-image-right {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-image-right img {
  max-width: 420px;
  height: auto;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
  .home-slide {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .home-text {
    padding: 0;
    margin-bottom: 30px;
  }

  .slide-image-right img {
    max-width: 280px;
  }
}

/* ===== About Section ===== */
.about {
  background: var(--container-color);
  border-radius: 0.5rem;
  padding: 4rem 2rem;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.about-text {
  flex: 1 1 55%;
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
}

.about-image img {
  max-width: 380px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(0,0,0,0.4));
}

.about-subtitle {
  color: var(--text-alter-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.about-card {
  background: var(--body-color);
  border-radius: 0.4rem;
  padding: 1rem;
  flex: 1 1 250px;
  text-align: center;
  transition: 0.3s;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.about-card:hover {
  transform: translateY(-6px);
  background: var(--main-color);
}

.about-card i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.about-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.about-card p {
  font-size: 0.93rem;
  color: #ddd;
}

.about-tags {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: var(--main-color);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-text {
    flex: 1 1 100%;
  }
  .about-image img {
    max-width: 300px;
  }
}

.games-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.game-box {
  background: #151845;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0,0,0,0.25);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.game-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(255,102,0,0.3);
}

.game-box-img {
  width: 100%;
  height: 220px;
  object-fit: cover; 
  border-bottom: 3px solid #ff6600;
}

.game-text {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-box-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.game-text p {
  color: #dcdcdc;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.game-btn {
  align-self: flex-start;
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(90deg, #ffb300, #ff6600);
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  text-transform: uppercase;
  transition: 0.3s;
}

.game-btn:hover {
  background: linear-gradient(90deg, #ff6600, #ffb300);
  transform: scale(1.05);
}

.bonuses-section {
  margin: 100px auto;
  color: #fff;
}

.bonuses-header .heading {
  color: #ffb300;
  font-weight: 800;
  text-transform: uppercase;
}

.subheading {
  color: #dcdcdc;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 10px auto 40px;
}

.bonuses-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.bonus-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #151845;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.25);
  position: relative;
}

.bonus-card.reverse {
  flex-direction: row-reverse;
}

.bonus-icon {
  position: absolute;
  top: -20px;
  left: 20px;
  background: linear-gradient(90deg, #ffb300, #ff6600);
  padding: 10px;
  border-radius: 10px;
}

.bonus-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.bonus-text {
  flex: 1;
}

.bonus-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #fff;
}

.bonus-text p {
  color: #dcdcdc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.bonus-text ul {
  list-style: none;
  padding-left: 0;
}

.bonus-text ul li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 22px;
}

.bonus-text ul li::before {
  content: "✔";
  color: #ff6600;
  position: absolute;
  left: 0;
  top: 0;
}

.bonus-image img {
  width: 320px;
  height: 220px;
  border-radius: 12px;
  object-fit: contain; 
  background: transparent;
  border: none; 
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.05); 
}

}

.tag {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.tag.online { background: #a600a6; }
.tag.live { background: #3cd4c2; }
.tag.promo { background: #ffb300; color: #111; }
.tag.loyalty { background: #6f2da8; }

@media (max-width: 992px) {
  .bonus-card,
  .bonus-card.reverse {
    flex-direction: column;
    text-align: center;
  }

  .bonus-image img {
    width: 100%;
    height: 240px;
  }

  .bonus-icon {
    left: 50%;
    transform: translateX(-50%);
    top: -25px;
  }
}

.loyalty-summary {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 60px;
  background: #1b1e55;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 0 14px rgba(255, 102, 0, 0.3);
}

.loyalty-summary img {
  width: 280px;
  height: auto;
  border-radius: 10px;
}

.loyalty-text h3 {
  color: #ffb300;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.loyalty-text p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.loyalty-text ul {
  list-style: none;
  padding-left: 0;
}

.loyalty-text ul li {
  margin-bottom: 0.4rem;
  padding-left: 22px;
  position: relative;
}

.loyalty-text ul li::before {
  content: "★";
  color: #ff6600;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 992px) {
  .loyalty-summary {
    flex-direction: column;
    text-align: center;
  }
  .loyalty-summary img {
    width: 80%;
  }
}

/* === PROMO BLOCK STYLING === */
.promo-highlight {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at right, #151845 25%, #0d0f2f 90%);
  padding: 3rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 90px;
  box-shadow: 0 0 35px rgba(255, 102, 0, 0.25);
  transition: 0.3s;
}

.promo-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 45px rgba(255, 102, 0, 0.35);
}

.promo-tag {
  position: absolute;
  top: 18px;
  left: 24px;
  background: linear-gradient(90deg, #ffb300, #ff6600);
  color: #111;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 12px rgba(255, 102, 0, 0.3);
  z-index: 5;
}

.promo-tag i {
  color: #111;
  font-size: 1.1rem;
}

.loyalty-summary img {
  width: 320px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.1));
  z-index: 2;
}

.loyalty-text h3 {
  color: #ffb300;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.loyalty-text p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.7;
}

.loyalty-text ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.loyalty-text ul li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 26px;
}

.loyalty-text ul li::before {
  content: "★";
  color: #ff6600;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
}


@media (max-width: 992px) {
  .promo-highlight {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .promo-tag {
    left: 50%;
    transform: translateX(-50%);
  }

  .loyalty-summary img {
    width: 80%;
  }
}

/* === Gaming Experience Section === */
.gaming-section {
  margin: 100px auto;
  color: #fff;
}

.gaming-header .heading {
  color: #ffb300;
  font-weight: 800;
  text-transform: uppercase;
}

.gaming-header .subheading {
  color: #dcdcdc;
  font-size: 1.1rem;
  max-width: 850px;
  margin: 10px auto 50px;
}

.gaming-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.gaming-card {
  background: #151845;
  border-radius: 14px;
  padding: 2rem 1.6rem;
  box-shadow: 0 0 14px rgba(0,0,0,0.25);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.gaming-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,102,0,0.25);
}

.gaming-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}

.gaming-card p {
  color: #dcdcdc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.gaming-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.gaming-card ul li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 22px;
}

.gaming-card ul li::before {
  content: "★";
  color: #ff6600;
  position: absolute;
  left: 0;
  top: 0;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 0.5px;
}

.tag.online { background: #a600a6; }
.tag.live { background: #3cd4c2; color: #111; }
.tag.featured { background: #ffb300; color: #111; }
.tag.local { background: #6f2da8; }
.tag.vip { background: #ff6600; }

@media (max-width: 992px) {
  .gaming-cards {
    grid-template-columns: 1fr;
  }
}

.slots-section {
  margin: 80px auto;
  color: #fff;
}

.slots-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  background: radial-gradient(circle at left, #151845 20%, #0d0f2f 90%);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 0 35px rgba(255, 102, 0, 0.25);
}

.slots-text {
  flex: 1 1 55%;
}

.slots-image {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.slot-card {
  text-align: center;
}

.slot-card img {
  max-width: 360px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.15));
}

.under-image-text {
  font-size: 0.9rem;
  color: #dcdcdc;
  line-height: 1.6;
  text-align: left;
  max-width: 360px;
  margin: 0 auto;
}

.slot-category ul li::before {
  content: "★";
  color: #ff6600;
  position: absolute;
  left: 0;
  top: 0;
}

/* CTA  */
.slot-cta {
  flex: 1 1 100%;
  background: linear-gradient(90deg, #1b1e55, #252a6b);
  padding: 2.5rem 3rem;
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.25);
  border-radius: 0 0 18px 18px;
  margin-top: 2.5rem;
}

.slot-cta h3 {
  color: #ffb300;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.slot-cta p {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  max-width: 900px;
}

.slot-cta .game-btn {
  background: linear-gradient(90deg, #ffb300, #ff6600);
  color: #fff;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.slot-cta .game-btn:hover {
  background: linear-gradient(90deg, #ff6600, #ffb300);
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .slots-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .slots-image {
    align-items: center;
  }

  .slot-card img {
    max-width: 300px;
  }

  .under-image-text {
    text-align: center;
  }

  .slot-cta {
    border-radius: 14px;
    text-align: center;
  }
}

/* === Live Casino Section === */
.live-section {
  margin: 80px auto;
  color: #fff;
}

.live-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  background: radial-gradient(circle at right, #151845 20%, #0d0f2f 90%);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 0 35px rgba(255, 102, 0, 0.25);
}

.live-text {
  flex: 1 1 58%;
}

.live-image {
  flex: 1 1 42%;
  text-align: center;
}

.live-image img {
  max-width: 380px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.15));
}

.secondary-live {
  margin-top: 2rem;
  filter: drop-shadow(0 0 18px rgba(255,102,0,0.3));
}

.under-image-text {
  font-size: 0.9rem;
  color: #dcdcdc;
  line-height: 1.6;
  text-align: left;
  max-width: 380px;
  margin: 0 auto 1.2rem auto;
}

.live-category {
  margin-bottom: 1.5rem;
}

.live-category ul {
  list-style: none;
  padding-left: 0;
}

.live-category ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
}

.live-category ul li::before {
  content: "★";
  color: #ff6600;
  position: absolute;
  left: 0;
  top: 0;
}

.tag {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 0.6rem;
}

.tag.promo {
  background: #a600a6;
}

.tag.vip {
  background: #3cd4c2;
}

@media (max-width: 992px) {
  .live-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .live-image img {
    max-width: 300px;
  }

  .under-image-text {
    text-align: center;
    max-width: 100%;
  }
}

/* === Bingo Section === */
.bingo-section {
  margin: 80px auto;
  color: #fff;
}

.bingo-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  background: radial-gradient(circle at left, #151845 20%, #0d0f2f 90%);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 0 35px rgba(255, 102, 0, 0.25);
}

.bingo-text {
  flex: 1 1 58%;
}

.bingo-image {
  flex: 1 1 42%;
  text-align: center;
}

.bingo-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.15));
}

.bingo-extra-text {
  margin-top: 1.5rem;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.bingo-subtitle {
  color: #ffb300;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.bingo-extra-text p {
  font-size: 0.9rem;
  color: #dcdcdc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.bingo-category {
  margin-bottom: 1.5rem;
}

.bingo-category ul {
  list-style: none;
  padding-left: 0;
}

.bingo-category ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
}

.bingo-category ul li::before {
  content: "★";
  color: #ff6600;
  position: absolute;
  left: 0;
  top: 0;
}

.tag {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 0.6rem;
}

.tag.promo {
  background: #a600a6;
}

.tag.vip {
  background: #3cd4c2;
}

/* CTA  */
.bingo-cta {
  background: #1b1e55;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 0 18px rgba(255, 102, 0, 0.25);
  margin-top: 2rem;
}

.bingo-cta h3 {
  color: #ffb300;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.bingo-cta p {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.bingo-cta .game-btn {
  background: linear-gradient(90deg, #ffb300, #ff6600);
  color: #fff;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.bingo-cta .game-btn:hover {
  background: linear-gradient(90deg, #ff6600, #ffb300);
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .bingo-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .bingo-image img {
    max-width: 300px;
  }

  .bingo-extra-text {
    text-align: center;
    max-width: 100%;
  }
}

/* === Casino Chilliwack App Section === */
.app-section {
  margin: 80px auto;
  color: #fff;
}

.app-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  background: radial-gradient(circle at left, #151845 20%, #0d0f2f 90%);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 0 35px rgba(255, 102, 0, 0.25);
}

.app-text {
  flex: 1 1 58%;
}

.app-image {
  flex: 1 1 42%;
  text-align: center;
}

.app-image img {
  max-width: 380px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.15));
}

.app-extra-text {
  margin-top: 0.5rem;
  text-align: left;
  color: #dcdcdc;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.app-extra-text p {
  margin-bottom: 0.9rem;
}

.bingo-subtitle {
  color: #ffb300;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.app-category {
  margin-bottom: 1.8rem;
}

.app-category ul {
  list-style: none;
  padding-left: 0;
}

.app-category ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
}

.app-category ul li::before {
  content: "★";
  color: #ff6600;
  position: absolute;
  left: 0;
  top: 0;
}

.tag {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 0.6rem;
}

.tag.promo {
  background: #a600a6;
}

.app-cta {
  background: #1b1e55;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 0 18px rgba(255, 102, 0, 0.25);
  margin-top: 2rem;
  text-align: center;
}

.app-cta h3 {
  color: #ffb300;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.app-cta p {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.store-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.store-badge img {
  width: 150px;
  height: auto;
  transition: transform 0.3s ease;
}

.store-badge img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .app-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .app-image img {
    max-width: 300px;
  }

  .app-extra-text {
    text-align: center;
    max-width: 100%;
  }
}

/* === Login & Registration Section === */
.login-section {
  margin: 80px auto;
  color: #fff;
}

.login-wrapper {
  background: radial-gradient(circle at top left, #151845 20%, #0d0f2f 90%);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 0 35px rgba(255, 102, 0, 0.25);
}

.login-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.login-card {
  background: #1b1e55;
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 0 0 18px rgba(255, 102, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.35);
}

.login-card i {
  font-size: 2.2rem;
  color: #ff6600;
  margin-bottom: 1rem;
  display: block;
}

.login-card h3 {
  color: #ffb300;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.login-card p {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.login-card ul {
  list-style: none;
  padding-left: 0;
}

.login-card ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: #dcdcdc;
}

.login-card ul li::before {
  content: "★";
  color: #ff6600;
  position: absolute;
  left: 0;
  top: 0;
}

.login-cta {
  background: linear-gradient(90deg, #1b1e55, #252a6b);
  padding: 2rem;
  border-radius: 16px;
  margin-top: 3rem;
  text-align: center;
  box-shadow: 0 0 30px rgba(255, 102, 0, 0.25);
}

.login-cta h3 {
  color: #ffb300;
  font-weight: 800;
  margin-bottom: 1rem;
}

.login-cta p {
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}

.login-cta .game-btn {
  background: linear-gradient(90deg, #ffb300, #ff6600);
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 10px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.login-cta .game-btn:hover {
  background: linear-gradient(90deg, #ff6600, #ffb300);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .login-wrapper {
    text-align: center;
    padding: 2rem;
  }
}

.login-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

/* === Payments Section === */
.payments-section {
  margin: 80px auto;
  color: #fff;
}

.payments-wrapper {
  background: radial-gradient(circle at top left, #151845 20%, #0d0f2f 90%);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 0 35px rgba(255, 102, 0, 0.25);
}

/* Table */
.payment-table {
  overflow-x: auto;
  margin-top: 2rem;
}

.payment-table table {
  width: 100%;
  border-collapse: collapse;
  background: #1b1e55;
  border-radius: 14px;
  overflow: hidden;
}

.payment-table th, 
.payment-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-table th {
  background: #252a6b;
  color: #ffb300;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payment-table td img {
  height: 28px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
}

/* Info Cards */
.payment-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.info-card {
  flex: 1 1 calc(33.333% - 1rem);
  background: #1b1e55;
  padding: 1.8rem;
  border-radius: 14px;
  box-shadow: 0 0 18px rgba(255, 102, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.35);
}

.info-card i {
  font-size: 2rem;
  color: #ff6600;
  margin-bottom: 1rem;
  display: block;
}

.info-card h3 {
  color: #ffb300;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.info-card p {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.6;
}

/* CTA */
.payments-cta {
  margin-top: 3rem;
  background: linear-gradient(90deg, #1b1e55, #252a6b);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.25);
}

.payments-cta h3 {
  color: #ffb300;
  font-weight: 800;
  margin-bottom: 1rem;
}

.payments-cta p {
  color: #dcdcdc;
  margin-bottom: 1.2rem;
}

.payments-cta .game-btn {
  background: linear-gradient(90deg, #ffb300, #ff6600);
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 10px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.payments-cta .game-btn:hover {
  background: linear-gradient(90deg, #ff6600, #ffb300);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .payment-info {
    flex-direction: column;
  }
  .info-card {
    flex: 1 1 100%;
  }
  .payments-wrapper {
    padding: 2rem;
  }
}

/* === Trust Section === */
.trust-section {
  margin: 80px auto;
  color: #fff;
}

.trust-wrapper {
  background: radial-gradient(circle at top left, #151845 20%, #0d0f2f 90%);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 0 35px rgba(255, 102, 0, 0.25);
}

/* Cards Grid */
.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.trust-card {
  background: #1b1e55;
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 0 0 18px rgba(255, 102, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.35);
}

.trust-card i {
  font-size: 2rem;
  color: #ff6600;
  margin-bottom: 1rem;
  display: block;
}

.trust-card h3 {
  color: #ffb300;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.trust-card p {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.trust-card ul {
  list-style: none;
  padding-left: 0;
}

.trust-card ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: #dcdcdc;
}

.trust-card ul li::before {
  content: "★";
  color: #ff6600;
  position: absolute;
  left: 0;
  top: 0;
}

/* CTA */
.trust-cta {
  margin-top: 3rem;
  background: linear-gradient(90deg, #1b1e55, #252a6b);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.25);
}

.trust-cta h3 {
  color: #ffb300;
  font-weight: 800;
  margin-bottom: 1rem;
}

.trust-cta p {
  color: #dcdcdc;
  margin-bottom: 1.2rem;
}

.trust-cta .game-btn {
  background: linear-gradient(90deg, #ffb300, #ff6600);
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 10px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.trust-cta .game-btn:hover {
  background: linear-gradient(90deg, #ff6600, #ffb300);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .trust-wrapper {
    padding: 2rem;
  }
  .trust-cta {
    text-align: center;
  }
}

/* === FOOTER STYLES === */
.casino-footer {
  background: #0d0f2f;
  color: #dcdcdc;
  padding-top: 60px;
  border-top: 3px solid #ff6600;
  font-family: "DM Sans", sans-serif;
}

/* GRID LAYOUT */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 2.5rem;
}

/* FOOTER COLUMNS */
.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-col h3 {
  color: #ffb300;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ff6600;
}

/* LOGO & TEXT */
.footer-logo img {
  max-width: 180px;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #bcbcbc;
  margin-bottom: 1.2rem;
  max-width: 300px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  color: #ff6600;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffb300;
}

/* SECURITY LOGOS */
.security-logos {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.security-logos img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.95);
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.security-logos img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* COPYRIGHT BAR */
.footer-bottom {
  background: #0a0b24;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding: 1rem 0;
}

/* FLEX WRAPPER  */
.footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}

/* COPYRIGHT TEXT */
.footer-bottom p {
  font-size: 0.85rem;
  color: #9a9a9a;
  margin: 0;
  line-height: 1.4;
  max-width: 65%;
}

/* PAYMENT ICONS */
.footer-payments {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.footer-payments img {
  height: 30px;
  width: auto;
  filter: brightness(0.85);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-payments img:hover {
  filter: brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-text {
    margin: 0 auto 1rem;
  }

  .social-icons {
    justify-content: center;
  }

  .security-logos {
    justify-content: center;
  }

  .footer-bottom-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-payments {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-payments img {
    margin: 6px;
  }
}
