@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Bubbles&display=swap');


:root {
    --bg1: #0C2233;
    --bg2: #060608;

    --bg3: #382933;
    --bg4: #180707;

    --bg5: #16213E;
    --bg6: #060606;

    --bg7: #160F30;
    --bg8: #060606;
  }

body{
    direction: ltr;
    font-family: 'IBM Plex Serif', sans-serif !important;
    font-size: 17px;
    margin: 0;
    padding: 0px;
}

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

a {
    text-decoration: none;
}


.header-section_dfu6w{
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    padding: 10px;
}

.header-section_dfu6w .logo a img{
    width: 50px !important;
    height: 50px !important;
}

.header-section_dfu6w .logo a{
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-section_dfu6w .logo a h2{
   color: #fff;
   font-size: 18px;
}

.header-holder_dfy763{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.menu-area  ul.menu{
    display: flex;
    gap: 20px;
}

.menu-area .menu li a{
    color: #fff;
    font-size: 18px;
}

.menu-area .menu li a:hover{
    color: #006F5F;
    font-size: 18px;
}


.header-hero_dnfu8{
    padding: 200px 0;
    background: url(creativecove/background/bg-all-0670b7db467b1a.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    max-height: 100vh;
    position: relative;
    overflow: hidden;
}

.header-hero_dnfu8::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, .7);
}

.hero-text_sdu9,.hero-btn {
    z-index: 1;
}

.hero-text_sdu9 h2{
    font-size: 35px;
    color: #fff;
    text-shadow: 2px 2px 2px #006F5F;
}

.hero-btn a{
    color: #006F5F;
}

.hero-btn a:hover{
    color: #ffff;
}


.ab_dgye{
    padding: 90px 0;
}

.ab-top-image_fu9{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

.ab-bottom-image{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

.ab_dgye .ab-top-image_fu9 img, .ab_dgye .ab-bottom-image img{
    width: 100% !important;
    height: 70px !important;
    object-fit: contain;
}

.ab-image_dhf76e{
    animation: lab_zoominout 15s linear infinite;
}

@keyframes lab_zoominout {
    0% {
        transform: scale(.85);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(.85);
    }
}

.ab_dgye .ab-image_dhf76e img{
    width: 100% !important;
    height: 470px !important;
    object-fit: contain;
}

.ab-text h5{
    text-align: center;
    font-size: 35px;
    color: #fff;
    text-shadow: 2px 2px 2px #006F5F;
}

.ab-text .ab-text-desc{
    font-size: 18px;
    color: #fff;
    text-align: center;
}

.game{
    padding: 90px 0;
}

.game-title{
    padding-bottom: 30px;
}

.game-title h5{
    text-align: center;
    font-size: 35px;
    color: #fff;
    text-shadow: 2px 2px 2px #006F5F;
}

.game .item {
    position: relative;
    border-radius: 5px;
    padding: 1px;
}

.gradient-bg {
    background: linear-gradient(to right, #006F5F, #161616, #180707);
}

.game .item .img_hdyt7e img {
    border-radius: 10px;
    transition: 0.4s;
}

.game .item:hover img {
    opacity: 0.1;
}

.game .item .item-info {
    text-align: center;
    position: absolute;
    text-transform: uppercase;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: 0.4s;
}

.game .item:hover .item-info {
    opacity: 1;
}

.game .item-info h4{
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    padding-bottom: 15px;
}

.accordion{
    padding: 90px 0;
}


.accordion-top-image{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

.accordion-bottom-image{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

.accordion .accordion-top-image img, .accordion .accordion-bottom-image img{
    width: 100% !important;
    height: 70px !important;
    object-fit: contain;
}

.accordion-block {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: auto;
  }

  .accordion-item {
    border-radius: 5px;
    border: 2px solid #006F5F;
    margin-bottom: 8px;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .accordion-header {
    padding: 10px;
    cursor: pointer;
    background-color: var(--bg7);
    border-bottom: 1px solid #ddd;
    text-align: left;
    font-weight: bold;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease-out;
  }

  .accordion-header span, .accordion-header .toggle{
    font-size: 19px;
    color: #fff;
  }

  .accordion-body {
    padding: 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .accordion-body p{
    padding: 10px;
    color: #fff;
  }

  .accordion-item.active .accordion-header {
    background-color: var(--bg7);
  }

  .accordion-item.active .accordion-body {
    max-height: 200px;
  }

  .toggle {
    transition: transform 0.3s ease-out;
  }

  .accordion-item.active .toggle {
    transform: rotate(180deg);
  }

  .accordion-image{
    animation: lab_zoominout 15s linear infinite;
}

@keyframes lab_zoominout {
    0% {
        transform: scale(.85);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(.85);
    }
}

.accordion-image img{
    width: 100% !important;
    height: 470px !important;
    object-fit: contain;
}

.leader{
    padding: 90px 0;
}

.leader h6{
    text-align: center;
    font-size: 20px;
    color: #fff;
    text-shadow: 2px 2px 2px #006F5F;
}

.leader-top-image{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

.leader-bottom-image_356gf{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

.leader .leader-top-image img, .leader .leader-bottom-image_356gf img{
    width: 100% !important;
    height: 70px !important;
    object-fit: contain;
}

.leaderBoard {
    margin-top: 20px;
    overflow: hidden;
    border-collapse: collapse;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.leader .leader-a{
    display: flex;
    gap: 10px;
}


.cell {
    flex: 1;
    padding: 15px;
    text-align: center;
    position: relative;
    border: 2px solid #006F5F;
    border-radius: 0px;
    background-color: var(--bg7);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.leader .cell img.cas-coin{
    width: 60px !important;
    height: 60px !important;
    object-fit: contain;
}


.leaderBoard .logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
}

.how-play{
    padding: 90px 0;
}

.how-play-box{
    display: flex;
}

  .how-play-block {
    background: rgba(0, 30, 80, 0.2);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    margin: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 8px 8px 0px 0px #006F5F, 16px 16px 0px 0px #006F5F; 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
    display: flex;
    flex: 1;
  }

  .how-play-block:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  .how-play-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .how-play-content p {
      color: #fff;
      font-size: 18px;
  }

  .how-play-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }


  .discl_rnf7{
    padding: 90px 0;
  }

  .discl-block_ndu7 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
  }

  .discl-logos{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .dislogo_r77 {
    width: 100px; 
    margin-bottom: 20px; 
    animation: moveUpDown 2s infinite alternate; 
  }

  @keyframes moveUpDown {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(10px); 
    }
  }

  .disclaimer-text {
    background: #8f0a0a;
    padding: 20px;
    border-radius: 0px;
    border: 1px solid #006F5F;
    color: #fff;
  }

  .disclaimer-text  p{
    padding: 10px;
    text-align: center;
  }

.fgam{
    padding: 90px 0;
    background: url(creativecove/background/bg-all-1670b7db467b73.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.fgam::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, .7);
}

.fgam .game-title{
    position: relative !important;
    z-index: 1!important;
}

.col-lg-6.fgamImg {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.col-lg-6.fgamImg img {
    max-height: 400px !important;
    animation: rotate 15s linear infinite; 
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.fgam-box{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    z-index: 1;

    background: rgba(0, 30, 80, 0.2);
    backdrop-filter: blur(30px);
    margin: 10px;
    padding: 15px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex: 1;
}

.fgam label{
    color: #fff;
}

.fgam .fgam-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fgam .gamfi{
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 30px;
}

.fgam .input-usersection_element{
    border: 1px solid #eee;
    border-radius: 5px;
    color: #333;
    height: 45px;
    padding: 10px 18px;
    transition: all 0.3s ease 0s;
}

.fgam .textarea-usersection_element{
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: none;
    color: #333;
    padding: 10px 18px;
    height: 100px;
}

.fgam .form-check{
    align-items: flex-start;
    padding-top: 9px;
    padding-left: 40px;
    text-align: left;
    padding-top: 5px;
    padding-left: 40px;
}

.fgam .form-check a{
    text-decoration: underline;
    color: #006F5F;
}

.fgam-btn{
    display: inline-block;
}

  
.footgam {
    padding: 40px 0;
}

.footgam-cont-block_df7{
    display: flex;
    border-bottom: 2px solid #fff;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.footgam-phone, .footgam-mail, .footgam-adrs{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footgam-phone span a, .footgam-mail span a, .footgam-adrs span{
    color: #fff;
    font-size: 19px;
    text-shadow: 2px 2px 2px #006F5F;
}

.footgam-logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footgam-logo a img{
    width: 50px !important;
    height: 50px !important;
    object-fit: contain;
}

.footgam-logo a h2{
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    padding-top: 10px;
}

.footgam-links_sw8{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footgam-links_sw8 ul li a{
    color: #fff;
    font-size: 17px;
    font-weight: 800;
}

.footgam-links_sw8 ul li a:hover{
    color: #006F5F;
}

.footimageLd{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footimageLd img{
    max-width: 200px !important;
    height: 80px !important;
    object-fit: contain;
}

.footgam-copy-block{
    display: flex;
    border-top: 2px solid #fff;
    padding-top: 20px;
    margin-top: 30px;
}

.footgam-copy-poli ul li a{
    color: #fff;
    font-size: 17px;
    font-weight: 800;
}

.footgam-copy-poli ul li a:hover{
    color: #006F5F;
}

.footgam-copy-year div{
    color: #fff;
    font-size: 19px;
    text-shadow: 2px 2px 2px #006F5F;
}

.footgam-copy-poli, .footgam-copy-year{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}


.gamb-single-page{
    background: url(creativecove/background/opacity_bg-0670b7db467c0a.png), #180707;
    padding: 30px 0;
}

.gamb-single-page .container{
    padding: 26px;
}

.gamb-single-page .row{
    display: flex;
}

.gamb-single-page-rating_53627u{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
    gap: 15px;
    color: #fff;
}

.gamb-single-page-rating_53627u ul{
    display: flex;
    gap: 10px;
}

.gamb-single-page-rating_53627u h5{
    padding: 0;
    margin: 0;
    font-weight: 800;
    font-size: 19px;
    text-shadow: 2px 2px 2px #006F5F;
}


.gamb-single-page-rating_53627u ul li{
    padding: 3px 7px;
    background: #006F5F;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.gamb-single-page__content_yu7 h2{
    font-size: 17px;
}

.gamb-single-page__image,.gamb-single-page__content_yu7{
    margin: 24px 0;
}

.gamb-single-page__image img{
    object-fit: cover;
    -webkit-filter: drop-shadow(20px 20px 6px #006F5F);
    filter: drop-shadow(20px 20px 6px #006F5F);
    height: 293px;
    width: 100%;
}

.gamb-single-page__content_yu7{
    color: #fff !important;
}

.gamb-single-page__content_yu7 ul{
    list-style: disc !important;
}


.gamb-single-page .game-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gamb-single-page .game-title i{
    text-align: center;
    font-size: 36px;
    color: #fff;
    text-shadow: 2px 2px 2px #006F5F;
    animation: upDownAnimation .7s infinite alternate; 
}

  @keyframes upDownAnimation {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(20px); 
    }
  }

.gamb-play iframe{
    width: 100%;
    height: 385px;
}


.change-position{
    display: flex;
}

.contactGambPage{
    padding: 30px 0 60px 0;
    background: url(creativecove/background/opacity_bg-1670b7db467c58.png), #180707;
}

.contactGambPage label{
    color: #fff;
}

.contactGambPage .contactGamb-blockForm {
    background: rgba(0, 30, 80, 0.2);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    margin: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 8px 8px 0px 0px #006F5F, 16px 16px 0px 0px #006F5F; 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}


.contactGambPage .form-control:focus {
	border: none;
	outline: none;
	border: 1px solid #006F5F;
    border-left: 2px solid #006F5F;
}

.contactGambPage .form-groups .input{
    border: 1px solid #eee;
    border-radius: 5px;
    color: #333;
    height: 45px;
    padding: 10px 18px;
    transition: all 0.3s ease 0s;
}

.contactGambPage .field{
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 30px;
}

.contactGambPage .form-groups .textarea{
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: none;
    color: #333;
    padding: 10px 18px;
    height: 100px;
}

.contactGambPage .form-check{
    align-items: flex-start;
    padding-top: 9px;
    padding-left: 40px;
    text-align: left;
    padding-top: 5px;
    padding-left: 40px;
}

.contactGambPage .form-check a{
    color: #006F5F;
}

.contactGambPage-btn{
    display: inline-block;
}

.contactGambPage-block_hd7{
    display: flex;
    gap: 25px;
}

.contactGambPage-box{
    display: flex;
    flex: 1;
}


.contactGambPage-inner_yru {
    background: rgba(0, 30, 80, 0.2);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    margin: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 8px 8px 0px 0px #006F5F, 16px 16px 0px 0px #006F5F; 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
  }

  .contactGambPage-inner_yru:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  .contactGambPage-icon i{
    font-size: 30px;
    color: #006F5F;
  }

  .contactGambPage-content h3{
      color: #fff;
      font-weight: 800;
      font-size: 24px;
  }

  .contactGambPage-content div,.contactGambPage-content a{
    color: #fff;
    font-size: 17px;
  }


.contactGamb-gmap{
    overflow: hidden;
}

.contactGamb-gmap iframe{
    display: flex;
}


.gamble-potilic{
    padding: 96px 96px;
    overflow: hidden;
    color: #736666;
}

.gamble-potilic h1.gamble-potilic-titl_hue7{
    font-size: 24px;
    font-weight: 800;
    color: #a89393;
}

.gamble-potilic h1,h2,h3{
    font-size: 19px;
    font-weight: 800;
    color: #a89393;
}

.gamble-potilic  a{
    text-decoration: underline;
    color: #fff !important;
}

.gamble-potilic ol li {
    color: #fff !important;
}

.gamble-potilic ul{
    list-style: disc !important
}



.button-1 {
    padding: 12px 36px;
    background: linear-gradient(to right, #006F5F, #161616, #180707);
    text-transform: capitalize;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    position: relative;
}

.button-1:hover {
    color: #006F5F;
    background: linear-gradient(to right, #161616, #180707, #006F5F);
}


.button-2 {
    font-size: 16px;
    text-align: center;
    display: inline-block;
    padding: 15px 15px;
    border: 1px solid #fff;
    cursor: pointer;
    letter-spacing: 2px;
    position:relative;
    overflow:hidden;
    background: linear-gradient(to right, #161616, #180707, #006F5F);
    color: #fff;
  }
  
  .button-2:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0;
    background : #fff;
    left: 0;
    bottom: 0;
    transition: all .3s;
    opacity: 0.3;
  }
  
  .button-2:hover:before {
    width: 100%;
    color: #006F5F;
    background: linear-gradient(to right, #161616, #180707, #006F5F);
  }

  .button-3 {
    font-size:16px;
    padding: 15px 15px;
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    color: #fff;
    border-radius: 10px;
    border: 0px;
    box-shadow: 0px 0px 14px -7px #161616;
    background-image: linear-gradient(45deg, #006F5F 0%, #161616  51%, #006F5F  100%);
    cursor: pointer;
    user-select: none;
    touch-action: manipulation;
  }
  
  .button-3:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
  }

  .button-4 {
    background: #161616;
    border: 2px solid #006F5F;
    font: inherit;
    line-height: 1;
    margin: 0.5em;
    padding: 1em 2em;
    color: #fff;
    transition: 0.25s;
}

.button-4:hover, .button-4:focus {
    border-color: #006F5F;
    color: #fff;
    border: 2px solid #161616;
    box-shadow: 
    inset -30px 0 0 0 #006F5F,
    inset 30px 0 0 0 #006F5F; 
}

.button-5 {
    background: #161616;
    border: 2px solid #006F5F;
    font: inherit;
    line-height: 1;
    margin: 0.5em;
    padding: 1em 2em;
    color: #fff;
    transition: 0.25s;
}

.button-5:hover, .button-5:focus {
    border-color: #006F5F;
    color: #fff;
    border: 2px solid #161616;
    box-shadow: inset 300px 0 0 0 #006F5F;

}

@media(max-width: 992px){
    .header-holder_dfy763{
        flex-direction: column !important;
        align-items: center;
    }

    .discl-block_ndu7{
        flex-direction: column;
    }

    .discl-logos, .disclaimer-text, .discl-logos{
        width: 100% !important;
    }

    .col-lg-6.fgamImg{
        justify-content: center;
        padding: 30px;
    }

    .col-lg-6.fgamImg img {
        max-height: 250px !important;
    }

    .footgam-cont-block_df7{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .menu-area ul.menu{
        flex-wrap: wrap;
        justify-content: center;
    }

    .how-play-box{
        padding-bottom: 40px;
    }

    .fs2{
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .footgam-logo, .footgam-links_sw8, .footimageLd{
        width: 100% !important;
    }

    .footgam-copy-block{
        flex-direction: column !important;
        gap: 10px;
    }

    .pag2 .row{
        flex-direction: column !important;
    }

    .pag2 .ab-image_dhf76e,  .pag2 .ab-text{
        width: 100% !important;
    }

    .contactGambPage-block_hd7{
        flex-direction: column !important;
    }

    .contactGambPage-box{
        width: 100% !important;
    }
}

@media(max-width: 768px){
    .leader .leader-a{
        flex-direction: column;
        padding-bottom: 40px;
    }

    .game-box{
        width: 100% !important;
    }

    .gameb2{
        width: 100% !important;
    }

    .gamb-single-page__image, .gamb-single-page__content_yu7{
        width: 100% !important;
    }

}

@media(max-width: 600px){
    .gamble-potilic {
        padding: 40px 40px;
    }
    
    .hero-text_sdu9 h2{
        font-size: 20px !important;
    }
  
}

@media(max-width: 375px){
  
    .gamble-potilic {
        padding: 30px 30px;
    }
}