.space-header {
	background-color: #061169;
}

.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-btn{
    display:flex;
    align-items:center;
    text-decoration:none;
    height:58px;
    flex-shrink:0;
}

.auth-btn .btn-left{
    width:27px;
    height:46px;
    flex-shrink:0;
}

.auth-btn .btn-center{
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 18px;
    font-family:'Play',sans-serif;
    font-size:19px;
    font-weight:700;
    font-style:italic;
    text-transform:uppercase;
    letter-spacing:-0.5px;
    color:#fff;
    text-shadow:
        0 1px 0 rgba(0,0,0,.35),
        0 2px 3px rgba(0,0,0,.25);
    white-space:nowrap;
}

.auth-btn .btn-right{
    width:33px;
    height:46px;
    flex-shrink:0;
}

.login-btn .btn-left{
    background:url('/wp-content/uploads/2026/06/log-left.webp')
    no-repeat center/100% 100%;
}

.login-btn .btn-center{
    background:url('/wp-content/uploads/2026/06/log-mid.webp')
    repeat-x center/auto 100%;
}

.login-btn .btn-right{
    background:url('/wp-content/uploads/2026/06/log-right.webp')
    no-repeat center/100% 100%;
}

.register-btn .btn-left{
    background:url('/wp-content/uploads/2026/06/reg-left.webp')
    no-repeat center/100% 100%;
}

.register-btn .btn-center{
    background:url('/wp-content/uploads/2026/06/reg-mid.webp')
    repeat-x center/auto 100%;
}

.register-btn .btn-right{
    background:url('/wp-content/uploads/2026/06/reg-right.webp')
    no-repeat center/100% 100%;
}

.auth-btn{
    transition:transform .2s ease;
}

.auth-btn:hover{
    transform:translateY(-1px);
}

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

@media (max-width:1280px){

    .auth-buttons{
		position: absolute;
		top: 30px;
		right: 0px;
		transform: translate(-50%, -50%);
        gap:10px;
    }

    .auth-btn{
        --btn-height:42px;
        --left-width:25px;
        --right-width:30px;
    }

    .auth-btn .btn-center{
        padding:0 14px;
        font-size:16px;
    }
}

@media (max-width:480px){
	
	  .auth-buttons .login-btn {
		display: none;
	  }

    .auth-buttons{
		right: 20px!important;
        width:100%;
        gap:8px;
    }

    .auth-btn{
        flex:1;
        --btn-height:38px;
        --left-width:22px;
        --right-width:27px;
    }

    .auth-btn .btn-center{
        padding:0 8px;
        font-size:14px;
        letter-spacing:0;
    }
}

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

.contact-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 32px 36px;
    border-radius: 16px;
    border: 1px solid rgba(72, 98, 255, .45);
    background:
        linear-gradient(rgba(23, 37, 131, .94), rgba(18, 31, 115, .94)),
        url("wp-content/uploads/2026/06/horizontal-bg.webp"); 
    background-repeat: repeat;
    background-position: center;
    background-size: auto;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.06),
        0 10px 24px rgba(0,0,0,.22);
    transition: .25s ease;
}

.contact-card::before{
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(rgba(36,57,170,.15),rgba(36,57,170,.15)),
        url("wp-content/uploads/2026/06/horizontal-bg.webp");

    background-repeat:repeat;
    background-size:420px auto;

    mix-blend-mode:soft-light;

    opacity:.35;

    pointer-events:none;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.06),
        0 14px 30px rgba(0,0,0,.28);
}

.contact-card .icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(
        180deg,
        #ffd972 0%,
        #ffc43d 55%,
        #f3a91d 100%
    );
    box-shadow:
        inset 0 2px 0 rgba(255,255,255,.45),
        0 4px 12px rgba(0,0,0,.25);
}

.contact-card .icon i {
    color: #27357d;
    font-size: 28px;
}

.contact-card .content {
    flex: 1;
}

.contact-card h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
}

.contact-card p {
    margin: 0;
    color: #b7c4ff;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500;
}

.chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(
        180deg,
        #8fd0ff 0%,
        #73b8ef 55%,
        #5ca0df 100%
    );
    box-shadow:
        inset 0 2px 0 rgba(255,255,255,.45),
        0 6px 14px rgba(0,0,0,.25);
    color: #fff!important;
    text-decoration: none!important;
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
}

.chat-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.chat-btn:active {
    transform: translateY(0);
}

.chat-btn i {
    font-size: 16px;
}

.chat-btn span {
    color: inherit;
}

.chat-btn span a {
    color: inherit !important;
    text-decoration: none !important;
}

@media (max-width: 768px) {

    .contact-card {
        gap: 22px;
        padding: 24px;
    }

    .contact-card .icon {
        width: 58px;
        height: 58px;
    }

    .contact-card .icon i {
        font-size: 24px;
    }

    .contact-card h3 {
        font-size: 28px;
    }

    .contact-card p {
        font-size: 16px;
        line-height: 1.6;
    }

}

@media (max-width: 576px) {

    .contact-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 22px 20px;
    }

    .contact-card .icon {
        width: 54px;
        height: 54px;
    }

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

    .contact-card h3 {
        font-size: 26px;
    }

    .contact-card p {
        font-size: 15px;
        line-height: 1.65;
    }

    .chat-btn {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }

}

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

.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-wrapper {
  margin: 32px 0;
  text-align: center;
}

.cta-pulse-btn {
  display: inline-block;
  width: 100%;
  max-width: 720px; 
  font-family:'Play',sans-serif;
  font-style:italic;
  padding: 18px 28px;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-transform:uppercase;
  letter-spacing:-0.5px;
  color:#fff!important;
  text-shadow:
        0 1px 0 rgba(0,0,0,.35),
        0 2px 3px rgba(0,0,0,.25);
  white-space:nowrap;
  background:
        linear-gradient(
            to bottom,
            #ffd867 0%,
            #ffbe1f 45%,
            #f0a400 70%,
            #cb7f00 100%
        );
  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:before {
    content: "";
    position: absolute;
    inset: 2px 2px auto 2px;
    height: 48%;
    border-radius: 12px 12px 0 0;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,.55),
        rgba(255,255,255,.18),
        rgba(255,255,255,0)
    );

    pointer-events: none;
}

.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: #d3a95a;
	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);}

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

/* ======   FAQ   ====== */

.faq-item {
    position: relative;
	margin-top: 5px;
    margin-bottom: 20px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item + .faq-item {
    position: relative;
}

.faq-item + .faq-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -7px;
    height: 1px;
    background: rgba(118, 168, 255, .25);
    box-shadow:
        0 0 3px rgba(118, 168, 255, .3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 12px 20px;
    border: 1px solid rgba(142, 208, 255, 0.55);
    border-radius: 4px;
    background: linear-gradient(
        to bottom,
        #1b57cb 0%,
        #144fc4 48%,
        #0d46b7 100%
    );
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        inset 0 -1px 0 rgba(255,255,255,.08);
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition:
        background .25s ease,
        border-color .25s ease;
}

.faq-item.active .faq-question {
    background: linear-gradient(
        to bottom,
        #84cbff 0%,
        #72bbea 48%,
        #63a6de 100%
    );
}

.faq-icon {
    flex-shrink: 0;
    width: 0;
    height: 0;
    margin-left: 16px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #fff;
    transition: transform .3s cubic-bezier(.4,0,.2,1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    will-change: max-height;
}

.faq-answer p {
    margin: 18px 0 0;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .faq-question {
        min-height: 52px;
        padding: 12px 16px;
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    .faq-question {
        min-height: 50px;
        padding: 12px 14px;
        font-size: 14px;
        line-height: 1.35;
    }

    .faq-icon {
        margin-left: 12px;
        border-left-width: 4px;
        border-right-width: 4px;
        border-top-width: 6px;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 1.55;
        margin-top: 14px;
    }
}

