:root {
  --primary-bg: #13111C;
  --secondary-bg: #1E1B2E;
  --accent: rgb(61, 106, 255);
  --text-clr: rgba(255, 255, 255, 0.7);
  --gradient: linear-gradient(90deg, #5f94ff, #0900ab);
}

::selection {
  background: rgba(61, 106, 255, 0.2);
  color: #fff;
}

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');

body {
	margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, "Shippori Mincho", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Noto Serif", "Noto Sans JP", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Kaku Gothic ProN", "Meiryo", "MS PGothic", "MS PMincho", "Tahoma", Geneva, sans-serif;  background: var(--primary-bg); color: #fff; overflow-x: hidden;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: var(--primary-bg);
	color: var(--text-primary);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  color: #fff;
  z-index: 1001;
  position: fixed;
  width: 100%;
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
	
}

.stars, .twinkling {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.stars {
	background: #13111C url('https://www.transparenttextures.com/patterns/stardust.png') repeat top center;
	z-index: -2;
}

.twinkling {
	background: transparent url('https://www.transparenttextures.com/patterns/stardust.png') repeat top center;
	z-index: -1;
	animation: move-twinkle-back 200s linear infinite;
	opacity: 0.5;
}

@keyframes move-twinkle-back {
	from {background-position: 0 0;}
	to {background-position: -10000px 5000px;}
}

.burger__logo {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.hero__section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.grid__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem;
  gap: 4rem;
}

.hero__content {
  flex: 1;
  max-width: 600px;
}

.hero__h1 {
  font-size: 4.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
}

.hero__image {
  flex: 1;
  position: relative;
}

.hero__image img {
  width: 100%;
  max-width: 600px;
  height: 90%;
  border-radius: 20px;
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.3s ease;
}

.hero__image img:hover {
  transform: perspective(1000px) rotateY(0deg);
}

@media (max-width: 1024px) {
  .hero {
      flex-direction: column;
      text-align: center;
      padding-top: 4rem;
  }

  h1 {
      font-size: 3rem;
  }

  .hero__image {
      margin-top: 2rem;
  }

  .hero__image img {
      transform: none;
  }
}

.login__reg {
  display: flex;
	flex-shrink: 0;
  gap: 15px;
	margin-right: 30px;
	align-items: baseline;
}

.register__btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--accent);
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(255, 125, 227, 0.5);
  transition: background 0.3s;
}

.register__btn:hover {
  background: #ff7de3;
}

.burger__menu {
	font-size: 1.8rem;
}

.logo:hover {
	transform: scale(1.1);
}

.login__reg {
	display: flex;
  gap: 10px;
}
.sidebar {
  position: fixed;
  top: 70px; 
  left: -100%; 
  width: 300px;
  height: calc(100vh - 70px); 
  background: linear-gradient(180deg, var(--primary-bg), var(--secondary-bg));
  color: #fff;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.7);
  transition: left 0.4s ease, opacity 0.3s ease;
  z-index: 1000;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
}

.sidebar.active {
  left: 0; 
  opacity: 1; 
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  padding: 10px 15px;
  font-size: 1.2rem;
  border-radius: 8px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar ul li:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}


.language__dropdown ul.dropdown {
  display: none;
  background: var(--secondary-bg);
  padding: 10px;
  border-radius: 5px;
  margin-top: 5px;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  position: absolute;
	top: 100%;
  left: 15px;
  width: calc(100% - 30px);
}

.language__dropdown:hover ul.dropdown {
  display: flex;
}

.language__dropdown ul.dropdown li {
  padding: 5px 10px;
  margin: 5px 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.language__dropdown ul.dropdown li:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.language__dropdown {
  position: relative;
}

.payment {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 40px;
	max-width: 100%;
	margin: 30px 70px;
	gap: 60px;
  
}

.payment__img {
	flex: 1;
	max-width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 12px;
	overflow: hidden;
}


.payment__img img {
	width: 100%;
	height: auto;
	border-radius: 12px;
}


.payment__text {
	flex: 1;
	max-width: 50%;
	text-align: left;
}

.payment__text h2 {
	font-size: 3rem;
	margin-bottom: 15px;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-image: var(--gradient);
  line-height: 1.2;
  font-weight: 700;
}

.payment__text p {
	font-size: 1.2rem;
	line-height: 1.6;
	color: var(--text-clr); 
}


@media (max-width: 768px) {
	.payment {
			flex-direction: column;
			text-align: center;
	}
	.payment__img,
	.payment__text {
			max-width: 100%;
	}
}

header .login__reg a {
	color: #fff;
	text-decoration: none;
	margin-left: 15px;
	transition: color 0.3s;
}

header .login__reg a:hover {
	color: var(--accent);
}

.register__btn {
	padding: 0.5rem 1rem;
	background: #9c27b0;
	border-radius: 20px;
	box-shadow: 0 4px 8px rgba(255, 125, 227, 0.5);
	transition: background 0.3s;
}

.register__btn:hover {
	background: #d500f9;
}

.banner {
	width: 100%;
	overflow: hidden;
	background: var(--primary-bg);
	padding: 1rem 0;
	box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.4);
	position: relative;
}

.banner__wrapper {
	display: flex;
	gap: 4rem;
	animation: scrollBanner 20s linear infinite;
}

.right__img {
	max-width: 100%;
	width: 90%;
	padding-left: 5%;
}

.banner img {
	height: 100px;
	width: auto;
	object-fit: contain;
  filter: grayscale(1);
}

@keyframes scrollBanner {
	from {
			transform: translateX(0);
	}
	to {
			transform: translateX(-100%);
	}
}

.promo__gallery {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 4rem;
	background: var(--primary-bg);
	color: white;
}

.promo__container {
	display: flex;
	align-items: center;
	gap: 1rem;
	border: 4px solid var(--accent);
	border-radius: 8px;
	padding: 2rem;
	background: #0d0a1d;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, var(--accent) 0px 8px 16px -8px;
	max-width: 1200px;
	width: 100%;
	overflow: hidden;
}


.nav__arrow {
	font-size: 3rem;
	color: var(--accent);
	background: none;
	border: none;
	transition: color 0.3s ease, transform 0.3s ease;
}

.nav__arrow:hover {
	color: #fff;
	transform: scale(1.2);
}


.promo__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	width: 100%;
	position: relative;
	overflow: hidden;
}


.promo__info {
	flex: 1;
	max-width: 40%;
	transition: transform 0.5s ease, opacity 0.5s ease;
	opacity: 1;
}

.promo__info.hidden {
	opacity: 0;
	transform: translateX(-100%);
}

.promo__info.new {
	opacity: 0;
	transform: translateX(100%);
}


.promo__media {
	flex: 1;
	max-width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.promo__media img {
	width: 90%;
	max-width: 500px;
	height: auto;
	border-radius: 10px;
	object-fit: cover;
	transition: opacity 0.5s ease;
}

.promo__media img.hidden {
	opacity: 0;
}

.home .cta__button {
	display: inline-block;
	padding: 0.8rem 1.5rem;
	background: #9c27b0;
	border-radius: 50px;
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	box-shadow: 0 4px 8px rgba(255, 125, 227, 0.5);
	transition: background 0.3s;
}

.home .cta__button:hover {
	background: #d500f9;
}

.stats {
	padding: 2rem;
	background: var(--primary-bg);
}

.stats h2 {
  font-size: 2.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  margin-bottom: 20px;
}

.stats tr {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-clr); 
  margin-bottom: 20px;
}

.stats table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 5px;
}

.stats table th,
.stats table td {
	padding: 1rem;
	border: 1px solid var(--accent);
	text-align: center;
}

.stats table th {
	background-color: #0544a9;
}
.vip, #app {
  padding: 2rem;
  background: var(--primary-bg);
  
}

.vip {
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.6);
}

.vip__header {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
  margin-bottom: 0;
  padding-bottom: 0;
  
}

.vip__header button {
  margin-top: 5px;
  text-align: center;
}

.vip__header h1 {
  font-size: 3rem;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-weight: bold;
	margin-bottom: 20px;
  text-align: left;
  margin: 0 50px;
}

.vip__header p {
  font-size: 1.2rem;
	line-height: 1.6;
	color: #e0e0e0; 
  margin: 20px;
}

.feature__container {
	display: flex;
	align-items: center;
	gap: 2rem; 
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.6s ease forwards;
}

.feature__image {
	flex: 1;
}

.feature__image img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.feature {
	flex: 1;
	padding: 1rem;
}

@keyframes fadeInUp {
	to {
			opacity: 1;
			transform: translateY(0);
	}
}

.feature__container:nth-child(1) {
	animation-delay: 0.6s;
}

.feature__container:nth-child(2) {
	animation-delay: 1.2s;
}

.feature__container:nth-child(3) {
	animation-delay: 1.8s;
}

.feature__container:nth-child(4) {
	animation-delay: 2.4s;
}

.support {
	color: white;
  padding-top: 40px;
	border-radius: 15px;
	display: flex;
	justify-content: center;
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.4);
	align-items: center;
	position: relative;
  padding-left: 4rem;
}

.support__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	width: 100%;
}


.support__left {
	max-width: 800px;
}

.support__left h2 {
	font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-image: var(--gradient);
  line-height: 1.2;
}

.support__left p {
	font-size: 1.25rem;
	line-height: 1.6;
	margin-bottom: 30px;
  color: var(--text-clr);
}

.support__right {
	max-width: 500px;
}

.support__img {
	width: 100%;
	border-radius: 10px;
	transition: transform 0.3s ease;
	
}

.support__img:hover {
	transform: none;
	box-shadow: none;
}

.support__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.support__btn {
	background-color: var(--accent);
	color: #25154b;
	font-size: 1rem;
	padding: 15px 30px;
	border-radius: 30px;
	border: none;
	margin-bottom: 20px;
	transition: background-color 0.3s ease, transform 0.3s ease;
	text-transform: uppercase;
}

.support__btn:hover {
	background-color: #ff00ff;
	transform: scale(1.05);
}


.support__progress {
	width: 100%;
	background-color: transparent;
	margin-bottom: 10px;
}

.support__progress-bar {
	width: 70%; 
	background-color: #ff00ff;
	height: 5px;
	border-radius: 5px;
}


hr {
	border: none;
	height: 1px;
	background-color: #bcbcbc;
	margin: 40px 0;
}


.support__availability {
	font-size: 1rem;
	font-weight: bold;
	color: #e4aaff;
	text-align: center;
	margin-top: 10px;
}


@media (max-width: 768px) {
	.support__container {
			flex-direction: column;
			align-items: center;
	}

	.support__left, .support__right {
			max-width: 100%;
			text-align: center;
	}

	.support__btn {
			width: 100%;
	}
}

div.online__indicator {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  
  background-color: #0fcc45;
  border-radius: 50%;
  
  position: relative;
}
span.blink {
  display: block;
  width: 15px;
  height: 15px;
  
  background-color: #0fcc45;
  opacity: 0.7;
  border-radius: 50%;
  
  animation: blink 1s linear infinite;
}

@keyframes blink {
  100% { transform: scale(2, 2); 
          opacity: 0;
        }
}

.button__support {
  position: relative;
  padding: 12px 35px;
  background: var(--accent);
  font-size: 17px;
  font-weight: 1000;
  color: #ffffff;
  border: 3px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 0 0 #ffffff;
  transition: all 0.3s ease-in-out;
	margin-bottom: 10px;
	
}

.star__1 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 0 var(--accent));
  z-index: -5;
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star__2 {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 var(--accent));
  z-index: -5;
  transition: all 1scubic-bezier(0, 0.4, 0, 1.01);
}

.star__3 {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 var(--accent));
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star__4 {
  position: absolute;
  top: 20%;
  left: 40%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 0 var(--accent));
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star__5 {
  position: absolute;
  top: 25%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 var(--accent));
  z-index: -5;
  transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star__6 {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 var(--accent));
  z-index: -5;
  transition: all 0.8s ease;
}

.button__support:hover {
  background: transparent;
  color: var(--accent);
  box-shadow: 0 0 0px var(--accent);
}

.button__support:hover .star__1 {
  position: absolute;
  top: -80%;
  left: -30%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 0px var(--accent));
  z-index: 2;
}

.button__support:hover .star__2 {
  position: absolute;
  top: -0%;
  left: 10%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0px var(--accent));
  z-index: 2;
}

.button__support:hover .star__3 {
  position: absolute;
  top: 55%;
  left: 25%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0px var(--accent));
  z-index: 2;
}

.button__support:hover .star__4 {
  position: absolute;
  top: 30%;
  left: 80%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 0px var(--accent));
  z-index: 2;
}

.button__support:hover .star__5 {
  position: absolute;
  top: 25%;
  left: 115%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0px var(--accent));
  z-index: 2;
}

.button__support:hover .star__6 {
  position: absolute;
  top: 5%;
  left: 60%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0px var(--accent));
  z-index: 2;
}

.fil0 {
  fill: var(--accent);
}

.left__align {
	text-align: left;
	transform: translateX(2px);;
  font-size: 2rem;
	color: white;
	font-weight: bold;
	margin-bottom: 20px;
}


@keyframes card-slide-in {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#stats__data tr {
  animation: card-slide-in 0.5s ease-in-out;
}

.vip__btn {
  width: 10em;
  position: relative;
  height: 3.5em;
  border: 3px ridge var(--accent);
  outline: none;
  background-color: transparent;
  color: white;
  transition: 1s;
  border-radius: 0.3em;
  font-size: 16px;
  font-weight: bold;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
}

.vip__btn::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 3%;
  width: 95%;
  height: 40%;
  background-color: var(--primary-bg);
  transition: 0.5s;
  transform-origin: center;
}

.vip__btn::before {
  content: "";
  transform-origin: center;
  position: absolute;
  top: 80%;
  left: 3%;
  width: 95%;
  height: 40%;
  background-color: var(--primary-bg);
  transition: 0.5s;
}

.vip__btn:hover::before, .vip__btn:hover::after {
  transform: scale(0)
}

.vip__btn:hover {
  box-shadow: inset 0px 0px 25px var(--accent);
}

.container {
  max-width: 100vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 35px;
  margin: 0 auto;
  padding: 40px 0;

  .card {
    position: relative;
    width: 300px;
    height: 350px;
    margin: 0 auto;
    background: #1b1035;
    border-radius: 15px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);

    .face {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;

      &.face1 {
        box-sizing: border-box;
        padding: 20px;

        h2 {
          margin: 0;
          padding: 0;
        }

        .bonus {
          background-color: white;
          background-clip: text;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
        }

        .hote {
          background-clip: text;
          background-color: white;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
        }

        .niveau {
          background-clip: text;
          background-color: white;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
        }

        .jeux {
          background-clip: text;
          background-color: white;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
        }
      }

      &.face2 {
        transition: 0.5s;

        h2 {
          margin: 0;
          padding: 0;
          font-size: 5em;
          color: #fff;
          transition: 0.5s;
          text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          z-index: 10;
        }
      }
    }
  }

  .card:hover .face.face2 {
    height: 60px;

    h2 {
      font-size: 2em;
    }
  }

  .card:nth-child(1) .face.face2 {
    background-image: linear-gradient(
      40deg,
      #2f00ff 0%,
      #fc00ff 45%,
      #9900ff 100%
    );
    border-radius: 15px;
  }

  .card:nth-child(2) .face.face2 {
    background-image: linear-gradient(
      40deg,
      #5d14a6 0%,
      #dd00ff 45%,
      #ff00aa 100%
    );
    border-radius: 15px;
  }

  .card:nth-child(3) .face.face2 {
    background-image: linear-gradient(
      40deg,
      #7700ff 0%,
      #fc00ff 45%,
      #ff00d9 100%
    );
    border-radius: 15px;
  }

  .card:nth-child(4) .face.face2 {
    background-image: linear-gradient(
      40deg,
      #2f00ff 0%,
      #fc00ff 45%,
      #9900ff 100%
    );
    border-radius: 15px;
  }
}

.neon__divider {
  height: 4px;
  background: linear-gradient(90deg, rgba(128, 0, 128, 0) 0%, rgba(58, 3, 58, 0.8) 50%, rgba(128, 0, 128, 0) 100%);
  box-shadow: 0 10px 20px rgba(69, 1, 69, 0.8);
  border-radius: 2px;
  margin: 20px 0;
}

a {
  color: #ffffff;
  text-decoration: none;
}

@media screen and (max-width: 768px) {

  .container {
    padding: 20px;
  }

  .card {
    width: calc(50% - 35px);
  }

  .card:nth-child(odd) {
    margin-right: 35px;
  }

  .card:nth-child(even) {
    margin-left: 35px;
  }

  .card:nth-child(1) .face.face2 {
    background-image: linear-gradient(
      40deg,
      #2f00ff 0%,
      #fc00ff 45%,
      #9900ff 100%
    );
    border-radius: 15px;
  }

  .card:nth-child(2) .face.face2 {
    background-image: linear-gradient(
      40deg,
      #5d14a6 0%,
      #dd00ff 45%,
      #ff00aa 100%
    );
    border-radius: 15px;
  } 

  .card:nth-child(3) .face.face2 {
    background-image: linear-gradient(
      40deg,
      #7700ff 0%,
      #fc00ff 45%,
      #ff00d9 100%
    );
    border-radius: 15px;
  } 

  .card:nth-child(4) .face.face2 {
    background-image: linear-gradient(
      40deg,
      #2f00ff 0%,
      #fc00ff 45%,
      #9900ff 100%
    );
    border-radius: 15px;
  }

  .left__align {
    font-size: 1.5rem;
  }

  .vip__header h1 {
    font-size: 1.8rem;
  }

  .vip__header p {
    font-size: 1rem;
  }

  .feature__container {
    flex-direction: column;
    gap: 1rem;
  }

  .feature__image {
    order: 2;
  }

  .feature {
    order: 1;
  }

  .support__container {
    flex-direction: column;
    align-items: center;
  }

  .support__left, .support__right {
    max-width: 100%;
    text-align: center;
  }

  .support__img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }

  .support__actions {
    align-items: center;
  }

  .support__btn {
    width: 100%;
  }

  .support__progress {
    width: 100%;
  }

  .support__availability {
    margin-top: 10px;
  }

  .vip__btn {
    font-size: 1rem;
  }

  .vip__btn::after {
    top: -5px;
    left: 3%;
    width: 95%;
    height: 20%;
  }

  .vip__btn::before {
    top: 80%;
    left: 3%;
    width: 95%;
    height: 20%;
  }

  .neon__divider {
    height: 2px;
  }

  .payment__img {
    max-width: 100%;
    
  }
  
}

.vip__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem;
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}

.vip__features {
  flex: 1;
  max-width: 500px;
}

.vip__feature__box {
  background: #1e293b;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  overflow: hidden;
}

.vip__feature__box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  border-color: rgba(59, 130, 246, 0.2);
}

.vip__feature__box h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #f1f5f9;
}

.vip__feature__description {
  margin: 1rem 0 0;
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.vip__feature__box.active {
  border-color: #3b82f6;
  background-color: #1e293b;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.vip__feature__box.active .vip__feature__description {
  opacity: 1;
  max-height: 200px;
  margin-top: 1rem;
}

.vip__progress__bar {
  height: 4px;
  background-color: #334155;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  overflow: hidden;
}

.vip__feature__box.active .vip__progress__bar {
  display: block;
}

.vip__progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  transition: width 0.1s linear;
}

.vip__image__container {
  flex: 1;
  position: sticky;
  top: 6rem;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.vip__feature__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.vip__feature__image.active {
  opacity: 1;
}

@media (max-width: 1024px) {
  .vip__container {
    flex-direction: column;
    padding: 2rem;
  }
  
  .vip__features {
    max-width: 100%;
  }
  
  .vip__image__container {
    position: relative;
    top: 0;
    width: 100%;
    height: 400px;
  }
}