/*body {
	font-family: "Space Grotesk", sans-serif;
}

h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .space-header-menu ul.main-menu li a {
	font-family: "Epunda Slab", sans-serif;
}

.space-header {
	background-image: linear-gradient(rgb(47, 45, 47) 0%, rgb(55, 52, 55) 100%);
}*/

.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: 55px; 
	top: 35px;
	transform: translateY(-50%);
	z-index: 5;
}

.auth-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:155px;
    height:40px;
    padding:0 26px;
    border-radius:16px;
    text-decoration:none;
    font-family:Inter,sans-serif;
    font-size:15px;
    font-weight:700;
    transition:
        transform .22s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.auth-btn .btn-left,
.auth-btn .btn-right{
    display:none;
}

.auth-btn .btn-center{
    position:relative;
    z-index:2;
    white-space:nowrap;
}

.login-btn{

    color:#151515;

    background:
        linear-gradient(
            to bottom,
            #ffd91a 0%,
            #ffcf0e 45%,
            #ffbc00 100%
        );

    border:1px solid #d49d00;

    box-shadow:
        0 4px 0 #b97d00,
        0 8px 18px rgba(255,188,0,.28);
}

.login-btn:hover{

    transform:scale(1.03);

    background:
        linear-gradient(
            to bottom,
            #ffe54a,
            #ffd318,
            #ffc100
        );

    box-shadow:
        inset 0 8px 14px rgba(255,255,255,.38),
        inset 0 -8px 12px rgba(255,177,0,.18),
        0 4px 0 #b97d00,
        0 10px 22px rgba(255,188,0,.38);
}

.register-btn{

    color:#222;

    background:
        linear-gradient(
            to bottom,
            #ffffff 0%,
            #f9f9f9 45%,
            #eeeeee 100%
        );

    border:1px solid #d8d8d8;

    box-shadow:
        0 4px 0 #b5b5b5,
        0 8px 18px rgba(255,255,255,.18);
}

.register-btn:hover{

    transform:scale(1.03);

    background:
        linear-gradient(
            to bottom,
            #ffffff,
            #fafafa,
            #ececec
        );

    box-shadow:
        inset 0 8px 14px rgba(255,255,255,.75),
        inset 0 -8px 12px rgba(0,0,0,.08),
        0 4px 0 #b5b5b5,
        0 10px 22px rgba(255,255,255,.22);
}

@media (max-width:768px){

    .auth-buttons{
        gap:10px;
		top: 50%;
    }

    .auth-btn{
        min-width:138px;
        height:42px;
        padding:0 20px;
        font-size:14px;
        border-radius:14px;
    }

}

@media (max-width:480px){

    .auth-buttons{
        flex-direction:column;
        width:100%;
    }

    .auth-btn{
        width:100%;
        min-width: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;
    flex-direction:column;
    min-height:285px;

    padding:34px;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.08);

    background:#11141d;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

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

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:120px;

    opacity:.95;

    pointer-events:none;
}

.contact-card:nth-child(1)::before{
    background:
        linear-gradient(
            180deg,
            rgba(53,78,255,.55),
            rgba(53,78,255,0)
        );
}

.contact-card:nth-child(2)::before{
    background:
        linear-gradient(
            180deg,
            rgba(0,194,255,.45),
            rgba(0,194,255,0)
        );
}

.contact-card:nth-child(3)::before{
    background:
        linear-gradient(
            180deg,
            rgba(255,196,0,.40),
            rgba(255,196,0,0)
        );
}

.contact-card:hover{

    transform:translateY(-8px);

    border-color:#ffcb12;

    box-shadow:
        0 20px 45px rgba(0,0,0,.35);
}

.contact-card .icon{

    width:64px;
    height:64px;

    border-radius:18px;

    background:#ffc81d;

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

    margin-bottom:26px;

    position:relative;

    z-index:2;
}

.contact-card .icon i{

    color:#111;

    font-size:30px;
}

.contact-card .content{

    display:flex;
    flex-direction:column;

    height:100%;

    position:relative;

    z-index:2;
}

.contact-card h3{

    margin:0 0 18px;

    color:#fff;

    font-size:34px;

    font-weight:800;

    line-height:1.1;
}

.contact-card p{

    margin:0;

    color:#d3d8ea;

    font-size:17px;

    line-height:1.7;

    flex:1;
}

/* ==========================================================
   BUTTON
========================================================== */

.chat-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:34px;
    width:270px;
    height:62px;
    border-radius:16px;
    background:
        linear-gradient(
            180deg,
            #ffd73d,
            #ffc400
        );
    color:#111(!important);
    font-size:20px;
    font-weight:800;
    text-decoration:none(!important);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
    box-shadow:
        inset 0 2px rgba(255,255,255,.35),
        0 8px 0 #c58f00,
        0 18px 35px rgba(255,196,0,.22);
}


.chat-btn i{

    transition:transform .25s ease;

    font-size:18px;
}


.chat-btn:hover{

    transform:translateY(-2px);

    box-shadow:
        inset 0 2px rgba(255,255,255,.35),
        0 10px 0 #c58f00,
        0 22px 40px rgba(255,196,0,.32);
}


.chat-btn:hover i{

    transform:translateX(5px);
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:900px){

    .contact-wrapper{

        grid-template-columns:1fr;
    }

    .contact-card{

        min-height:auto;
    }

}

@media (max-width:600px){

    .contact-card{

        padding:28px;
    }

    .contact-card h3{

        font-size:28px;
    }

    .contact-card p{

        font-size:16px;
    }

    .chat-btn{

        font-size:17px;
    }

}

/*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: #f8cb12;
	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{
    border-bottom:1px solid rgba(255,255,255,.06);
}

.faq-item:last-child{
    border-bottom:none;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    margin-bottom: 28px;
}

.faq-question{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:22px 0;
    background:transparent;
    border:none;
    cursor:pointer;
    text-align:left;
    font-family:"Sofia Sans",sans-serif;
    font-size:19px;
    font-weight:700;
    line-height:1.3;
    color:#ffffff;
    transition:color .25s ease;
}

.faq-question:hover{
    color:#ffd320;
}

.faq-question[aria-expanded="true"]{
    color:#ffd320;
}

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

.faq-answer p{
    margin:0;
    padding-top:2px;
    color:#c7d0dc;
    font-size:17px;
    line-height:1.45;
}

.faq-icon{
    position:relative;
    width:18px;
    height:18px;
    flex-shrink:0;
}

.faq-icon::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:18px;
    height:2px;
    background:#ffffff;
    border-radius:2px;
    transform:translate(-50%,-50%);
    transition:.25s ease;
}

.faq-icon::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:2px;
    height:18px;
    background:#ffffff;
    border-radius:2px;
    transform:translate(-50%,-50%);
    transition:.25s ease;
}

.faq-question[aria-expanded="true"] .faq-icon::after{
    opacity:0;
    transform:translate(-50%,-50%) scaleY(.2);
}

.faq-question[aria-expanded="true"] .faq-icon::before{
    background:#ffd320;
}

@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: 14px;
    }
}