/*
  Theme Name: Vibetron – Gaming Platform HTML5 Landing Page
  Author: WingsTech Solutions Pvt. Ltd.
  Support: Kindly raise your concerns, doubts, or questions in the "Ticket" section of our TemplateMonster Author profile.
  Description: Vibetron is a sleek, immersive landing page template crafted for individual gamers to showcase their passion, achievements, and favorite titles. Whether you're building a personal gaming portfolio or sharing your journey across different games, Vibetron offers a bold design with smooth interactions to level up your online presence.
  Version: 1.0
*/

/* ==============CSS Index================
------------------------------------------
    01. Common CSS
    02. Buttons
    03. Header
    04. Hero Section
    05. Games Section
    06. Bonus Section
    07. Features Section
    08. Steps Section
    09. Winners Section
    10. Play Section
    11. FAQs Section
    12. Newsletter Section
    13. Footer
    14. Toast Message

-----------------------------------------
=======================================*/

/****************
  01. Common
****************/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

* h1,
* h2,
* h3,
* h4,
* h5,
* h6,
* p {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  scroll-padding-top: 80px;
  scroll-margin-top: 80px;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --mute: #6c6c6c;
  --yellow: #fbcf16;
  --dark-yellow: #e98913;
  --light-bg: #e989130d;
  --dark-bg: #00000066;
  --white-border: 1.5px solid #ffffff4d;
  --primary-grad: linear-gradient(to right, #fbcf16, #e98913);
  --secondary-grad: linear-gradient(
    to bottom left,
    #fbcf16 9.73%,
    rgba(233, 137, 19, 0) 90.27%
  );
  --card-grad: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  --black-grad: linear-gradient(to right, #000000, #000000);
  --button-hover: linear-gradient(to right, #fef9f3, #fef9f3);
}

body {
  background-color: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

html {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background-color: #eeeeee;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-grad);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.g-30 {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

section,
.py-80 {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h2 {
  color: var(--black);
  font-size: 52px;
  line-height: 58px;
  font-weight: 700;
  text-align: center;
}

.section-title p {
  color: var(--black);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.card-title h3 {
  color: var(--black);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.card-title p {
  color: var(--mute);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.card-icon {
  display: inline-flex;
  width: 60px;
  height: 60px;
  background-color: var(--light-bg);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}

.text-primary-24 {
  color: var(--black);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

/****************
  02. Buttons
****************/

.theme-btn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  background: var(--primary-grad);
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  outline: none;
  color: var(--black);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  overflow: hidden;
}

.theme-btn:hover::before {
  transform: translateX(100%);
}

.theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: skewX(-30deg);
  transition: transform 0.4s ease;
}

.simple-btn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  background-color: #fef9f3;
  padding: 11px 30px;
  color: var(--black);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  border-radius: 30px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.simple-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: skewX(-30deg);
  transition: transform 0.4s ease;
}

.simple-btn:hover {
  background-color: transparent;
}

.simple-btn:hover::before {
  transform: translateX(100%);
}

.grad-border {
  background: var(--primary-grad);
  padding: 1px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.yellow-border {
  background: var(--secondary-grad);
  padding: 1px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3 ease;
}

/****************
  03. Header
****************/

header {
  position: fixed;
  width: 100%;
  top: 10px;
  z-index: 100;
}

header nav {
  position: relative;
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0px 2px 4px 0px #00000033;
}

.nav-icon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  outline: none;
  border: none;
  background-color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

header .grad-border {
  padding: 1px;
  border-radius: 50%;
}

.header-list {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0px 2px 4px 0px #00000033;
  padding: 24px;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  z-index: 100;
}

.header-list.active {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
}

#menu-icon {
  width: 20px;
  height: 20px;
  transition: opacity 0.8s ease;
}

#close-icon {
  width: 16px;
  height: 16px;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#menu-icon path,
#close-icon path {
  fill: var(--black);
}

.hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.header-list ul li:not(:nth-last-child(-n + 2)) {
  margin-bottom: 16px;
}

.header-link {
  display: inline-block;
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  transition: color 0.3s ease;
}

.header-link:hover {
  color: transparent;
  background-image: var(--primary-grad);
  background-size: 200%;
  background-position: left center;
  -webkit-background-clip: text;
  background-clip: text;
}

.header-link.active {
  color: transparent;
  background-image: var(--primary-grad);
  background-size: 200%;
  background-position: left center;
  -webkit-background-clip: text;
  background-clip: text;
}

.header-list li:last-child {
  margin-top: 16px;
}

/****************
  04. Hero Section
****************/

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
  min-height: 500px;
  max-height: 1024px;
  background-image: url(../images/backgrounds/hero-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--light-bg);
  z-index: -1;
}

.hero-section h1 {
  color: var(--black);
  font-size: 72px;
  line-height: 86px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-section h1 span {
  background-image: var(--primary-grad);
  background-clip: text;
  color: transparent;
}

.hero-section p {
  color: var(--mute);
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}

.hero-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.real-gamers {
  gap: 24px;
  margin-bottom: 10px;
}

.real-gamers ul li {
  display: inline-block;
  margin-right: -14px;
}

.real-gamers ul li img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--white);
}

.real-gamers h3 {
  color: var(--black);
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}

.real-gamers h3 span {
  background-image: var(--primary-grad);
  background-clip: text;
  color: transparent;
}

/****************
  05. Games Section
****************/

.games-section {
  background-color: var(--light-bg);
}

.game-card {
  position: relative;
  border: var(--white-border);
  border-radius: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.game-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--card-grad);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.game-card img {
  width: 100%;
  border-radius: 20px;
}

.game-card > span {
  display: inline-block;
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: var(--dark-bg);
  backdrop-filter: blur(20px);
  border: var(--white-border);
  border-radius: 20px;
  padding: 3px 12px;
  color: var(--white);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  z-index: 2;
}

.game-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  position: absolute;
  width: calc(100% - 60px);
  bottom: 30px;
  left: 30px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.game-name h3 {
  color: var(--white);
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}

.game-card:hover::before {
  opacity: 1;
}

.game-card:hover .game-name {
  opacity: 1;
  transform: translateY(0);
}

.second-card img:last-of-type {
  display: none;
}

/****************
  06. Bonus Section
****************/

.bonus-section {
  background-color: var(--white);
}

.bonus-card::before {
  opacity: 1;
}

.bonus-card .game-name {
  opacity: 1;
  transform: translateY(0);
}

.bonus-slider.owl-theme .owl-nav.disabled + .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.bonus-slider.owl-carousel .owl-dots .owl-dot span {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #00000033;
  border: none;
  outline: none;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.bonus-slider.owl-carousel .owl-dots .owl-dot:hover span {
  background-color: #a5a5a5;
  transition: all 0.3s ease;
}

.bonus-slider.owl-carousel .owl-dots .owl-dot.active span {
  background-image: var(--primary-grad);
  transition: all 0.3s ease;
}

/****************
  07. Features Section
****************/

.features-section {
  background-color: var(--light-bg);
}

.feature-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
}

.feature-icon img {
  width: 30px;
  height: 30px;
}

/****************
  08. Steps Section
****************/

.steps-section {
  background-color: var(--white);
}

.step-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
}

.step-card .card-icon span {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
}

.steps-card-wrapper {
  position: relative;
}

.steps-card-wrapper .yellow-border:not(:last-child) {
  margin-bottom: 30px;
}

.steps-card-wrapper .yellow-border {
  width: 75%;
  position: relative;
}

.card-right {
  margin-left: 40%;
}

.card-right > img {
  position: absolute;
  bottom: 50%;
  left: -27%;
}

.card-left > img {
  position: absolute;
  bottom: 50%;
  right: -27%;
}

/****************
  09. Winners Section
****************/

.winners-section {
  background-color: var(--light-bg);
}

.winner-card {
  height: 100%;
  background-color: var(--white);
  padding: 30px;
  border-radius: 20px;
}

.winner-name {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.winner-slider .winner-card .winner-icon img {
  width: inherit;
  height: inherit;
  border-radius: 20px;
}

.winner-card .stars {
  margin-bottom: 10px;
}

.slider-button-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-button-block button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fef9f3;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

.slider-button-block button:hover {
  background-color: var(--light-bg);
  transition: all 0.3s ease;
}

.slider-button-block button::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-image: var(--primary-grad);
  z-index: -1;
}

.slider-button-block button svg {
  width: 20px;
  height: 16px;
}

.winner-slider.owl-theme .owl-stage {
  display: flex;
  align-items: stretch;
}

/****************
  10. Play Section
****************/
.play-section {
  background-image: var(--primary-grad);
}

.play-section .section-title h2 {
  margin-bottom: 20px;
}

.store-links {
  margin-top: 30px;
}

.store-links a {
  text-decoration: none;
  display: inline-block;
}

.store-links a:first-child {
  margin-right: 20px;
}

/****************
  11. FAQs Section
****************/

.faq-section {
  background-color: var(--white);
}

.faq-section .accordion .accordion-item {
  border: none;
  border-radius: 20px;
  background-color: var(--white);
}

.faq-section .accordion .yellow-border:not(:last-child) {
  margin-bottom: 30px;
}

.faq-section .accordion .accordion-item .accordion-header {
  border-radius: 20px;
}

.faq-section .accordion .accordion-item .accordion-header button {
  background-color: var(--white);
  border-radius: 20px !important;
  padding: 20px 30px;
  position: relative;
}

.faq-section
  .accordion
  .accordion-item
  .accordion-header
  button:not(.collapsed) {
  box-shadow: none;
}

.faq-section .accordion .accordion-item .accordion-header button span {
  color: var(--black);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  width: 90%;
}

.faq-section .accordion .accordion-item .accordion-header button:focus {
  box-shadow: none;
}

.faq-section .accordion .accordion-item .accordion-header button::after {
  content: "";
  position: absolute;
  background-image: url(../images/icons/down-arrow.svg);
  background-size: 10px 16px;
  background-color: var(--primary);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  right: 30px;
  background-position: center;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-section
  .accordion
  .accordion-item
  .accordion-header
  button:not(.collapsed)::after {
  transform: rotate(180deg);
  transition: all 0.4s ease;
}

.faq-section .accordion .accordion-item .accordion-collapse .accordion-body {
  background-color: var(--white);
  border-radius: 0 0 20px 20px;
  padding: 0 30px 20px 30px;
}

.faq-section .accordion .accordion-item .accordion-collapse .accordion-body p {
  color: var(--mute);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

/****************
  12. Newsletter Section
****************/

.newsletter-section {
  background-color: var(--light-bg);
}

.newsletter-content {
  margin-top: -40px;
}

.newsletter-section .section-title h2 {
  text-align: left;
  margin-bottom: 10px;
}

.newsletter-section .section-title p {
  color: var(--mute);
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}

.newsletter-section form {
  margin-top: 30px;
}

.newsletter-section form > div {
  width: auto;
  border-radius: 30px;
}

.newsletter-section form input {
  width: 100%;
  border: none;
  outline: none;
  background-color: var(--white);
  border-radius: 30px;
  padding: 12px 20px;
  color: var(--black);
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.newsletter-section form input::placeholder {
  color: #a5a5a5;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  text-transform: capitalize;
}

/****************
  13. Footer 
****************/

footer {
  background-color: var(--yellow);
}

.footer-logo {
  margin-bottom: 30px;
}

footer ul {
  display: flex;
  align-items: center;
  gap: 16px;
}

footer ul li:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  color: var(--black);
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}

footer ul li a {
  display: inline-block;
  text-decoration: none;
  color: var(--black);
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.copyright-wrapper {
  background-color: var(--black);
}

.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
}

.copyright p {
  color: var(--white);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

/****************
  14. Toast Message
****************/

.message-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 0px 20px 0px #1f1f1f33;
}

.message-image {
  width: 40px;
  height: 40px;
  background-color: #3bb537;
  border-radius: 50%;
  flex-shrink: 0;
}

.message-content h3 {
  color: #000000;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

.message-content p {
  color: #7a7a7a;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 0;
}

.message-wrapper button {
  width: 16px;
  height: 16px;
  padding: 0;
  border: none;
  outline: none;
  box-shadow: none;
}

.message-wrapper button svg {
  width: 14px;
  height: 14px;
  vertical-align: top;
}

.message-wrapper button svg path {
  fill: #999999;
}

.message-wrapper button:focus {
  box-shadow: none;
}

#success-toast {
  position: fixed;
  top: 66px;
  right: 20px;
  background-color: #ffffff;
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 0px 20px 0px #1f1f1f33;
  padding: 12px 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.3s ease-in-out;
  z-index: 9999;
}

#success-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-close {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

/* Header styling */
.main-header {
  background-color: rgba(10, 10, 10, 0.95); 
  backdrop-filter: blur(6px); 
  z-index: 1000; /
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

body {
  padding-top: 90px; 
}


@media (max-width: 768px) {
  .main-header {
    background-color: rgba(0, 0, 0, 0.9);
  }
}

.main-header .d-flex {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.main-header img {
  max-height: 60px;
  width: auto;
}

.theme-btn {
  font-size: 16px;
  padding: 8px 20px;
}


.hero-content {
  background: rgba(0, 0, 0, 0.45);
  padding: 20px 30px;
  border-radius: 12px;
  display: inline-block;
  backdrop-filter: blur(3px);
  color: #ffffff; 
}

.hero-content h1 {
  color: #ffffff; 
}

.hero-content p {
  color: #f1f1f1; 
  line-height: 1.6;
}

/* About Section */
.about-section {
  background-color: #fff;
  padding: 100px 0;
  position: relative;
}

.about-image img {
  border-radius: 16px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
}

.about-image-text {
  background: #fef9f3;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.about-image-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 0;
}

.about-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}

.about-text strong {
  color: #000;
}

.about-text em {
  color: #666;
  font-style: normal;
}

.section-title .subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #6c757d;
  margin-top: 10px;
}

.about-cards {
  margin-top: 20px;
}

.about-card {
  background: #fef9f3;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.about-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.about-card h3 {
  font-size: 20px;
  color: #000;
  margin-bottom: 8px;
  font-weight: 700;
}

.about-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .about-section {
    padding: 60px 0;
  }

  .about-card {
    text-align: center;
  }

  .about-image img {
    margin-bottom: 15px;
  }
}

.about-image-text {
  background: #fef9f3;
  border-radius: 12px;
  padding: 24px 26px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  min-height: 320px; 
}

.about-image-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}

@media (max-width: 991px) {
  .about-image-text {
    min-height: auto;
  }
}

/* Online Section */
.online-section {
  background: #fffaf2;
  padding: 100px 0;
  position: relative;
}

.online-section .section-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: #000;
}

.online-section .section-title .subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #6c757d;
  margin-top: 8px;
}

.online-text p {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 16px;
}

.online-cards {
  margin-top: 25px;
}

.online-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.online-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.online-card img {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}

.online-card h3 {
  font-size: 20px;
  color: #000;
  font-weight: 700;
  margin-bottom: 8px;
}

.online-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.online-image img {
  border-radius: 16px;
  object-fit: cover;
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .online-section {
    padding: 60px 0;
  }

  .online-card {
    text-align: center;
  }

  .online-image {
    margin-top: 20px;
  }
}

.online-image-text {
  background: #fff;
  border-radius: 12px;
  padding: 22px 24px;
  margin-top: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.online-image-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
}

.online-card svg {
  display: block;
  margin-bottom: 10px;
}

.online-card:hover svg {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.features-section .subtitle {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.feature-icon svg {
  display: block;
  margin: 0 auto 10px auto;
  transition: transform 0.3s ease;
}

.feature-card:hover svg {
  transform: scale(1.15);
}

.top-games-section {
  background: #0e0e0e;
  color: #fff;
}

.top-games-section .section-title h2 {
  color: #ffd34e;
  font-size: 2rem;
  margin-bottom: 10px;
}

.top-games-section .subtitle {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 40px;
}

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.game-card img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.game-card:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.game-card:hover .overlay {
  opacity: 1;
}

.play-btn {
  background: linear-gradient(90deg, #f4b000, #ffde6a);
  color: #000;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.play-btn:hover {
  background: linear-gradient(90deg, #ffde6a, #f4b000);
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .game-card {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .col-6 {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

.promo-banner {
  background: linear-gradient(90deg, #0d0d0d 0%, #1a1a1a 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
}

.promo-banner .promo-text h2 {
  font-size: 2.2rem;
  color: #ffd34e;
  margin-bottom: 10px;
  font-weight: 700;
}

.promo-banner .promo-text h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.promo-banner .promo-text p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 25px;
}

.promo-banner .theme-btn {
  display: inline-block;
  background: linear-gradient(90deg, #f4b000, #ffde6a);
  color: #000;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.promo-banner .theme-btn:hover {
  background: linear-gradient(90deg, #ffde6a, #f4b000);
  transform: scale(1.05);
}

.promo-banner .promo-image img {
  max-width: 90%;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.promo-banner .promo-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .promo-banner {
    text-align: center;
  }

  .promo-image img {
    margin-top: 30px;
  }
}

.steps-section {
  background: #fdfaf5;
  color: #222;
}

.steps-section h2 {
  color: #000;
  font-size: 2rem;
  font-weight: 700;
}

.steps-section .subtitle {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 10px;
}

.about-steps-text {
  background: #fff;
  border-radius: 12px;
  padding: 25px 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  text-align: left;
  max-width: 90%;
}

.about-steps-text p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.step-card .card-icon span {
  background: #f4b000;
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(255, 211, 78, 0.4);
}

.step-card .card-title h3 {
  font-size: 1.2rem;
  color: #111;
  margin-bottom: 6px;
}

.step-card .card-title p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.yellow-border {
  background: #fff;
  border: 1px solid #f4b0004d;
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yellow-border:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 15px rgba(255, 211, 78, 0.25);
}

@media (max-width: 991px) {
  .steps-section {
    text-align: center;
  }
  .about-steps-text {
    max-width: 100%;
  }
}

.games-section {
  background: #fdfaf5;
  color: #222;
}

.games-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

.games-section .subtitle {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.intro-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto;
}

.game-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.3s ease;
}

.equal-height {
  height: 100%;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-header h3 {
  font-size: 1.1rem;
  color: #000;
  font-weight: 700;
  margin: 0;
}

.tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.tag.gold {
  background: linear-gradient(90deg, #f4b000, #ffe278);
  color: #000;
}

.tag.blue {
  background: linear-gradient(90deg, #00a2ff, #4de0ff);
  color: #fff;
}

.tag.green {
  background: linear-gradient(90deg, #00b86b, #6ef3b0);
  color: #fff;
}

.game-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-text {
  max-width: 900px;
  margin: 0 auto;
}

.footer-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}

@media (max-width: 991px) {
  .card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .tag {
    margin-top: 6px;
  }
}

.games-image img {
  max-width: 520px; 
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.games-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .games-image img {
    max-width: 280px;
  }
}

.promo-banner-dark {
  background: #0a0a0a;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.promo-banner-dark::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 204, 0, 0.07), transparent 60%);
  z-index: 0;
}

.promo-text {
  position: relative;
  z-index: 2;
}

.promo-text .highlight {
  color: #ffcc33;
  font-size: 2rem;
  font-weight: 700;
}

.promo-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f7f7f7;
  margin-top: 10px;
  margin-bottom: 18px;
}

.promo-text p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 20px;
}


.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}
.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  color: #eee;
  font-size: 0.95rem;
}
.feature-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #ffcc33;
  font-size: 1rem;
}

.theme-btn-yellow {
  background: linear-gradient(135deg, #ffdd66, #f4b000);
  color: #000 !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 36px;
  border-radius: 50px;
  text-decoration: none !important;
  border: none;
  display: inline-block;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
}

.theme-btn-yellow:hover {
  background: linear-gradient(135deg, #ffe68a, #ffbf00);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 200, 0, 0.3);
}

.theme-btn-yellow:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.theme-btn-yellow:focus {
  outline: none;
}

.game-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: none !important;
}

.game-card:hover {
  transform: translateY(-5px);
  background: #fff !important;
  box-shadow:
    0 0 20px rgba(255, 220, 90, 0.4),
    0 0 40px rgba(255, 190, 0, 0.25);
}

.game-card h3,
.game-card p {
  transition: color 0.3s ease;
  color: #111;
}

.game-card:hover h3 {
  color: #000;
}

.game-card:hover p {
  color: #333;
}

.game-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.game-card .tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(90deg, #ffda64, #f4b000);
}

.tag.blue {
  background: linear-gradient(90deg, #00c2ff, #0078ff);
  color: #fff;
}

.tag.green {
  background: linear-gradient(90deg, #00e676, #00b248);
  color: #fff;
}

.slots-section {
  background: #fdfbf8;
  color: #111;
}

.slot-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.slot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.45);
}

.slot-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.slot-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
}

.slot-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
}

.slot-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.slot-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: #444;
  font-size: 0.93rem;
}

.slot-list li::before {
  content: "🎰";
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 1rem;
  color: #f4b000;
}

.tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(90deg, #ffda64, #f4b000);
}

.tag.blue {
  background: linear-gradient(90deg, #00c2ff, #0078ff);
  color: #fff;
}

.tag.green {
  background: linear-gradient(90deg, #00e676, #00b248);
  color: #fff;
}

.footer-text {
  max-width: 850px;
  margin: 0 auto;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
}

.table-live-section {
  background: #fdfbf8;
  color: #111;
}

.table-live-section h2 {
  font-weight: 700;
  color: #111;
}

.table-live-section .subtitle {
  color: #444;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.table-live-section .game-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.table-live-section .game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.table-live-section .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.table-live-section .game-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #000;
}

.table-live-section p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  color: #444;
  font-size: 0.93rem;
}

.feature-list li::before {
  content: "♠";
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 1rem;
  color: #f4b000;
}

.tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  color: #000;
  background: linear-gradient(90deg, #ffda64, #f4b000);
}

.tag.blue {
  background: linear-gradient(90deg, #00c2ff, #0078ff);
  color: #fff;
}

.tag.green {
  background: linear-gradient(90deg, #00e676, #00b248);
  color: #fff;
}

.footer-text {
  max-width: 850px;
  margin: 0 auto;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
}

.mini-banner-bg {
  position: relative;
  background: 
    linear-gradient(rgba(10, 10, 10, 0.2), rgba(10, 10, 10, 0.7)),
    url("../images/banner/live-casino-bg.jpg") center/cover no-repeat;
  border-radius: 18px;
  overflow: hidden;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.4);
  min-height: 340px;
}


.mini-banner-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 204, 0, 0.08), transparent 60%);
  z-index: 1;
}

.mini-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  color: #fff;
}

.poker-section {
  background: #f9f7f2;
  color: #222;
}

.poker-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
}

.poker-section .subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
}

.poker-image img {
  max-width: 300px;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

.poker-image img:hover {
  transform: scale(1.02);
}

.poker-section .intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  max-width: 880px;
  margin: 0 auto 18px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 204, 0, 0.3);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.feature-card p {
  color: #555;
  line-height: 1.7;
  font-size: 0.97rem;
}

.footer-text p {
  font-size: 1.05rem;
  color: #333;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.8;
}

.bingo-section {
  background: #fff9ef;
  color: #222;
}

.bingo-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
}

.bingo-section .subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
}

.bingo-image img {
  max-width: 350px;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

.bingo-image img:hover {
  transform: scale(1.02);
}

.bingo-section .intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  max-width: 880px;
  margin: 0 auto 18px;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 180, 0, 0.3);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.feature-card p {
  color: #555;
  line-height: 1.7;
  font-size: 0.97rem;
}

.footer-text p {
  font-size: 1.05rem;
  color: #333;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.8;
}

.cta-banner-section {
  background: radial-gradient(circle at 30% 50%, rgba(255, 204, 0, 0.05), transparent 60%), #0a0a0a;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 70px;
}

.cta-text h2 {
  color: #ffcc33;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-text p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 600px;
}

.cta-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.cta-text ul li {
  position: relative;
  padding-left: 25px;
  color: #f2f2f2;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.cta-text ul li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #ffcc33;
  font-size: 1rem;
}

.cta-image img {
  max-width: 420px;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.cta-image img:hover {
  transform: scale(1.03);
}

.theme-btn-yellow {
  background: linear-gradient(135deg, #ffdd66, #f4b000);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 36px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease;
}

.theme-btn-yellow:hover {
  background: linear-gradient(135deg, #ffe68a, #ffbf00);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 200, 0, 0.3);
}

.login-registration-section-light {
  background: #fdfaf5;
  color: #222;
}

.login-registration-section-light .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
}

.login-registration-section-light .subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.info-block-light {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-block-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(255, 204, 0, 0.25);
}

.info-block-light h3 {
  color: #f4b000;
  font-weight: 700;
  margin-bottom: 15px;
}

.info-block-light p {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
}

.info-block-light ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
}

.info-block-light ul li {
  position: relative;
  padding-left: 28px;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.7;
}

.info-block-light ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f4b000;
  font-weight: bold;
  font-size: 1rem;
}

.footer-text p {
  font-size: 1.05rem;
  color: #333;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.9;
}

.footer-text .theme-btn-yellow {
  margin-top: 20px;
}

.casino-app-section {
  background: #fffaf4;
  color: #222;
}

.casino-app-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
}

.casino-app-section .subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.info-block-light {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-block-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(255, 204, 0, 0.25);
}

.info-block-light h3 {
  color: #f4b000;
  font-weight: 700;
  margin-bottom: 15px;
}

.info-block-light h4 {
  color: #222;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 10px;
}

.info-block-light p {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.info-block-light ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
}

.info-block-light ul li {
  position: relative;
  padding-left: 28px;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.7;
}

.info-block-light ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f4b000;
  font-weight: bold;
  font-size: 1rem;
}

.app-footer-text p {
  color: #333;
  font-size: 1.05rem;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.9;
}

.app-buttons .store-icon {
  width: 180px;
  height: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-buttons .store-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.payment-section {
  background: #0a0a0a;
  color: #fff;
}

.payment-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffcc33;
}

.payment-section .subtitle {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.payment-card {
  background: #1a1a1a;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.payment-card:hover {
  background: #222;
  box-shadow: 0 0 18px rgba(255, 204, 0, 0.25);
  transform: translateY(-3px);
}

.payment-card h4 {
  color: #ffcc33;
  font-weight: 700;
  margin-bottom: 10px;
}

.payment-card p {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 8px;
  line-height: 1.6;
}

.payment-card .limit {
  font-size: 0.9rem;
  color: #aaa;
  font-style: italic;
  display: block;
  margin-top: 4px;
}

.footer-text p {
  font-size: 1.05rem;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.9;
}


.trust-section {
  background: #fffaf4;
  color: #222;
}

.trust-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
}

.trust-section .subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.info-block-light {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.info-block-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(255, 204, 0, 0.25);
}

.info-block-light h3 {
  color: #f4b000;
  font-weight: 700;
  margin-bottom: 15px;
}

.info-block-light p {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
}

.footer-text p {
  color: #333;
  font-size: 1.05rem;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.9;
}

.faq-section-light {
  background: #f7f7f7;
  color: #222;
}

.faq-section-light .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
}

.faq-section-light .subtitle {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.faq-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-left: 6px solid #ffcc33;
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.faq-card:hover {
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.25);
  transform: translateY(-3px);
}

.faq-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.faq-card p {
  color: #333;
  font-size: 0.97rem;
  line-height: 1.6;
}

.footer-section {
  background: #0a0a0a;
  color: #e0e0e0;
  font-size: 0.94rem;
  padding: 60px 0;
}

.footer-logo img {
  max-width: 180px;
  filter: brightness(1.2);
  margin-bottom: 15px;
}

.footer-about p {
  color: #e5e5e5;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-about p strong {
  color: #fff;
}

.footer-disclaimer,
.footer-disclaimer p {
  color: #e6e6e6 !important;
  font-size: 0.88rem;
  margin-top: 10px;
  line-height: 1.55;
}

.footer-links {
  text-align: left;
}

.footer-links h5 {
  color: #ffcc33;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-links .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block !important;
}

.footer-links .footer-list li {
  margin: 0;
  padding: 0;
}

.footer-links .footer-list li + li {
  margin-top: 2px;
}

.footer-links .footer-list li a {
  display: block;
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.footer-links .footer-list li a:hover {
  color: #ffcc33;
}

.footer-info h5 {
  color: #ffcc33;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-info p {
  color: #e5e5e5;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-info a {
  color: #ffcc33;
  text-decoration: none;
  font-weight: 500;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 35px 0 25px;
}

.footer-bottom,
.footer-bottom p,
.footer-bottom .small {
  text-align: center;
  color: #dcdcdc !important;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

.footer-section .text-muted,
.footer-section .small,
.footer-section p.text-muted,
.footer-section p.small {
  color: #e5e5e5 !important;
  opacity: 1 !important;
  font-weight: 400;
}

.footer-section p.text-muted strong {
  color: #ffffff !important;
  font-weight: 600;
}

.footer-section p.text-muted.small {
  margin-top: 8px;
  line-height: 1.5;
}

footer,
.footer-section {
  background-color: #0a0a0a !important;
  color: #e0e0e0 !important;
}

@media (max-width: 991px) {
  .footer-section {
    text-align: center;
  }

  .footer-links {
    margin-top: 30px;
  }

  .footer-links .footer-list li a {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 40px 15px;
  }

  .footer-logo img {
    max-width: 150px;
  }

  .footer-links h5 {
    margin-top: 20px;
  }
}
