/*
  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;
}
