@font-face {
    font-family: OpenSans-Regular;
    src: url('../fonts/OpenSans-Regular.ttf');
}

@font-face {
    font-family: OpenSans-Medium;
    src: url('../fonts/OpenSans-Medium.ttf');
}

@font-face {
    font-family: OpenSans-SemiBold;
    src: url('../fonts/OpenSans-SemiBold.ttf');
}

@font-face {
    font-family: OpenSans-Bold;
    src: url('../fonts/OpenSans-Bold.ttf');
}

@font-face {
    font-family: YesevaOne-Regular;
    src: url('../fonts/YesevaOne-Regular.ttf');
}

:root {
    --theme-color-1: #7fff00;
    --theme-color-2: #0d0103;
    --theme-color-3: #1a2d00;
    --theme-color-4: #1a0a08;
    --bg-white: #ffffff;
    --bg-black: #000000;
    --font-color: #ffffff;
    --heading-color: #141414;
    --font-white: #ffffff;
    --font-black: #000000;
    --bg-color1: #19191a;
}

body {
    background-color: var(--theme-color-2);
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 25px;
    font-family: 'OpenSans-Regular', sans-serif;
    font-weight: normal;
    color: var(--font-color);
}


h1,
h2,
h3 {
    color: var(--font-color);
    margin-bottom: 0;
    font-family: 'OpenSans-Bold', sans-serif;
    font-weight: normal;
}

h4,
h5 {
    color: var(--font-color);
    margin-bottom: 0;
    font-family: 'OpenSans-SemiBold', sans-serif;
    font-weight: normal;
}

p {
    margin-bottom: 0;
}

a,
a:hover,
a:active,
a:focus {
    color: inherit;
    text-decoration: none;
}

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

.theme-btn {
    border-radius: 6px;
    height: 46px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding: 10px 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'OpenSans-Regular', sans-serif;
    font-weight: normal;
}

.btn-main {
    color: var(--font-white);
    background-color: var(--theme-color-2);
    transition: all .5s ease-out;
    border: 1px solid var(--theme-color-1);
    white-space: nowrap;
}

.btn-main:hover {
    background-position: left bottom;
    color: #fff;
    background-color: #623819;
}

.main-content-container {
    width: 100%;
    position: relative;
    display: inline-block;
}

#loading {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: fixed;
	display: block;
	background-color: #fff;
	z-index: 9999;
	text-align: center;
}

#loading-image {
	position: absolute;
	top: 40%;
	z-index: 999;
	transform: translate(-50%);
	background-color: #fff;
	display: inline-block;
}

input:hover, input:focus, input:active{
    box-shadow: none;
    outline: none;
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    background: transparent;
    box-shadow: transparent;
    transition: none !important;
    height: 75px;
} 

.navbar-dark .navbar-nav .nav-link{
    color: var(--font-white);
    font-family: 'OpenSans-Regular', sans-serif;
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.dropdown .nav-link:after{
    font-family: "Fontawesome", sans-serif; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar.fixed-top{
    position: fixed;
    background-color: var(--bg-white);
    transition: all 0.35s ease;
    border-bottom: 1px solid #dee2e6;
}

.navbar.fixed-top .nav-link{
    color: var(--font-black);
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-1);
}

.navbar.fixed-top .nav-link:hover{
    color: var(--theme-color-1);
}

.nav-item.search .btn-main{
    white-space: nowrap;
}

.navbar .navbar-brand .white{
    display: block;
}

.navbar .navbar-brand .black{
    display: none;
}

.navbar.fixed-top .navbar-brand .white{
    display: none;
}

.navbar.fixed-top .navbar-brand .black{
    display: block;
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.dropdown-menu{
    min-width: 12rem;
    transition: ease-in-out 0.3s;
    border: none;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
}

.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--font-black);
    font-size: 16px;
    font-family: 'OpenSans-Regular', sans-serif;
    font-weight: normal;
    transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
}

.dropdown-menu li a:hover{
    color: var(--theme-color-1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.topbar{
    background-color: var(--bg-black);
    padding: 12px 0px;
}

.topbar-contact-wrapper ul li{
    display: inline-block;
    margin-right: 15px;
}

.topbar-contact-wrapper ul li a{
    color: var(--font-white);
}

.topbar-contact-wrapper ul li a i{
    color: var(--theme-color-1);
    margin-right: 10px;
}

.topbar-social{
    text-align: right;
    display: flex;
}

.topbar-social li{
    display: inline-block;
    margin-left: 5px;
}

.topbar-social li a{
    color: var(--font-black);
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--font-white);
    border-radius: 5px;
}

.topbar-contact-wrapper{
    position: relative;
    margin-right: 2rem;
}

.navbar-brand img{
    width: 140px;
    max-width: 140px;
    max-height: 60px;
    height: auto;
    object-fit: contain;
}

.header-btns{
    display: flex;
    align-items: center;
}

.header-btns a{
    margin-left: 15px;
}

.header-btns a:first-child{
    margin-left: 0px;
}

.banner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url('../images/banner.png');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    height: 650px;
    overflow: hidden;
}

.banner-container::before{
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner-image-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.banner-small-heading{
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'OpenSans-Medium', sans-serif;
}

.banner-heading{
    font-size: 54px;
    color: var(--font-white);
    margin-bottom: 15px;
    font-family: 'YesevaOne-Regular', sans-serif;
}

.banner-heading span{
    color: var(--theme-color-1);
}

.banner-description{
    font-size: 18px;
    color: var(--font-white);
    margin-bottom: 20px;
}

section{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 60px 0px;
    overflow: hidden;
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.section-heading-wrapper img{
    width: 20px;
    margin-right: 15px;
}

.section-heading{
    font-size: 26px;
    color: var(--theme-color-5);
    margin-bottom: 0px;
    text-align: center;
}

.section-heading span{
    font-family: 'OpenSans-Regular', sans-serif;
}

.section-description{
    color: var(--font-black);
    text-align: center;
    font-size: 18px;
}

#my-map-canvas img {
    max-height: none;
    max-width: none !important;
    background: none !important;
}

.topbar-container-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.about-content-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 9rem;
    position: relative;
}

.about-content-wrapper h2{
    font-size: 32px;
    font-family: 'YesevaOne-Regular', sans-serif;
    margin-bottom: 20px;
}

.about-content-wrapper p{
    margin-bottom: 20px;
}

.about-coins-img{
    position: absolute;
    right: 0;
    top: 50%;
    width: 200px;
    transform: translate(25%, -50%);
}

.about-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    position: relative;
    z-index: 11;
}

.about-image-wrapper::before{
    content: '';
    position: absolute;
    background-image: url('../images/about-bg.png');
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-position: top;
    background-size: contain;
    z-index: 12;
}

.games-tabs-wrapper .nav-item .nav-link{
    background-color: transparent;
    color: var(--font-white);
    padding: 0px;
    padding-bottom: 8px;
    border-radius: 0px;
}

.games-tabs-wrapper .nav-item{
    margin-right: 20px;
    position: relative;
}

/* .games-tabs-wrapper .nav-pills .nav-link.active{
    border-bottom: 2px solid var(--theme-color-1);
} */

.games-tabs-wrapper .nav-pills .nav-link.active::after{
    content: '';
    position: absolute;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--theme-color-1);
    bottom: -3px;
}

.games-tabs-wrapper .tab-content{
    margin-top: 2rem;
}

.games-image-wrapper{
    width: 100%;
    position: relative;
    display: block;
    border-radius: 6px;
    overflow: hidden;
    height: 240px;
}

.games-image-wrapper.white{
    border: 2px solid #7c7c7c;
}

.games-image-wrapper.orange{
    border: 2px solid var(--theme-color-1);
}

.games-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.games-image-wrapper:hover img{
    transform: scale(1.05);
}

.winners-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.winners-image{
    width: 80px;
    min-width: 80px;
    height: 80px;
    margin-right: 15px;
}

.winners-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.winners-info p{
    font-size: 14px;
}

.winners-info h3{
    font-size: 16px;
    margin: 5px 0px;
}

.winners-info h2{
    font-size: 20px;
    color: var(--theme-color-1);
}

.winners-info h2 span{
    font-family: 'OpenSans-Regular', sans-serif;
}

.features-list{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 2rem;
}

.features-list li{
    margin-bottom: 30px;
}

.features-list li:last-child{
    margin-bottom: 0px;
}

.features-list-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.features-list-icon{
    width: 60px;
    min-width: 60px;
    height: 60px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, var(--theme-color-3), var(--theme-color-4));
    margin-right: 15px;
    border-radius: 50%;
}

.features-list-content h3{
    font-size: 20px;
    color: var(--theme-color-1);
    margin-bottom: 10px;
}

.features-content-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.features-content-wrapper h2 {
    font-size: 32px;
    font-family: 'YesevaOne-Regular', sans-serif;
    margin-bottom: 20px;
}

.features-container{
    height: 100%;
}

.features-image-wrapper{
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.features-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.howitworks-wrapper{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.howitworks-wrapper h2{
    font-size: 32px;
    font-family: 'YesevaOne-Regular', sans-serif;
    margin-bottom: 20px;
}

.howitworks-wrapper hr{
    background-color: var(--theme-color-1);
    color: var(--theme-color-1);
    width: 100%;
    height: 1px;
    opacity: 1;
    margin-top: 0;
}

.howitworks-wrapper ul{
    margin-top: 1rem;
}

.howitworks-wrapper ul li{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.howitworks-wrapper ul li img{
    margin-right: 15px;
}

.howitworks-wrapper a{
    margin-top: 2rem;
}

.how-it-works-container{
    background-image: url('../images/how-it-bg-1.png');
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

footer{
    width: 100%;
    position: relative;
    display: inline-block;
    padding-top: 3rem;
    background-color: var(--bg-black);
}

.footer-top-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand img{
    width: 180px;
}

.footer-links li{
    margin: 0px 15px;
    display: inline-block;
}

.footer-social li{
    display: inline-block;
    margin-left: 5px;
}

.footer-social li a {
    color: var(--font-black);
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--font-white);
    border-radius: 5px;
}

.footer-bottom{
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 2rem;
    border-top: 1px solid var(--theme-color-1);
}

.testimonial-wrapper{
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    height: 100%;
    background: linear-gradient(to bottom, var(--theme-color-3), var(--theme-color-4));
    padding: 20px;
    border-radius: 12px;
}

.testimonial-image{
    width: 80px;
    min-width: 80px;
    height: 80px;
    margin-right: 15px;
}

.testimonial-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.testimonial-content h3{
    font-size: 20px;
    color: var(--theme-color-1);
    margin-bottom: 10px;
}

.testimonial-content h4{
    font-size: 14px;
    margin-bottom: 15px;
}

.middle-quote{
    position: absolute;
    bottom: -25px;
    width: 50px;
    right: 25px;
}

.faq-wrapper .accordion-item{
    margin-bottom: 20px;
    background-color: #1f1e1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--font-white);
    border-radius: 6px;
}

.faq-wrapper .accordion-button{
    background-color: #1f1e1a;
    border: none;
    color: var(--font-white);
    font-family: 'OpenSans-Medium', sans-serif;
    border-radius: 6px;
}

.faq-wrapper .accordion-button:not(.collapsed){
    box-shadow: none;
    background-color: var(--theme-color-3);
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.faq-wrapper .accordion-button:not(.collapsed)::after{
    background-image: none;
    content: '\f068';
    font-family: 'Fontawesome', sans-serif;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-wrapper .accordion-button::after{
    background-image: none;
    content: '\f067';
    font-family: 'Fontawesome', sans-serif;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
} 

.blog-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
}

.blog-image{
    width: 100%;
    height: 230px;
    position: relative;
    display: inline-block;
}

.blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.blog-content{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 20px 0px;
}

.blog-content h4{
    font-size: 16px;
    margin-bottom: 0px;
}

.blog-content a h3{
    color: var(--theme-color-1);
    font-size: 24px;
    margin: 15px 0px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

.blog-badge{
    width: auto;
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: linear-gradient(to bottom, var(--theme-color-3), var(--theme-color-4));
    padding: 5px 20px;
    border-radius: 30px;
}

.blog-info{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 0px;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.blog-info-item .item-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-info-item .item-inner i{
    margin-right: 5px;
}

/* ========================
   SECTION TITLE VARIANT
======================== */
.section-title {
    font-family: 'YesevaOne-Regular', sans-serif;
    font-size: 26px;
    color: var(--font-white);
}

.section-heading-wrapper.justify-content-center {
    justify-content: center;
}

.blog-section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    margin-bottom: 2rem;
    margin-top: -1rem;
}

/* ========================
   GAME CARDS
======================== */
.game-card-wrapper {
    width: 100%;
    margin-bottom: 0;
}

.game-card-title {
    text-align: center;
    margin-top: 8px;
    font-family: 'OpenSans-SemiBold', sans-serif;
    color: var(--theme-color-1);
    font-size: 14px;
}

/* ========================
   PARTNERS SECTION
======================== */
.partner-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.partner-logo-wrapper:hover {
    background: rgba(255, 255, 255, 0.12);
}

.partner-logo-wrapper img {
    width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(80%);
    opacity: 0.75;
    transition: all 0.3s ease;
}

.partner-logo-wrapper:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-name {
    color: var(--font-white);
    font-family: 'OpenSans-SemiBold', sans-serif;
    font-size: 14px;
    text-align: center;
}

/* ========================
   FOOTER NEW STRUCTURE
======================== */
.footer-col {
    padding: 1.5rem 1rem;
}

.footer-col h6 {
    font-family: 'OpenSans-Bold', sans-serif;
    font-size: 16px;
    color: var(--theme-color-1);
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 12px;
    line-height: 22px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 9px;
}

.footer-nav-list li a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-nav-list li a:hover {
    color: var(--theme-color-1);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin-bottom: 6px;
}

.footer-contact p a {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s ease;
}

.footer-contact p a:hover {
    color: var(--theme-color-1);
}

.footer-newsletter-label {
    font-family: 'OpenSans-SemiBold', sans-serif;
    color: var(--font-white) !important;
    margin-top: 12px;
    margin-bottom: 8px !important;
}

.footer-email-input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--theme-color-1);
    border-radius: 6px;
    color: var(--font-white);
    font-family: 'OpenSans-Regular', sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-email-input:focus {
    outline: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-message {
    font-size: 13px;
    margin-top: 6px;
    min-height: 18px;
}

/* ========================
   AGE VERIFICATION OVERLAY
======================== */
#age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

#age-overlay.active {
    display: flex;
}

#age-box {
    background: var(--theme-color-3);
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    border: 1px solid var(--theme-color-1);
}

.age-icon {
    display: inline-block;
    font-size: 48px;
    color: var(--theme-color-1);
    font-family: 'OpenSans-Bold', sans-serif;
    margin-bottom: 15px;
}

.age-content h4 {
    font-size: 22px;
    color: var(--font-white);
    margin-bottom: 12px;
    font-family: 'OpenSans-Bold', sans-serif;
}

.age-content p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
    font-size: 15px;
}

.age-btns {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-btns button {
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-family: 'OpenSans-SemiBold', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

#age-yes {
    background: var(--theme-color-1);
    color: var(--font-black);
}

#age-yes:hover {
    opacity: 0.85;
}

#age-no {
    background: transparent;
    color: var(--font-white);
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

#age-no:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ========================
   SCROLL TO TOP BUTTON
======================== */
.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--theme-color-1);
    color: var(--font-black);
    border: none;
    border-radius: 6px;
    font-size: 28px;
    cursor: pointer;
    z-index: 9990;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    opacity: 0.85;
}

/* ========================
   DISCLAIMER SECTION
======================== */
.disclaimer-section {
    background: rgba(255, 255, 255, 0.06);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 0;
}

.disclaimer-title {
    font-size: 14px;
    font-family: 'OpenSans-SemiBold', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    text-align: center;
}

.disclaimer-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    text-align: center;
    margin: 0;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================
   PAGE BANNER (sub-pages)
======================== */
.page-banner-container {
    width: 100%;
    background: linear-gradient(to right, var(--theme-color-3), var(--theme-color-4));
    padding: 90px 0 40px;
    position: relative;
    display: inline-block;
}

.page-banner-title {
    font-size: 34px;
    color: var(--font-white);
    font-family: 'YesevaOne-Regular', sans-serif;
    margin-bottom: 0;
}

/* ========================
   DETAIL PAGES (blog / game / policy)
======================== */
.detail-image {
    margin-bottom: 25px;
}

.detail-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 12px;
}

.detail-content {
    color: rgba(255, 255, 255, 0.85);
    line-height: 28px;
    font-size: 15px;
}

.detail-content h1,
.detail-content h2,
.detail-content h3 {
    color: var(--theme-color-1);
    margin-bottom: 12px;
    margin-top: 20px;
}

.detail-content p {
    margin-bottom: 14px;
}

.detail-sidebar {
    padding-left: 15px;
}

.sidebar-block {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 22px;
}

.sidebar-block h5 {
    font-size: 16px;
    color: var(--theme-color-1);
    margin-bottom: 0;
    font-family: 'OpenSans-Bold', sans-serif;
}

.sidebar-block hr {
    background-color: var(--theme-color-1);
    color: var(--theme-color-1);
    height: 1px;
    opacity: 0.3;
    margin: 10px 0 14px;
}

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

.sidebar-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

/* ========================
   SIDEBAR BLOG / GAME TILES
======================== */
.recent-blogs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    text-decoration: none;
    color: var(--font-white);
    transition: color 0.3s ease;
}

.recent-blogs:hover {
    color: var(--theme-color-1);
}

.recent-blogs .image-box {
    width: 68px;
    min-width: 68px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.recent-blogs .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-blogs .text {
    font-size: 13px;
    line-height: 18px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========================
   GAME DETAIL IFRAME
======================== */
.game-iframe-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.game-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ========================
   UTILITY HELPERS
======================== */
.gap-12 { gap: 12px; }
.fw-400 { font-family: 'OpenSans-Regular', sans-serif; }
.fw-500 { font-family: 'OpenSans-Medium', sans-serif; }
.fw-700 { font-family: 'OpenSans-Bold', sans-serif; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.br-4  { border-radius: 4px; }


.comp_details { display: none !important; }
