.space-header {
	background-color: #0A234F;
}

.is-layout-flex {
    display: grid!important;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: baseline;
}

@media (max-width: 880px) {
	.is-layout-flex{
		display:flex!important;	
	}
	
	.main_banner {
		min-height:300px!important;	
	}
}

/* ===== HEADER AUTH BUTTONS ===== */

.auth-buttons {
	display: flex;
	align-items: center;
	gap: 12px;
	position: absolute;
	right: 25px; 
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
}

.auth-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 
    background .18s ease,
    transform .18s ease;
    
  -webkit-font-smoothing: antialiased;
  position: relative;
}

.login-btn {
  background: #0f5cff;
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 1px 0 rgba(0,0,0,.25);
}

.login-btn:hover {
  background: #0b4fe2;
}

.join-btn {
  background: #c6e414;
  color: #081018;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 1px 0 rgba(0,0,0,.18);
}

.join-btn:hover {
  background: #b1cd10;
}

@media (max-width: 1200px) {
	.auth-buttons {
		top: 30px;
		right: 70px;
	}

	.auth-buttons a {
		height: 30px;
		padding: 0 18px;
		font-size: 14px;
	}
}

@media (max-width: 880px) {
	.auth-buttons {
		position: absolute;
		top: 30px;
		right: 0px;
		transform: translate(-50%, -50%);
		gap: 8px;
	}

	.auth-buttons a {
		height: 26px;
		padding: 0 14px;
		font-size: 10px;
    text-align: center;
	}
}

@media (max-width: 470px) {
  .auth-buttons .login-btn {
    display: none;
  }
	
	  .auth-buttons {
    right: 20px!important;
  }
}

/* Contacts */
.contact-wrapper {
    max-width: 1150px;
    margin: 10px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.frame { 
    width: 100%;
    padding: 3em 4em 3em 3em;
    display: flex;
    align-items: center;
    gap: 35px;
    position: relative;

    background:
        linear-gradient(#050505, #050505) padding-box,
        linear-gradient(
            180deg,
            rgba(187, 255, 0, 0.95) 0%,
            rgba(182, 255, 43, 0.45) 45%,
            rgba(182, 255, 43, 0.08) 100%
        ) border-box;

    border: 2px solid transparent;
    border-radius: 20px;

    box-shadow:
        0 0 10px rgba(187,255,0,0.18),
        0 0 28px rgba(187,255,0,0.08);

    transition: all .35s ease;
}

.frame:hover {
    transform: translateY(-4px);

    box-shadow:
        0 0 18px rgba(187,255,0,0.28),
        0 0 42px rgba(187,255,0,0.14);
}

.icon {
    min-width: 70px;
    height: 70px;

    background:
        radial-gradient(circle at 30% 30%,
            #efff9d 0%,
            #d4ff3b 28%,
            #b7f000 65%,
            #7fc300 100%
        );

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        inset 0 2px 10px rgba(255,255,255,0.35),
        0 0 12px rgba(199,255,0,0.45),
        0 0 28px rgba(180,255,0,0.25);
}

.icon i {
    color: #111;
    font-size: 26px;
}

.content h3 {
    color: #d7ff45;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: .5px;

    text-shadow:
        0 0 8px rgba(212,255,43,0.35);
}

.content p {
    color: #eaeaea;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
}

.content a {
    color: #d7ff45;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: .3s;
}

.content a:hover {
    color: #f3ff9f;
}

@media (max-width: 768px) {

    .frame {
        padding: 2em 1.5em;
        gap: 20px;
        border-radius: 18px;
    }

    .icon {
        min-width: 58px;
        height: 58px;
    }

    .icon i {
        font-size: 22px;
    }

    .content h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .content p {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 560px) {

    .frame {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.6em 1.2em;
    }

    .content h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {

    .frame {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.2em;
        gap: 20px;
    }

    .icon {
        width: 60px;
        height: 60px;
    }

    .icon i {
        font-size: 22px;
    }

    .content h3 {
        font-size: 24px;
    }

    .content p {
        font-size: 15px;
    }
}

.chat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #fff (!important);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #c8ff2f 0%,
    #b6f11d 35%,
    #9ee000 70%,
    #d8ff5c 100%
  );
  box-shadow:
    0 4px 12px rgba(180, 255, 40, 0.22),
    0 0 22px rgba(180, 255, 40, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.35);
  transition:
    transform .22s ease,
    filter .22s ease,
    box-shadow .22s ease;
}

.chat-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255,255,255,0.18) 35%,
      rgba(255,255,255,0.05) 55%,
      transparent 100%
    );
  transform: translateX(-120%);
  transition: transform .7s ease;
}

.chat-btn i {
  font-size: 14px;
  color: #000;
  transform: rotate(-15deg);
  position: relative;
  z-index: 2;
}

.chat-btn span {
  position: relative;
  z-index: 2;
}

.chat-btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
  box-shadow:
    0 8px 20px rgba(180, 255, 40, 0.28),
    0 0 28px rgba(180, 255, 40, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

.chat-btn:hover::before {
  transform: translateX(120%);
}

.chat-btn:active {
  transform: translateY(0);
  box-shadow:
    0 3px 10px rgba(180, 255, 40, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

/*Key Info Main*/

.game-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.game-info-item {
  position: relative;
  background: #202427;
  border-radius: 12px;
  padding: 18px 18px 18px 52px;
}

.game-info-item i {
  position: absolute;
  top: 23px;
  left: 18px;
  font-size: 18px;
  color: #c6e414  ; 
}

.game-info-item .label {
  display: block;
  font-size: 13px;
  color: #FFF ;
  margin-bottom: 6px;
}

.game-info-item .value {
  font-size: 16px;
  font-weight: 600;
  color: #7f8c8d ;
}

.game-info-item small {
	font-size: 13px;
  font-weight: 400;
  color: #4b5563;
}

@media (max-width: 430px) {
  .game-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .game-info-item {
    padding: 14px 14px 14px 48px;
  }

  .game-info-item i {
    top: 18px;
    left: 14px;
    font-size: 16px;
  }

  .game-info-item .label {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .game-info-item .value {
    font-size: 15px;
    line-height: 1.35;
    word-break: break-word;
  }

  .game-info-item small {
    display: block;
    margin-top: 2px;
  }
}

/*pulse button*/

.cta-wrapper {
  margin: 32px 0;
  text-align: center;
}

.cta-pulse-btn {
  display: inline-block;
  width: 100%;
  max-width: 720px;
  padding: 18px 28px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none !important;
  color: #041018 !important;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  border: 3px solid rgba(191, 255, 0, 0.75);
  background: linear-gradient(
    120deg,
    #8dff00 0%,
    #c9ff38 25%,
    #8dff00 50%,
    #d9ff5f 75%,
    #8dff00 100%
  );
  background-size: 220% 220%;
  box-shadow:
    0 0 0 0 rgba(177, 255, 0, 0.45),
    0 0 22px rgba(177, 255, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 10px 26px rgba(0,0,0,0.42);
  transition:
    transform .22s ease,
    filter .22s ease,
    box-shadow .22s ease;
  animation:
    neonFlow 7s ease infinite,
    pulseGlow 2.6s ease-out infinite;
}

.cta-pulse-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      transparent 20%,
      rgba(255,255,255,0.22) 45%,
      transparent 70%
    );
  transform: translateX(-140%);
}

.cta-pulse-btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
  box-shadow:
    0 0 0 0 rgba(177, 255, 0, 0.42),
    0 0 26px rgba(177, 255, 0, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 14px 34px rgba(0,0,0,0.5);
  color: #041018 !important;
}

@keyframes neonFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow:
      0 0 0 0 rgba(177, 255, 0, 0.34),
      0 0 18px rgba(177, 255, 0, 0.18),
      0 10px 26px rgba(0,0,0,0.42);
  }
  70% {
    box-shadow:
      0 0 0 16px rgba(177, 255, 0, 0),
      0 0 28px rgba(177, 255, 0, 0.22),
      0 10px 26px rgba(0,0,0,0.42);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(177, 255, 0, 0),
      0 0 18px rgba(177, 255, 0, 0.18),
      0 10px 26px rgba(0,0,0,0.42);
  }
}

@media (max-width: 768px) {
  .cta-pulse-btn {
    font-size: 16px;
    padding: 16px 22px;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .cta-pulse-btn {
    font-size: 15px;
    padding: 14px 18px;
    border-radius: 16px;
  }
}

/*Tables*/

.dark-table {
	table-layout: fixed;
	padding-bottom: 0!important;
  max-width: 1000px;
  margin: 0 auto !important;
  border-collapse: separate;
  border-spacing: 0 10px; 
}

.dark-table thead th {
  background-color: #222222;
  padding: 12px 20px;
  text-align: center!important;
  color: #c6e414;
	font-size: clamp(10px, 2.8vw, 16px);
}

.dark-table tbody tr {
  background-color: #333333; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s, transform 0.3s;
}

.dark-table tbody td {
  padding: 12px 20px;
	font-size: clamp(10px, 2.8vw, 14px);
	vertical-align:middle!important;
}

/*Image Button*/

.image-with-btn {
  position: relative;
  width: 600px;
  max-width: 100%;
  aspect-ratio: 4 / 3; 
  margin: 0 auto;	
}

.image-with-btn img {
  object-fit: cover;
  display: block;
  pointer-events: none; 
	border-radius: 10px;
}

.image-btn {
  position: absolute;
  bottom: 50px;              
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 18px;
  font-size: 30px;
  font-weight: 600;
  white-space: nowrap;
  color: #000!important;
  background: linear-gradient(
    120deg,
    #8dff00 0%,
    #c9ff38 25%,
    #8dff00 50%,
    #d9ff5f 75%,
    #8dff00 100%
  );
  border-radius: 10px;
  text-decoration: none!important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.image-btn:hover {
  transform: translateX(-50%) translateY(-2px);
  background: linear-gradient(
    120deg,
    #8dff00 0%,
    #c9ff38 25%,
    #8dff00 50%,
    #d9ff5f 75%,
    #8dff00 100%
  );
  box-shadow:
    inset 0 6px 14px rgba(0,0,0,0.35),
    inset 0 -3px 8px rgba(255,255,255,0.2);
	color: #0a234f!important;
}

@media (max-width: 768px) {
  .image-btn {
    font-size: 21px;
    padding: 9px 16px;
    bottom: 50px;
  }
	.image-with-btn { 
		height:500px;
	}
	.image-with-btn img {
		max-height:450px;
	}
}

@media (max-width: 480px) {
  .image-btn {
    font-size: 18px;
    padding: 8px 14px;
    bottom: 50px;
  }
}

.space-title-box-gray {
	background-color: #202427!important;
}


/*Review*/

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch; 
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column; 
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  color: #111827;
  min-height: 360px; 
}

.card-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%!important;
  object-fit: cover;
}

.name {
  font-weight: 700;
  font-size: 16px;
}

.meta {
  font-size: 13px;
  color: #6b7280;
}

.meta i {
  margin: 0 4px;
}

.rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px 0 10px;
}

.rating-row img {
  height: 20px;
}

.date {
  font-size: 13px;
  color: #6b7280;
}

.title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.text {
  font-size: 15px;
  line-height: 1.55;
  color: #111827;
}

.badges {
  margin-top: 14px;
}

.badge-date {
  background: #e5e7eb;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  display: inline-block;
}

.badge-muted {
  background: #f3f4f6;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: #6b7280;
  margin-left: 8px;
}

.spacer {
  flex-grow: 1;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #374151;
}

.footer-left span {
  margin-right: 18px;
  cursor: pointer;
}

.footer-left span:hover {
  text-decoration: underline;
}

.footer i {
  cursor: pointer;
}

hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 16px 0;
}

.space-header-wrap {box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0);}
.space-header-wrap.fixed {box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);}

/*FAQ*/

.faq-item{
	position:relative;
	border-bottom:2px solid #222;
	padding:18px 0;
}

.faq-question{
	width:100%;
	background:none;
	border:none;
	text-align:left;
	font-size:22px;
	font-weight:600;
	color:#fff;
	padding-left:60px;
	cursor:pointer;
}

.faq-icon{
	position:absolute;
	left:0;
	top:16px;
	width:40px;
	height:40px;
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:8px;
	background: linear-gradient(
    120deg,
    #8dff00 0%,
    #c9ff38 25%,
    #8dff00 50%,
    #d9ff5f 75%,
    #8dff00 100%);
}

.faq-icon::before{
	content:"+";
	font-size:24px;
	font-weight:700;
	color:#000;
	display:inline-block;
	transition: transform .35s cubic-bezier(.4,.8,.2,1);
}

.faq-item.active .faq-icon{
	background:#3a3a3a;
	border:2px solid #5a5a5a;
}

.faq-item.active .faq-icon::before{
	transform:rotate(45deg);
	color:#fff;
}

.faq-answer{
	max-height:0;
	overflow:hidden;
	transition:max-height .35s ease;
	margin-left:60px;
	color:#ddd;
}

.faq-item.active .faq-answer{
	max-height:300px;
	margin-top:12px;
}

/*Text & Image*/

  .text-image-container {
    display: flex;
    align-items: center;    
    justify-content: space-between;
    gap: 20px;     
    flex-wrap: wrap; 
  }

  .text-block {
    flex: 1 1 400px;          
    font-size: 1rem;
    line-height: 1.5;
  }

  .image-block {
    flex: 1 1 300px;          
    max-width: 100%;
  }

  .image-block img {
    width: 100%;             
    height: auto;
    display: block;
    border-radius: 8px;      
  }

  @media (max-width: 768px) {
    .text-image-container {
      flex-direction: column; 
      gap: 15px;
    }

    .text-block, .image-block {
      flex: 1 1 100%;
    }
  }
		
	/*Dark Cover*/

.hero-cover {
  position: relative;
  min-height: 420px;
}

.hero-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.hero-cover img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 420px;
	top: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  color: #ffffff;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .hero-cover {
    min-height: 300px;
  }

  .hero-content {
    min-height: 300px;
  }

  .hero-title {
    font-size: 28px;
  }
}

.space-footer-area.space-widget a {
	color: #fff;
	text-decoration: none;
}

.space-footer-top {
	padding: 0;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
  padding: 16px 20px;
  border-radius: 6px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
}

.info-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 50px;
  background: #555;
}

.info-icon {
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

.info-box p {
  margin: 0;
}
