
body{
margin:0;
font-family:Segoe UI;
background: #161d3a;
background-color: #0b214c;
color:#fff;
}
.main-navbar{
    background-color: #132a4b;
    width: 100%;
      position: fixed;  
      z-index: 999;
      padding: 10px 0px;
}
.container{
width:90%;
margin:auto;
max-width:1200px;
}
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
}

/* Menu */

.nav-links{
list-style:none;
display:flex;
align-items:center;
gap:20px;
margin:0;
padding:0;
}

.nav-links a{
text-decoration:none;
color:#ffffff;
font-weight:500;
transition:0.3s;
}

.nav-links a:hover{
color:#ffd600;
}
strong{
    color: #ffd600;
}
@media (max-width:768px) {
    .nav-links{
gap: 15px;
}
}
/* Buttons */

.btn{
padding:10px 22px;
border-radius:30px;
font-weight:bold;
}
.img-fluid{
max-width:100%;
height:auto;
}

.login{
border:2px solid #ffd600;
color:#ffd600;
}

.login:hover{
background:#ffd600;
color:#000;
}

.register{
background:#ffd600;
color:#000;
}

.register:hover{
transform:translateY(-3px);
}

/* Mobile menu */

.menu-toggle{
display:none;
font-size:28px;
color:#ffd600;
cursor:pointer;
}

/* Responsive */

@media (max-width:768px){

.nav-links{
position:absolute;
top:70px;
right:0;
background:#0d101c;
flex-direction:column;
width:100%;
padding:20px;
display:none;
box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.nav-links.show{
display:flex;
}

.menu-toggle{
display:block;
}

}
/* HERO */

.hero{
padding:120px 30px;
padding-bottom: 0;
}
.py-5{
  padding:120px 30px;
padding-bottom: 60px;  
}
.py{
padding:30px 30px;
}
@media (max-width:768px) {
    .hero{
padding:120px 12px;
padding-bottom: 0;
}
.py-5{
  padding:120px 12px;
padding-bottom: 60px;  
}
    .py-5{
  padding:100px 12px;
}
.py{
padding:60px 12px;
}
}
h1{
color:#ffd600;
font-size:36px;
margin-bottom:10px;
}

h2{
color:#ffd600;
font-size:30px;
}

h3{
color:#ffd600;
font-size:22px;
}

p{
color:#ffffff;
line-height:1.7;
font-size:14px;
}


/* Tablet */

@media (max-width:992px){

h1{
font-size:32px;
}

h2{
font-size:26px;
}

h3{
font-size:20px;
}

p{
font-size:14px;
}

}


/* Mobile */

@media (max-width:768px){

h1{
font-size:28px;
}

h2{
font-size:24px;
}

h3{
font-size:18px;
}

p{
font-size:13px;
}

}


/* Small Mobile */

@media (max-width:480px){

h1{
font-size:24px;
}

h2{
font-size:20px;
}

h3{
font-size:17px;
}

p{
font-size:13px;
}

}
a{
    text-decoration: none;
    color: #ffd600;
    font-weight: bold;
    font-size: 14px;
}
.btn{
display:inline-block;
margin:5px 3px;
padding:10px 24px;
border-radius:50px;
background:#ffd600;
color:#000 !important;
font-weight:bold;
text-decoration:none;
transition:0.3s;
}
ol,ul{
    padding: 0px 15px;
}
ol li{
    margin-top: 10px;
    font-size: 14px;
}
ul li{
    margin-top: 10px;
    font-size: 14px;
}
.btn:hover{
transform:translateY(-5px);
}

/* 3D CARDS */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:60px;
}

.card{
background:rgba(255,255,255,0.05);
padding:30px;
border-radius:20px;
backdrop-filter:blur(10px);
box-shadow:0 20px 40px rgba(0,0,0,0.5);
transition:0.4s;
}

.card:hover{
transform:translateY(-10px) scale(1.03);
box-shadow:0 30px 60px rgba(0,0,0,0.7);
}

.card h3{
color:#ffd600;
}

/* SECTION */

.section{
padding:80px 0;
}

.section h2{
text-align:center;
color:#ffd600;
margin-bottom:40px;
font-size:36px;
}
/* TESTIMONIAL SECTION */

.kwg-testimonial-wrapper{
max-width:1200px;
margin:auto;
padding:60px 20px;
}

.kwg-testimonial-subheading{
text-align:center;
color:#ffffff;
margin-bottom:40px;
}

/* ROW */

.kwg-testimonial-row{
display:flex;
gap:25px;
margin-bottom:25px;
flex-wrap:wrap;
}

/* CARD */

.kwg-testimonial-card{
flex:1;
min-width:300px;
background:rgba(255,255,255,0.05);
padding:25px;
border-radius:12px;
color:#ffffff;
box-shadow:0 10px 30px rgba(0,0,0,0.5);
transition:0.3s;
position:relative;
overflow:hidden;
}

/* Hover animation */

.kwg-testimonial-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(0,0,0,0.7);
}

/* Stars */

.kwg-testimonial-stars{
color:#ffd600;
font-size:18px;
margin-bottom:10px;
}

/* User */

.kwg-testimonial-user{
font-size:15px;
margin-bottom:12px;
color:#ffd600;
}

/* Text */

.kwg-testimonial-text{
font-size:15px;
line-height:1.6;
color:#ffffff;
}

/* Highlight keywords */

.kwg-keyword{
color:#ffd600;
font-weight:600;
}

/* Responsive */

@media(max-width:768px){

.kwg-testimonial-row{
flex-direction:column;
}

}
/* FAQ WRAPPER */

.kwg-faq-accordion-wrapper{
max-width:1000px;
margin:auto;
padding:70px 20px;
}

/* Heading */

.kwg-testimonial-heading{
color:#ffd600;
font-size:36px;
margin-bottom:40px;
}

/* FAQ Item */

.kwg-faq-accordion-item{
background:rgba(255,255,255,0.05);
border-radius:10px;
margin-bottom:15px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.4);
}

/* Title Button */

.kwg-faq-accordion-title{
width:100%;
text-align:left;
background:none;
border:none;
padding:18px 22px;
font-size:16px;
color:#ffffff;
cursor:pointer;
font-weight:600;
position:relative;
}

/* Hover */

.kwg-faq-accordion-title:hover{
color:#ffd600;
}

/* Plus Icon */

.kwg-faq-accordion-title::after{
content:"+";
position:absolute;
right:20px;
font-size:20px;
color:#ffd600;
}

/* Active icon */

.kwg-faq-accordion-item.active .kwg-faq-accordion-title::after{
content:"−";
}

/* Content */

.kwg-faq-accordion-content{
max-height:0;
overflow:hidden;
padding:0 22px;
color:#ffffff;
line-height:1.7;
transition:max-height 0.3s ease;
}

/* Open content */

.kwg-faq-accordion-item.active .kwg-faq-accordion-content{
max-height:200px;
padding:0 22px 18px;
}
.game-info{
display:flex;
align-items:center;
gap:30px;
}

.game-text{
flex:2;
}

.game-image{
flex:1;
text-align:right;
}

.game-image img{
width:200px;
height:auto;
}

/* Mobile responsive */

@media (max-width:768px){

.game-info{
flex-direction:column;
text-align:center;
}

.game-image{
text-align:center;
}

}
/* Keywords */

.kwg-keyword{
color:#ffd600;
font-weight:600;
}
.big-card {
    background: linear-gradient(to right,#1f3580,#0e1731);
    color: #fff;
    padding: 1.5rem .5rem;
    text-align: center;
    box-shadow: 0 4px 8px rgb(17 34 64 / .15);
}
.trust-section{
background:#161d3a;
color:#ffffff;
padding: 12px 0px;
}

.trust-heading{
color:#ffd600;
font-size:36px;
margin-bottom:25px;
}

.trust-table-wrapper{
overflow-x:auto;
}

.trust-table{
width:100%;
border-collapse:collapse;
background:rgba(255,255,255,0.05);
border-radius:10px;
overflow:hidden;
}

.trust-table th{
background:#ffd600;
color:#000;
padding:15px;
text-align:left;
font-size:16px;
}

.trust-table td{
padding:15px;
border-bottom:1px solid rgba(255,255,255,0.1);
line-height:1.6;
}

.trust-table tr:hover{
background:rgba(255,255,255,0.08);
}
/* BLOG HEADER */

.blog-header{
text-align:center;
}

.blog-header h1{
color:#ffd600;
font-size:36px;
margin-bottom:10px;
}

.blog-header p{
color:#ffffff;
font-size:15px;
}


/* BLOG GRID */

.blog-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
max-width:1200px;
margin:auto;
padding:20px;
}


/* BLOG CARD */

.blog-card{
background:rgba(255,255,255,0.05);
border-radius:12px;
overflow:hidden;
display:flex;
flex-direction:column;
justify-content:space-between;
box-shadow:0 10px 30px rgba(0,0,0,0.5);
transition:0.3s;
}


/* HOVER EFFECT */

.blog-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(0,0,0,0.7);
}


/* BLOG CONTENT */

.blog-content{
padding:20px;
}

.blog-content h3{
color:#ffd600;
font-size:20px;
margin-bottom:10px;
}

.blog-content p{
color:#ffffff;
font-size:14px;
line-height:1.6;
}


/* FOOTER */

.blog-footer{
padding:15px 20px;
border-top:1px solid rgba(255,255,255,0.1);
}


/* READ MORE BUTTON */

.read-more{
color:#ffd600;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.read-more:hover{
text-decoration:underline;
}


/* MOBILE */

@media (max-width:768px){

.blog-header h1{
font-size:28px;
}

.blog-content h3{
font-size:18px;
}

}

/* FOOTER */

footer{
background:#0d132a;
padding:20px 0;
text-align:center;
}

footer p{
color:#aaa;
}
.footer-links{
    padding: 5px 0px;
}
.footer-links a{
margin-left: 20px;
font-size: 16px;
}