/*!
Theme Name: Social-theme
Theme URI: http://pryvus.com/
Author: Pryvus
Author URI: http://pryvus.com/
Description: Custom light theme
Version: 1.0.0
Tested up to: 6.7
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: Social-theme
*/

/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}
body {
  font-family: inter;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: .25;
	margin: 1.5rem 0;
}
/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}



.container__page{
  max-width: 900px !important;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.content__wrap {
  padding-bottom: 64px;
  .wp-block-list {
    list-style: disc !important;
    padding: 10px;
  }
  p{
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

.wp-block-heading {
  font-size: 20px !important;
  font-weight: 900;
}
.menu_page_title {
  padding-bottom: 24px !important;
  padding-top: 24px !important;
  margin-bottom: 24px;
  border-bottom: 1px solid;
  border-color: #44403f;
  font-size: 32px !important;
}
@media (max-width: 1024px) {
  .container__page {
      padding: 15px;
  }
}


/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    /* background-color: transparent; */
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    /* background-color: transparent; */
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

input[type='file'] {
	max-width: 100%;
}
/* Main Content */

.agegate__title {
  font-size: 72px;
  font-weight: 900;
  width: 690px;
  background: linear-gradient(75deg, #b5c0f5, #ea2cdb);
  background-clip: text;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.agegate__yes {
  width: 50%;
  height: 100%;
  text-align: center;
  background: linear-gradient(88deg, #692480, #3f1baf);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.agegate__yes:hover{
  background: linear-gradient(88deg, #4b1a5b, #311588);
}

.agegate__buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding-top: 30px;
}

.warning__block {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 10px;
  border-bottom: 0.1px solid #5c5454;
  img{
    width: 100%;
    max-width: 30px;
  }
}

.header__logo a img{
  width: 40px;
  max-width: 100%;
}

.header__logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  h1{
    font-size: 20px;
    font-weight: 700;
    color: white;
  }
}

.footer_logo a img{
  width: 40px;
  max-width: 100%;
}

.footer_logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  h1{
    font-size: 20px;
    font-weight: 700;
    color: white;
  }
}

.footer__aware {
  padding-top: 49px;
}

.footer__aware_logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; 
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__logos_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 115px;
  text-align: center;
}

.footer__logos_icon img {
  width: 100%;
  height: auto;
}


.site-main>.container {
  padding: 33px 0 0;
  color: var(--text-color);
}

.site-main>.container h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 24px;
}

.site-main>.container a {
  color: var(--text-color);
  text-decoration: underline;
}

.site-main>.container ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.site-main>.container ul li {
  list-style: disc;
  margin-bottom: 5px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* header */

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001; 
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu-header-menu-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .menu-header-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .menu-header-menu-container.active {
    right: 0;
  }

  .menu-header-menu-container .menu {
    flex-direction: column;
    gap: 20px;
  }

  .menu-header-menu-container .menu li a {
    color: #fff;
    font-size: 18px;
  }
  .agegate__title {
    font-size: 32px;
    font-weight: 900;
    width: 390px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .footer__logos_icon img {
    width: 70%;
    height: auto;
  }
  
  .agegate__yes:hover{
    background: linear-gradient(88deg, #4b1a5b, #311588);
  }
  
  .agegate__yes {
    width: 100%;
  }
  
  .agegate__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
}




.nlg__wrapper {
  background-color: #000000;
}

.header__logo {
  display: flex;
  justify-content: space-between;
  padding: 25px 0 25px 0;
}

.menu-header-menu-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-header-menu-container .menu {
  display: flex;
  gap: 10px;
  li a{
    color: #D1D5DB;
  }
}

/* hero block */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 256px 0px 256px 0px;
}

.hero__title-white {
  font-size: 72px;
  font-weight: 900;
  color: #ffffff;
  font-family: inter;
}

.hero__title {
  padding-bottom: 15px;
}

.hero__title-gradient {
  background: linear-gradient(75deg, #b5c0f5, #ea2cdb);  
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 72px;
  font-weight: 900;
  font-family: inter;
}

.hero__subtitle {
  font-size: 22px;
  color: #D1D5DB;
  font-family: inter;
  padding-bottom: 48px;
}

.hero__input-wrapper {
  display: flex;
  width: 100%;
  min-width: 448px;
  height: 100%;
  min-height: 58px;
  align-items: center;
  background: #a855f787;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #A855F7;
}

.hero__input-wrapper input::placeholder{
  color: white;
}

.hero__input-wrapper input {
  color: #ffffff;
}

.dont__miss__input-wrapper input {
  color: #ffffff;
}

.dont__miss__input-wrapper input::placeholder{
  color: white;
}

.dont__miss__input-container {
  width: 100%;
  max-width: 400px;
}

.hero__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-size: 16px;
  background: transparent;
  border-radius: 30px;
}

.hero__input::placeholder {
  color: #9CA3AF;
}

.hero__input-btn {
  width: 100%;
  height: 100%;
  text-align: center;
  background: linear-gradient(88deg, #692480, #3f1baf);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.hero__input-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.hero__input-container p{
  font-size: 12px;
  color: #9CA3AF;
  text-align: center;
  padding-top: 12px;
}

/* features */

.features {
  display: flex;
  align-items: center;
  justify-content: center;
}

.whyus__bonus_title {
  text-align: center;
}

.whyus__bonus_title h1{
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  padding: 80px 0 62px 0;
}

.whyus_feature {
  width: 362px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
  h1{
    padding: 24px 0 16px 0;
    color: #ffffff;
    font-size: 16px;
  }
  img{
    width: 64px;
    height: 64px;
  }
  p{
    font-size: 16px;
    color: #9CA3AF;
    text-align: center;
  }
}

/* Demo Games */

.demo__games {
  background-color: #000000;
}

.demo__games_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  h1{
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 12px;
  }
  p{
    font-size: 16px;
    color: #9CA3AF;
    padding-bottom: 64px;
  }
}

.demo__games__content {
  display: flex;
  gap: 32px;
  padding-top: 20px;
  padding-bottom: 80px;
}

.demo__games__content {
  img{
    border-radius: 16px 16px 0 0;
  }
}
.game__card{
  background-color: #581c87a6;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.demo__game_title {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 24px;
  h1{
    font-size: 30px;
    color: #ffffff;
    padding: 24px 0 8px 0;
  }
  p{
    font-size: 16px;
    color: #9CA3AF;
    padding-bottom: 16px;
  }
}

.game__gard_btn {
  width: 326px;
  display: flex;
  gap: 10px;
  background: #9333EA;
  border-radius: 8px;
  color: #ffffff;
  padding: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

/* Don't Miss */

.dont__miss__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0px 80px 0px;
}

.dont__miss__title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  padding-bottom: 15px;
}

.dont__miss__subtitle {
  font-size: 20px;
  color: #D1D5DB;
  font-family: inter;
  padding-bottom: 48px;
}

.dont__miss__input-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  align-items: center;
  background: #a855f787;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dont__miss__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-size: 16px;
  background: transparent;
  border-radius: 30px;
}

.dont__miss__input::placeholder {
  color: #9CA3AF;
}

.dont__miss__input-btn {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #8B5CF6, #EC4899);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.dont__miss__input-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.dont__miss__input-container p{
  font-size: 12px;
  color: #9CA3AF;
  text-align: center;
  padding-top: 12px;
}

/* Comming Soon Game */

.coming__soon {
  background-color: #000000;
}

.coming__soon__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.coming__soon__title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  padding-bottom: 15px;
}

.coming__soon__subtitle {
  font-size: 20px;
  color: #D1D5DB;
  font-family: inter;
  padding-bottom: 48px;
}

.coming__soon__title_subtitle {
  text-align: center;
}

.comint__soon_game {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 896px;
  overflow: hidden;
}

.comint__soon_game img {
  width: 100%;
  display: block;
  filter: brightness(70%);
}

.coming__soon_game-title,
.coming__soon_game-subtitle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  width: 90%;
  margin: 0;
  padding: 5px 10px;
}

.coming__soon_game-subtitle {
  color: #D1D5DB;
}

.coming__soon_game-title {
  bottom: 50px;
  font-size: 24px;
  font-weight: bold;
}

.coming__soon_game-subtitle {
  bottom: 20px;
  font-size: 16px;
}

/* FAQ section */

.faq__block {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(75deg, #0d0d0e, #212634);
}

.faq__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.faq__block_title {
  text-align: center;
  padding-bottom: 60px;
  h1{
    color: #ffffff;
    font-size: 36px;
    font-weight: 600;
  }
}

.faq__question {
  padding-bottom: 10px;
  font-size: 20px;
  color: #ffffff;
}

.faq__answer {
  font-size: 16px;
  color: #9CA3AF;
}

.faq__card {
  border: solid 1px #581c8766;
  background: linear-gradient(75deg, #0d0d0e, #212634);  
  border-radius: 12px;
  width: 100%;
  max-width: 896px;
}

.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  img{
    width: 20px;
  }
}

/* single game */

.single-game {
  background-color: #000000;
}

/* footer */

.nlg__footer {
  background-color: #000000;
}

.footer-icons {
  display: flex;
  justify-content: space-between;
  padding: 49px 0 32px 0;
}

.menu-footer-menu-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-footer-menu-container .menu {
  display: flex;
  gap: 10px;
  li a{
    font-size: 16px;
    color: #9CA3AF !important;
  }
}

.footer__logos {
  display: flex;
  flex-direction: row;
  gap: 16px;
  li {
    width: 100%;
    max-width: 40px;
    height: 100%;
    max-height: 40px;
  }
}

.footer__copyright {
  text-align: center;
  color: #9CA3AF;
  padding: 33px 0 48px 0;
}


.hero__input {
  border-radius: 10px !important;
}


.faq__card {
  border: solid 1px #581c8766;
  background: linear-gradient(75deg, #0d0d0e, #212634);
  border-radius: 12px;
  width: 100%;
  max-width: 896px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  text-align: left;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  background: none;
  border: none;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 16px;
  color: #9CA3AF;
  padding: 0 20px;
}

.faq__card.active .faq__answer {
  max-height: 500px;
  padding: 15px 20px 20px 20px;
}

.faq__card.active .faq__icon {
  transform: rotate(90deg);
}

.play-button {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  padding: 20px 40px;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 20px;
  img {
    width: 200px;
    border: 1px solid white;
    border-radius: 20px;
  }
}

.iframe-wrapper {
  display: flex;
  justify-content: center;
}

.game__title {
  font-size: 26px;
  color: #ffffff;
  padding-top: 20px;
  padding-bottom: 10px;
}
.demo__games__content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.game__card {
  width: 370px; 
  /* height: 370px; */
  border: 1px solid #A855F7;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.game__image {
  width: 100%;
  height: 250px; 
  object-fit: cover;
}

.demo__game_title {
  padding: 10px;
  flex: 1; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}


.game__gard_btn {
  margin-top: 10px;
}

/* .container p:not([class]) {
  padding-bottom: 60px;
  font-size: 16px;
  color: #9CA3AF;
} */



@media (max-width: 991px) {
  body .container {
      max-width: 100%;
  }
}

@media (min-width: 992px) {
  body .container {
      width: 1180px;
      max-width: 98vw;
  }

  body .container-page {
      width: 1165px;
      max-width: 98vw;
      margin: 0 auto;
      padding: 20px 0 20px 0;
  }
}

@media (max-width:991.98px) {


  .container {
      --bs-gutter-x: 1.5rem;
      padding-right: calc(var(--bs-gutter-x)* .5);
      padding-left: calc(var(--bs-gutter-x)* .5);
  }
}

@media(max-width:750px) {
  .container {
    padding: 0 40px;
  }
}

@media(max-width:480px) {

  h1 {
    font-family: Orbitron;
    font-weight: 100 !important;
  }

  .hero__input-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 100%;
    max-width: 448px;
    background: #000; 
    gap: 15px; 
    border: none;
  }
  
  .hero__input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #a855f78a;
    border-radius: 8px;
    background: #111;
    color: #fff;
  }
  
  .hero__input-btn {
    width: 100%;
    min-height: 48px;
    background: linear-gradient(45deg, #8B5CF6, #EC4899);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .hero__input-container {
    border-radius: 12px;
    border: 1px solid #a855f78a; 
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .hero__input-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
  }
  
  .hero__input-container p {
    font-size: 12px;
    color: #9CA3AF;
    text-align: center;
    padding-top: 10px;
  }
  

  .hero__content {
    padding: 80px 0px 80px 0px;
  }

  .hero__input-container {
    width: 100%;
    padding: 20px;
  }

  .hero__title {
    text-align: center;
  }

  .container {
      padding: 0 20px;
  }

  .game__card {
    align-items: baseline;
  }

  .game__gard_btn {
    width: 119px !important;
    padding-left: 7px;
    padding-right: 7px;
    display: flex;
    gap: 6px;
    background: #9333ea3d !important;
    border: 1px solid #B026FF;
    color: #B026FF;
    img{
      width: 16px;
    }
  }

  .game__card {
    border: 1px solid #af26ff73;
    background-color: transparent;
  }

  .demo__games_title {
    p {
      text-align: center;
      padding-bottom: 48px;
    }
  }

  .comint__soon_game {
    display: flex;
    justify-content: center;
  }

  .coming__soon_game-title {
    font-weight: 600;
    padding-bottom: 15px;
  }

  .coming__soon_game-title, .coming__soon_game-subtitle {
    text-align: left;
  }

  .coming__soon {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .coming__soon__title {
    color: #B026FF;
  }
  
  .coming__soon__title_subtitle {
    text-align: left;
    padding-left: 20px;
  }

  .coming__soon__content {
    border: 1px solid #af26ff73;
    border-radius: 8px;
    padding-top: 24px;
    padding-bottom: 30px;
  }

  .comint__soon_game img {
    width: 100%;
    max-width: 308px;
    height: 224px;
    object-fit: cover; 
    border-radius: 12px;
  }

  .dont__miss__content {
    border: 1px solid #af26ff73;
    border-radius: 8px;

  }

  .dont__miss {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .dont__miss__title {
    font-weight: 100 !important;
  }

  .dont__miss__subtitle {
    font-size: 16px;
  }

  .dont__miss__input-container {
    width: 100%;
  }

  .dont__miss__subtitle {
    padding-bottom: 20px;
  }
  

  .faq__question {
    padding: 0px;
  }

  .faq__card.active .faq__answer {
    max-height: 200px;
    padding: 20px 0px 10px 0px;
  }

  .hero__input-btn {
    width: 100%;
    border-radius: 12px !important;
  }

  .demo__games__content {
    padding-bottom: 64px;
  }

  .faq__block {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  
}

@media (max-width: 1128px) {
  .demo__games__content {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== Mobile Styles ===== */
@media (max-width: 767px) {



  .hero__title-white,
  .hero__title-gradient {
    font-size: 36px;
    text-align: center;
    font-family: Orbitron !important;
    font-weight: 100 !important;
  }

  .hero__subtitle {
    font-size: 16px;
    text-align: center;
    padding-bottom: 24px;
  }

  .hero__input-wrapper {
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
  }

  .hero__input {
    width: 100%;
    /* padding: 12px 16px; */
    border-radius: 0;
    text-align: center;
  }

  .hero__input-btn {
    width: 100%;
    border-radius: 0;
    min-height: 48px;
  }

  /* Features */
  .features {
    flex-direction: column;
    gap: 32px;
  }

  .whyus_feature {
    width: 100%;
    max-width: 320px;
    /* text-align: center; */
    align-items: baseline;
    padding-bottom: 32px;
    border: 1px solid #a855f78a;
    padding: 20px;
    border-radius: 8px;
    p {
      text-align: left;
    }
  }


  /* Demo games */
  .demo__games__content {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    
  }

  .game__card {
    width: 100%;
    max-width: 360px;
  }

  .game__gard_btn {
    width: 100%;
  }

  .dont__miss__input-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 448px;
    background: #000;
    border-radius: 12px;
    padding: 16px;
    gap: 12px; 
  }
  
  .dont__miss__input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #a855f78a;
    border-radius: 8px;
    background: #111;
    color: #fff;
  }
  
  .dont__miss__input::placeholder {
    color: #9CA3AF;
  }
  
  .dont__miss__input-btn {
    width: 100%;
    min-height: 48px;
    background: linear-gradient(45deg, #8B5CF6, #EC4899);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .dont__miss__input-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
  }
  
  .dont__miss__input-container p {
    font-size: 12px;
    color: #9CA3AF;
    text-align: center;
    padding-top: 0px;
  }
  

  /* Coming soon */
  .coming__soon_game-title {
    font-size: 18px;
  }
  .coming__soon_game-subtitle {
    font-size: 14px;
  }

  /* FAQ */
  .faq__card {
    padding: 16px;
  }
  .faq__question {
    font-size: 18px;
  }
  .faq__answer {
    font-size: 14px;
  }

  /* Footer */
  .footer-icons {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .footer__logos {
    justify-content: center;
  }

  .menu-footer-menu-container .menu {
    gap: 10px;
    text-align: center;
  }
}


@media (max-width: 768px) {
  .comint__soon_game img {
    width: 308px;
    height: 224px;
  }
}