.clr-white {color: white}
.clr-black {color: black}
.bg-black {background-color: black}
.bg-dark {background-color: #131D4F}
.clr-heading{color: #FA462F;}
.text-uper-case{text-transform: uppercase;}
.text-decoration-none {text-decoration: none;}
.list-style-none {list-style-type: none;}
.line-height-1 {line-height: 1.7;}
.line-height-2 {line-height: 1.5;}
.overflow-hidden{overflow: hidden;}
.margin-start {margin-block-start:0rem;}
.margin-end {margin-block-end:0rem;}
.max-100 {max-width: 100%;}

 .container{
	margin-left: auto;
    margin-right: auto;
    max-width: 1204px;
    padding-left: 20px;
    padding-right: 20px;
}
@media (min-width: 1024px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

html {
  scroll-behavior: smooth;
}

@keyframes glow {


0% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}
50% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
}
100% {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}
}

.header:hover {
        width: 95%;
    transition: 0.3s linear;
    animation: glow 2s infinite;
    transform:scale(1.05);
}
.header ul li a {
    font-size: 15px !important;
}
.header-content {
    padding-left: 2%;
    padding-right: 2%;
}
.header {
        position: absolute;
    z-index: 111;
    transition: 0.3s linear;

    width: 95%;
    margin: auto;
    left: 0;
    right: 0;
    top: 2%;
    border-radius: 22px;
}
.desktop li a {
    text-decoration: none;
/*    font-size: 18px;*/
    color: #fff;
    padding: 10px 15px;
    background: linear-gradient(145deg, #1e37b6, #131d4f);
    border-radius: 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}
.desktop li a:hover {
    background: #909fec;
    color: #2C3E50;
    box-shadow: 0 0 15px rgba(242, 166, 90, 0.8);
    transform: translateY(-3px);
}
.phone-nav li a {
    text-decoration: none;
/*    font-size: 18px;*/
    color: #fff;
    padding: 10px 15px;
    background: linear-gradient(145deg, #1e37b6, #131d4f);
    border-radius: 10px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
}
.phone-nav li a:hover {
    background: #FFD700;
    color: #2C3E50;
    box-shadow: 0 0 15px rgba(242, 166, 90, 0.8);
    transform: translateY(-3px);
}

.logo img{width: 75px}
.phone {
    display: none;
}
.desktop {
    display: flex;
}

@media only screen and (max-width: 1230px) {
    .desktop {
        display: none !important;
    }
    .phone {
        display: flex !important;
        background: #ffffff;
        padding: 10px;
        border-radius: 3px;
    }
    .flex-column-md {flex-direction: column !important;}
    .w-100-md {width: 100% !important;}
    .align-start-md {align-items: flex-start !important;}
    .phone-nav.show {display: flex !important;}
    .benefits-items  {
        width: 45% !important;
    }
}



.phone-nav {
    position: absolute;
    background:#254D70;
    left: 0;
    width: -webkit-fill-available;
    flex-direction: column;
    top: 86%;
    z-index: 111;
    padding-top: 3%;
    padding-bottom: 3%;
    display: none;
}


/*////////////////hero//////////////*/
.hero {
    background-image: url(../images/hero.jpg);
    background-size: cover;
    background-position: center;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

}
.overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.7;
}
.hero-content {
    position: relative;
    max-width: 600px;
    /*padding: 20px;*/
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    height: min-content;
}


.hero-btn{
    padding: 14px 39px;
    border: 1px solid gray;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    background: linear-gradient(145deg, #2e46bb, #14130f);
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(242, 166, 90, 0.8);
    transition: all 0.3s ease-in-out;
}
.hero-btn:hover{
    background: #8289ae;
    box-shadow: 0 0 20px rgba(167, 201, 87, 0.9);
    transform: scale(1.1);
}
@media only screen and (max-width: 750px){
    .hero-content h2{font-size: xx-large !important; margin-block-end: 0;}
}
@media only screen and (max-width: 600px){
   .hero-content h1{font-size: xx-large !important; margin-block-start: 0;}
   .hero-input{flex-direction: column;}
   .hero-content{width: 100% !important}
}
/*//////////////hero end/////////////*/

/*///////////////discover////////////////*/
.discover-box {
    
    margin: 30px 0;
   
    background: linear-gradient(145deg, #293c9a, #16171d);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.discover-content{
     padding: 30px;
}
.discover-box img{
    width: 400px;
    height: 270px;
    border-radius: 5px;
}

.discover-btn{
    background-color: #2c3e97;
    color: white;
    cursor: pointer;
    outline: none;
    border-radius: 5px;
    transition: 0.3s;
    padding: 15px 20px;
    border: none;
}
.discover-btn:hover{
    opacity: 0.7;
    transition: 0.3s;
}
.discover-box:hover {
    animation: glow 2s infinite;
}
.discover-box:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.6);
}


@media only screen and (max-width: 700px){
    .discover-box img {width: 500px !important}
    .discover-text  {width: 75% !important}
}
@media only screen and (max-width: 500px){
    .discover-box img {width: 300px !important}
    .discover-text  {width: 100% !important}
}

/*////////////our-game/////////*/
.ourgame{background-color: #183B4E}
.game-wrapper{

    border-radius: 20px;
    padding: 30px;
    width: 280px;
    height: 320px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    box-shadow: -6px -6px 15px rgba(255, 215, 0, 0.2), 6px 6px 15px rgba(0, 0, 0, 0.6), inset -5px -5px 10px rgba(0, 0, 0, 0.4), inset 5px 5px 10px rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease-in-out;
    border: 3px solid #57788b;
    transform-style: preserve-3d;
    cursor: pointer;
}
.game-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    z-index: 1;
}
 .game-wrapper p {
    position: relative;
    z-index: 111;
    font-size: 16px;
    color: #EDEDED;
    line-height: 1.5;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}
.game-wrapper h3 {
    position: relative;
    z-index: 111;
    font-size: 24px;
    font-family: 'Cinzel', serif;
    color: #FFF5C3;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 15px rgba(255, 215, 0, 0.8);
    margin-top: 30px;
}
.game-wrapper:hover {
    animation: float 1.5s infinite ease-in-out;
}
.game-wrapper:hover {
    transform: scale(1.1);
    box-shadow: 0px 12px 20px rgba(255, 215, 0, 0.5);
}
@media only screen and (max-width: 1000px){
    .game-wrapper{width: 40% !important}
}
@media only screen and (max-width: 850px){
    .game-wrapper{width: 70% !important}
    .discover-content{flex-direction: column;}
    .flex-column-reverse{flex-direction: column-reverse;}
}
@media only screen and (max-width: 700px){
    .game-wrapper{width: 100% !important}
}

/*/////////rondom////////////*/


.random-text{
    margin: 0 auto;
    padding: 30px;
    background: rgb(37 77 112);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    border: 3px solid #57788b;
    color: white;
    text-align: center;
}

/*///////////choose//////*/
.choose{background-color: #254D70}
.playeachgame-box {

    width: 260px;
    height: 370px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    position: relative;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.6), inset 0px 0px 10px rgba(255, 215, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
}
.playeachgame-box h3 {
    font-size: 22px;
    font-family: 'Cinzel', serif;
    color: #58c2ff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.9);
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    width: 80%;
    text-align: center;
}
.playeachgame-btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(145deg, #131d4f, #0990dd);
    color: #fff;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(242, 166, 90, 0.8);
    transition: all 0.3s ease-in-out;
}
.playeachgame-box:hover {
    animation: float 1.5s infinite ease-in-out;
}
.playeachgame-box:hover {
    transform: scale(1.1);
    box-shadow: 0px 12px 20px rgba(255, 215, 0, 0.5);
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.playeachgame-box:hover {
    animation: float 1.5s infinite ease-in-out;
}

/*//////////foooter////////////////*/
.footer-logo img {
    width: 180px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.6);
    animation: floatGlow 3s infinite alternate ease-in-out;
}
@keyframes floatGlow {
  0% {
      transform: translateY(0px);
      box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.6);
  }
  50% {
      transform: translateY(-25px);
      box-shadow: 0px 0px 25px rgba(255, 215, 0, 0.8);
  }
  100% {
      transform: translateY(0px);
      box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.6);
  }
}
.desclaimer{
   
    padding: 15px;
    background: rgb(10 29 123);
    border-radius: 10px;
    color: white;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 0, 0, 1);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    
}
.desclaimer:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgb(82 97 168);
    background: rgb(82 97 168);
}
.footer-text{
    padding: 5px;
}
.footer-btn{
    background-color: #2c3e97;
    color: white;
    cursor: pointer;
    outline: none;
    border-radius: 5px;
    transition: 0.3s;
    padding: 15px 20px;
    border: none;
}
.footer-btn:hover{
    opacity: 0.7;
    transition: 0.3s;
}
@media only screen and (max-width: 900px) {
   .footer-main{flex-direction: column;}
   
   .footer-content{width: 100% !important}
   .footer-logo{width: 100% !important}

}
/*//////////////contact/////////////*/

.contact-main{
    margin: 0 auto;
    padding: 40px;
    background: rgb(15 42 65);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    border: 3px solid #57788b;
}
.form-group label {
    font-size: 16px;
    font-weight: bold;
    color: white;
    display: block;
    margin-bottom: 5px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    background: rgba(255, 215, 0, 0.1);
    color: #EDEDED;
    transition: all 0.3s ease-in-out;
}
.form-group input:hover, .form-group textarea:hover {
    background: rgba(255, 215, 0, 0.2);
}
.contact-btn {
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(145deg, #054367, #48a1d4);
    color: white;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(242, 166, 90, 0.8);
    transition: all 0.3s ease-in-out;
}
.contact-btn:hover {
    background: #043865;
    box-shadow: 0 0 20px rgba(167, 201, 87, 0.9);
    transition: 0.3s;
}
/*/////////////////about//////////////////*/
.about {
    background: linear-gradient(135deg, #1E2F23, #2C3E50);
    padding: 80px 10%;
    text-align: center;
    color: #E8D7A7;
}
.about-main {
    animation: fadeIn 1.5s ease-in-out;
}
.about-main {
    max-width: 800px;
   
    margin: 0 auto;
    background: rgba(42, 51, 60, 0.85);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    border: 3px solid #57788b;
}
.about-content{padding: 40px}
.about-title{
    font-size: 42px;
    font-family: 'Cinzel', serif;
    color: white;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.9);
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}
.about-title:hover {
    color: white;
    text-shadow: 0 0 20px rgba(242, 166, 90, 1);
}
.about-text{
    font-size: 18px;
    line-height: 1.8;
    color: #EDEDED;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}
.about-text:hover {
    transform: scale(1.02);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}
.sub-title {
    font-size: 28px;
    font-family: 'Cinzel', serif;
    color: #A7C957;
    margin-top: 30px;
    text-shadow: 0 0 10px rgba(167, 201, 87, 0.9);
    transition: transform 0.3s ease-in-out;
}
.sub-title:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(167, 201, 87, 1);
}
.aboutpage-list {
    text-align: left;
    margin-top: 20px;
    padding-left: 20px;
}
.aboutpage-list li {
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    transition: transform 0.3s ease-in-out;
}
@media only screen and (max-width:650px){
    .about-title{font-size: 30px !important}
    .about-main{width: 100% !important}
}
.opt-text svg{
    width: 30px;
    height: 30px;
}
.rsg-list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: gold;
    font-size: large;
    font-weight: 300;
    text-align: left;
}
.privacy{
    background: linear-gradient(135deg, #1E2F23, #2C3E50);
    text-align: center;
    color: #E8D7A7;
}
.privacypage-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(42, 51, 60, 0.85);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    border: 3px solid #57788b;
}
.privacy-content{
    padding: 40px;
}
.iframe{
    text-align: center;
    height: 500px;
    width: 100%;
}


.banner {
    background: #1E3E62;
    padding: 60px 0 55px;
}


@media only screen and (max-width: 600px) {
    #gSingle-v2-banner .banner-heading {
        font-size: 40px !important;
    }
    #gSingle-v2-banner .banner-content {
        padding: 35px 0 40px;
    }