body, 
h1, 
h2, 
h3, 
.space-header-menu ul.main-menu li a, 
.space-mobile-menu-list ul li a,
.space-mobile-menu-copy,
.faq-question,
.space-title-box-h1 h1{
    font-family: 'Play', sans-serif;
}

.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;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 35px;
    padding: 0 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    cursor: pointer;
	  transform: scale(1);
  	transition: all 0.25s ease;
}

.login-btn {
  color: #c9cce3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.25s ease;
}

.login-btn:hover {
  color: #7f88ff;
}

.join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 22px 3px;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background-image:
    linear-gradient(
      180deg,
      #a8b0ff 0%,
      #8d97ff 18%,
      #7381ff 55%,
      #6270ff 100%
    );
  box-shadow:
    inset 0px -3px 0px 0px #39449E,
    inset 0px 2px 4px 0px rgba(255,255,255,0.18);
  transition:
    box-shadow .18s ease,
    filter .18s ease,
    transform .18s ease;
}

.join-btn:hover {
  box-shadow:
    inset 0px -3px 0px 0px #5563ef,
    inset 0px 2px 4px 0px rgba(255,255,255,0.18),
    0 0 18px rgba(117, 129, 255, 0.45),
    0 12px 24px rgba(255, 153, 51, 0.28);

  filter: brightness(1.03);
}

.join-btn:active {
  transform: translateY(1px);

  box-shadow:
    inset 0px -2px 0px 0px #5563ef,
    inset 0px 2px 6px 0px rgba(0,0,0,0.18);
}

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

	.auth-buttons a {
		height: 40px;
		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: 36px;
		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(122, 134, 255,0.8) 0%,
            rgba(122, 134, 255,0.25) 50%,
            rgba(122, 134, 255,0.05) 100%
        ) border-box;

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

    transition: all .35s ease;
}

.frame:hover {
    box-shadow:
        0 0 40px rgba(122, 134, 255,0.15),
        0 0 8px rgba(122, 134, 255,0.3);
    transform: translateY(-4px);
}

.icon {
    min-width: 70px;
    height: 70px;
background: radial-gradient(circle at 30% 30%, #a5b4fc, #7c3aed 60%, #4c1d95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        inset 0 3px 8px rgba(255,255,255,0.4),
        0 8px 20px rgba(212,175,55,0.3);
}

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

.content h3 {
    color: #7f88ff;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: .5px;
}

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

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

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

@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;
  gap: 10px;
  padding: 12px 22px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #6f7cff, #7a5cff);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
	font-family: 'Play', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(122, 92, 255, 0.35);
}

.chat-btn i {
  font-size: 14px;
  transform: rotate(-15deg);
}

.chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(122, 92, 255, 0.45);
}

.chat-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(122, 92, 255, 0.3);
}

/*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: #818eff  ; 
}

.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;
  }
}

/*Gold Buttons*/

.cta-btn {
  display: inline-block;
  width: 100%;
  max-width: 220px; 
  margin: 20px 0 0 0;
  padding: 13px 23px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;

  color: #1b1b1b;
  background: linear-gradient(180deg, #f6e08c 0%, #c8a94b 100%);
  border-radius: 50px;
  text-decoration: none!important;

  position: relative;
  overflow: hidden;

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);

  animation: pulseGlow 2.2s infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
	color: #000!important;
}

.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;

  color: #000!important;
  background:linear-gradient(135deg,#b89213,#f3db63);
		border:2px solid #cfae3b;
  border-radius: 20px;
  text-decoration: none!important;

  position: relative;
  overflow: hidden;

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);

  animation: pulseGlow 2.2s infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-pulse-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
	color: #000!important;
}

@keyframes pulseGlow {
  0% {
    box-shadow:
      0 0 0 0 rgba(200, 169, 75, 0.7),
      0 10px 24px rgba(0, 0, 0, 0.45);
  }
  70% {
    box-shadow:
      0 0 0 18px rgba(200, 169, 75, 0),
      0 10px 24px rgba(0, 0, 0, 0.45);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(200, 169, 75, 0),
      0 10px 24px rgba(0, 0, 0, 0.45);
  }
}

@media (max-width: 768px) {
  .cta-pulse-btn {
    font-size: 16px;
    padding: 16px 22px;
  }
	
	.cta-btn {
		margin: 10px 0 0 0;
    font-size: 16px;
    padding: 16px 22px;		
	}
}

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

/*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: #818eff;
	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(90deg, #6a00ff, #c300ff);
  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(270deg, #6a00ff, #c300ff);
  box-shadow:
    inset 0 6px 14px rgba(0,0,0,0.35),
    inset 0 -3px 8px rgba(255,255,255,0.2);
	color: #fff!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(135deg,#a8b0ff 0%, #8d97ff 18%, #7381ff 55%, #6270ff 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: 4px;
  background: #555;
}

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

.info-box p {
  margin: 0;
}

