@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Inter", sans-serif;
    background: #fcfada;
    color: #000;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-size: 15px;
    list-style: none;
    line-height: 22px;
}
ul{
    list-style: none;
    padding-left: 0;
}
ul li{
    font-size: 15px;
    line-height: 25px;
}
a{
    color: #000;
    text-decoration: none;
}
a:hover{
    color: #fd1616;
}
main {
    background-image: url(/assets/images/pattern.svg);
}
p{
    color: #000;
    font-size: 15px;
    line-height: 25px;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Berkshire Swash", serif;
    font-weight: 400;
}
h1{
    font-size: 50px;
}
h2{
    font-size: 40px;
}
h3{
    font-size: 32px;
}
h4{
    font-size: 24px;
}
h5{
    font-size: 20px;
}
h6{
    font-size: 18px;
}
.nav-links {
    display: flex;
    gap: 30px;
    font-size: 18px;
    font-weight: 700;
}
.nav-links a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
}
.nav-links a:hover {
    color: #000;
}
.nav-links a:hover::after {
    width: 70%;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #bf0000;
    transition: width 0.3s ease;
}
.cta-button{
    display: inline-block !important;
    position: relative !important;
    background-image: linear-gradient(/* chrome */ hsl(101.11deg 100% 51.74% / 41%), hsl(127deg 83% 69% / 0%) 50%, hsl(39.29deg 100% 50% / 20%) 50%, hsl(133.24deg 83.95% 31.76% / 52%)) !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: #fff !important;
    padding: 11px 33px !important;
    border: 3px solid #fcd600 !important;
    border-radius: 50px !important;
    box-shadow: inset 0 -5px 20px hsla(0, 0%, 0%, 0.4), inset 0 5px 20px hsla(0, 0%, 100%, 0.4), -8px 8px 5px hsla(0, 0%, 0%, 0.15), !important;
    cursor: pointer !important;
    background-color: #0f9d2c !important;
    text-decoration: none;
}
.cta-button::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    left: 20px !important;
    right: 20px !important;
    top: 4px !important;
    height: 20px !important;
    border-radius: 15px !important;
    background: linear-gradient(hsla(0, 0%, 100%, 0.8), hsla(0, 0%, 100%, 0)) !important;
}

.cta-button:hover {
  transform: scale(1.02);
  box-shadow:
    inset 0 5px 8px rgba(255, 255, 255, 0.3),
    0 10px 15px rgba(0, 255, 0, 0.2);
}
.cta-button-red{
    display: inline-block !important;
    position: relative !important;
    background-image: linear-gradient(/* chrome */ hsl(0deg 100% 51.74% / 41%), hsl(0deg 83% 69% / 0%) 50%, hsl(0deg 100% 50% / 20%) 50%, hsl(0deg 83.95% 31.76% / 52%)) !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: #fff !important;
    padding: 11px 33px !important;
    border: 3px solid #ffab05 !important;
    border-radius: 50px !important;
    box-shadow: inset 0 -5px 20px hsla(0, 0%, 0%, 0.4), inset 0 5px 20px hsla(0, 0%, 100%, 0.4), -8px 8px 5px hsla(0, 0%, 0%, 0.15), !important;
    cursor: pointer !important;
    background-color: #da0000 !important;
    text-decoration: none;
}
.cta-button-red::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    left: 20px !important;
    right: 20px !important;
    top: 4px !important;
    height: 20px !important;
    border-radius: 15px !important;
    background: linear-gradient(hsla(0, 0%, 100%, 0.8), hsla(0, 0%, 100%, 0)) !important;
}

.cta-button-red:hover {
    transform: scale(1.01);
    box-shadow: inset 0 5px 8px rgba(255, 255, 255, 0.3), 0 10px 15px rgb(255 0 0 / 20%);
}
.caption{
    padding-top: 40px;
}
.hero{
    padding: 30px 0 0 0;
    background-image: url('/assets/images/hero-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero img{
    max-width: 70%;
}
.text-shadow{
    text-shadow: 0px 3px 5px #0000008f;
}
.box-shadow{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.font-20{
    font-size: 20px;
}
.font-18{
    font-size: 18px;
    line-height: 30px;
}
.caption h1{
    margin-bottom: 15px;
}
.sub-heading{
    color: #ffe151;
    font-weight: 700;
}
.facebook-promo {
    position: relative;
}
.facebook-promo p{
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: #fff;
}
.facebook-promo .btn {
    border-radius: 50px;
    padding: .50rem 2rem;
}
.facebook-promo .bg-icon {
    position: absolute;
    left: 5%;
    bottom: 20px;
    font-size: 70px;
    color: rgb(255 255 255 / 25%);
    pointer-events: none;
    top: 5px;
}
.fb-login-btn {
  display: inline-flex;
  align-items: center;
  background-color: #3b5998;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid #2d4373;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: background-color 0.3s;
}

.fb-login-btn:hover {
  background-color: #2d4373;
  color: #fff;
}

.fb-login-btn i {
  background-color: #2d4373;
  padding: 13px 15px;
  border-radius: 4px 0 0 4px;
  font-size: 16px;
}
.fb-login-btn span {
  padding: 10px 15px;
}
.bg-white{
    background: #fff;
}
.game-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff3cac 0%, #784ba0 50%, #2b86c5 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}
.game-card-img{
    max-width: 100%;
    width: 100%;
}
.slick-prev:before, .slick-next:before {
    color: #000000;
}
.games-container {
    width: calc(100% - 100px);
    margin: 0 auto;
}
.game-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #ccc;
}
.game-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgb(138 138 138 / 18%);
    border-color: #aaa;
}
.game-carousel .game-card {
    margin: 0 10px;
}
.game-title{
    font-size: 18px;
    color: #000;
    text-align: center;
}
.game-content {
    padding: 15px;
}
.split-section {
    display: flex;
    width: 100%;
}
.image-half {
    width: 50%;
}
.content-half {
    flex: 1;
    padding: 30px;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}
.content-half h2 {
    font-size: 30px;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    text-transform: capitalize;
}
.content-half p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #2f0f00;
    text-align: justify;
}
.game-play-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #e30613;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.four-image{
    padding: 50px 0;
}
footer {
    background: url(/assets/images/pattern.svg), #ffed95;
    padding: 40px 0 20px 0;
    border-top: 2px solid #000000;
}
footer h4{
    font-size: 22px;
    margin-bottom: 16px;
}
footer ul li{
    line-height: 30px;
}
footer ul li a{
    font-weight: 500;
}
.copyright p{
    margin-bottom: 0;
}
.game-page-content{
    background: url(/assets/images/game-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.page-heading{
    font-size: 32px;
    color: #f5c500;
    margin-bottom: 15px;
}
.golden-wale {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}
.golden-wale li {
    background: #e9010845;
    color: #fff;
    padding: 15px;
    border: 1px solid #fff;
    border-radius: 8px;
}
.game-caption{
    padding: 40px 0 0 0;
}
.game-tab {
    margin-top: 50px;
}
.game-tab .nav-tabs {
    border-bottom: none;
    justify-content: center;
    gap: 5px;
}
.game-tab .nav-tabs .nav-item .nav-link.active {
    display: inline-block !important;
    position: relative !important;
    background-image: linear-gradient(/* chrome */ hsl(101.11deg 100% 51.74% / 41%), hsl(127deg 83% 69% / 0%) 50%, hsl(39.29deg 100% 50% / 20%) 50%, hsl(133.24deg 83.95% 31.76% / 52%)) !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: #fff !important;
    padding: 11px 24px !important;
    border: 3px solid #fcd600 !important;
    border-radius: 50px !important;
    box-shadow: inset 0 -5px 20px hsla(0, 0%, 0%, 0.4), inset 0 5px 20px hsla(0, 0%, 100%, 0.4), -8px 8px 5px hsla(0, 0%, 0%, 0.15), !important;
    cursor: pointer !important;
    background-color: #0f9d2c !important;
    text-decoration: none;
}
.game-tab .nav-link.active::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    left: 20px !important;
    right: 20px !important;
    top: 4px !important;
    height: 20px !important;
    border-radius: 15px !important;
    background: linear-gradient(hsla(0, 0%, 100%, 0.8), hsla(0, 0%, 100%, 0)) !important;
}
.game-tab .nav-tabs>li>a {
    background: transparent;
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
}
.game-tab .nav-tabs>li>a:hover{
    box-shadow: none;
    border-color: transparent;
}
.tab-content ul {
    margin: 0 auto;
    max-width: 100%;
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.tab-content ul li {
    width: calc(20% - 12px);
}
.game-tab img {
    box-shadow: 0px 4px 10px #00000042;
    border-radius: 8px;
}
.game-tab img {
    width: 100%;
}
.store-page-content {
    background: url(/assets/images/game-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.distributors{
    margin-top: 30px;
    border-radius: 12px;
}
#myDiv{
    text-align: center;
    padding-top: 30px;
}
.text-white {
    color: #eee !important;
}
.registration-form {
    max-width: 60%;
    margin: 0 auto;
}
.registration-form .input-group {
    padding-bottom: 20px;
}
.registration-form .input-group-addon {
    background-image: linear-gradient(/* chrome */ hsl(101.11deg 100% 51.74% / 41%), hsl(127deg 83% 69% / 0%) 50%, hsl(39.29deg 100% 50% / 20%) 50%, hsl(133.24deg 83.95% 31.76% / 52%)) !important;
    box-shadow: inset 0 -5px 20px hsla(0, 0%, 0%, 0.4), inset 0 5px 20px hsla(0, 0%, 100%, 0.4), -8px 8px 5px hsla(0, 0%, 0%, 0.15), !important;
    background-color: #0f9d2c !important;
    font-size: 18px;
    color: #fff;
    text-align: center;
    border: 1px solid #ffffff96;
    border-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0;
    padding: 14px 15px 7px 20px;
    width: 60px;
}
.registration-form .input-group-addon::before {
    content: '';
    display: block;
    position: absolute;
    left: 6px;
    right: 0;
    top: 3px;
    height: 16px;
    border-radius: 7px;
    background: linear-gradient(hsla(0, 0%, 100%, 0.8), hsla(0, 0%, 100%, 0));
}
.registration-form .form-control {
    height: 50px;
    color: #000;
    background-color: #ffffff;
    border: 1px solid #00a516de;
    border-radius: 10px;
    border-left: 0;
    padding: 12px;
    font-size: 15px;
}
.registration-form textarea {
    padding: 12px 20px;
    min-height: 120px;
    border-left: 1px solid #00a516de!important;
}
.form-control:focus {
    box-shadow: 0 0 0 .25rem rgb(127 255 0 / 10%);
}
textarea:focus,
input[type="text"]:focus,
input[type="text"]:focus-visible,
input[type="password"]:focus,
input[type="password"]:focus-visible,
input[type="datetime"]:focus,
input[type="datetime"]:focus-visible,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:focus-visible,
input[type="date"]:focus,
input[type="date"]:focus-visible,
input[type="month"]:focus,
input[type="month"]:focus-visible,
input[type="time"]:focus,
input[type="time"]:focus-visible,
input[type="week"]:focus,
input[type="week"]:focus-visible,
input[type="number"]:focus,
input[type="number"]:focus-visible,
input[type="email"]:focus,
input[type="email"]:focus-visible,
input[type="url"]:focus,
input[type="url"]:focus-visible,
input[type="search"]:focus,
input[type="search"]:focus-visible,
input[type="tel"]:focus,
input[type="tel"]:focus-visible,
input[type="color"]:focus{
  border-color: #00a516de;
  box-shadow: none;
  outline: 0 none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #00a516de;
  border-left: none;
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: none;
  transition: background-color 5000s ease-in-out 0s;
  background: #fff;
}
.register-page-heading{
    font-size: 32px;
    color: #000;
    margin-bottom: 15px;
    text-align: center;
}
.registration-form .checkbox {
    max-width: 100%;
    margin: 0 auto;
}
.disc {
    color: #4d4d4d;
    font-size: 14px;
    line-height: 22px;
    margin-top: 15px;
}
.app-text{
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}
.step-content{
    display: flex;
    justify-content: space-between;
}
.step-one h3{
    font-size: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
}
.down-app {
    padding: 20px 0 30px 0;
    text-align: center;
}
.down-app a {
    background: #f5e48f;
    color: #000;
    font-weight: 500;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #000;
}
.down-app a:hover {
    background: #000;
    color: #f5e48f;
    font-weight: 500;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #000;
}
.register-page-content{
    background: url(/assets/images/pattern-white.svg), #780000;
    padding: 30px 0;
    margin-bottom: 35px;
}
.bonus h2 {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    text-transform: capitalize;
    color: #fffc00;
    margin: 0;
    font-weight: 700;
    padding-bottom: 5px;
    text-align: center;
    text-shadow: -1px -1px 4px #000;
}
.bonus h4 {
    font-family: "Inter", sans-serif;
    text-align: center;
    font-size: 28px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 0;
    text-shadow: -1px -1px 4px #000;
}
.bonus h2 span {
    background: #00b42a;
    color: #fff;
    font-weight: 500;
    padding: 0px 10px;
    border-radius: 10px;
    text-shadow: -1px -1px 4px #000;
}
.contact-page .page-heading{
    text-align: center;
    padding-top: 50px;
    color: #000;
}
.policy-page .page-heading{
    text-align: center;
    padding-top: 50px;
    color: #000;
}
select.form-control {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 24px;
}
.g-cap{
    margin: 0 auto;
    max-width: 38%;
}
@media (min-width: 1400px) and (max-width: 1699.98px){
.g-cap{
    max-width: 40%;
}
}
@media (min-width: 1200px) and (max-width: 1399.98px){
.navbar-brand img{
    width: 200px;
}
.g-cap {
    max-width: 42%;
}
.nav-links {
    gap: 15px;
    font-size: 20px;
}
.nav-links a {
    font-size: 15px;
    padding: 8px 12px;
}
.cta-button{
    font-size: 15px !important;
    padding: 9px 27px !important;
}
.cta-button-red{
    font-size: 15px !important;
    padding: 9px 27px !important;
}
.caption {
    padding-top: 90px;
}
.content-half {
    padding: 25px;
}
.content-half p {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 20px;
}
.content-half h2 {
    font-size: 26px;
    margin-bottom: 12px;
}
.hero img {
    max-width: 100%;
}
p{
    color: #000;
    font-size: 14px;
    line-height: 23px;
}
h1{
    font-size: 40px;
}
h2{
    font-size: 36px;
}
h3{
    font-size: 30px;
}
h4{
    font-size: 22px;
}
h5{
    font-size: 18px;
}
h6{
    font-size: 16px;
}
.distributors {
    margin-top: 55px;
}
}
@media (min-width: 992px) and (max-width: 1199.98px){
.caption {
    padding-top: 60px;
}
.g-cap {
    max-width: 53%;
}
.hero img {
    max-width: 100%;
}
p{
    color: #000;
    font-size: 13px;
    line-height: 21px;
}
h1{
    font-size: 30px;
}
h2{
    font-size: 28px;
}
h3{
    font-size: 24px;
}
h4{
    font-size: 20px;
}
h5{
    font-size: 18px;
}
h6{
    font-size: 16px;
}
.navbar-brand img{
    width: 230px;
}
.nav-links {
    gap: 15px;
}
.nav-links a {
    font-size: 14px;
    padding: 6px 10px;
}
.font-18 {
    font-size: 14px;
    line-height: 23px;
}
.cta-button {
    font-size: 14px !important;
    padding: 8px 24px !important;
    border: 2px solid #fcd600 !important;
}
.cta-button::before {
    top: 3px !important;
    height: 16px !important;
}
.cta-button-red {
    font-size: 14px !important;
    padding: 8px 24px !important;
    border: 2px solid #ffab05 !important;
}
.cta-button-red::before {
    top: 3px !important;
    height: 16px !important;
}
.content-half {
    padding: 15px;
}
.content-half h2 {
    font-size: 22px;
    margin-bottom: 9px;
    line-height: 24px;
}
.content-half p {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 15px;
}
.distributors {
    margin-top: 100px;
}
.golden-wale li {
    padding: 8px 15px;
    font-size: 14px;
}
.tab-content ul li {
    width: calc(25% - 12px);
}








}
@media (min-width: 768px) and (max-width: 991.98px){
    .caption {
    padding-top: 0;
}
.g-cap {
    max-width: 43%;
}
.hero img {
    max-width: 100%;
}
p{
    color: #000;
    font-size: 13px;
    line-height: 21px;
}
h1{
    font-size: 30px;
}
h2{
    font-size: 28px;
}
h3{
    font-size: 24px;
}
h4{
    font-size: 20px;
}
h5{
    font-size: 18px;
}
h6{
    font-size: 16px;
}
.font-18 {
    font-size: 14px;
    line-height: 23px;
}
.cta-button {
    font-size: 14px !important;
    padding: 8px 24px !important;
    border: 2px solid #fcd600 !important;
}
.cta-button::before {
    top: 3px !important;
    height: 16px !important;
}
.cta-button-red {
    font-size: 14px !important;
    padding: 8px 24px !important;
    border: 2px solid #ffab05 !important;
}
.cta-button-red::before {
    top: 3px !important;
    height: 16px !important;
}
.game-title {
    font-size: 17px;
    margin-bottom: 12px;
}
.four-image {
    padding: 30px 0;
}
.four-image .box-shadow {
    box-shadow: none;
}
.split-section {
    flex-direction: column;
    margin-bottom: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 12px;
}
.image-half {
    width: 100%;
}
.image-half img {
    width: 100%;
    border-radius: 12px 12px 0px 0px;
}
.content-half h2 {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 30px;
}
.content-half p {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 20px;
}
.split-section .image-half:nth-child(2), .split-section .image-half:nth-child(4) {
    order: -1;
}
.game-caption {
    padding: 20px 0 0 0;
}
.distributors {
    margin-top: 130px;
}
.page-heading {
    font-size: 26px;
    margin-bottom: 12px;
}
.golden-wale {
    gap: 10px;
    margin: 20px 0;
}
.golden-wale li {
    padding: 8px 12px;
    font-size: 13px;
}
.game-tab {
    margin-top: 30px;
}
.game-tab .nav-tabs .nav-item .nav-link.active {
    font-size: 14px !important;
    padding: 10px 22px !important;
}
.game-tab .nav-tabs>li>a {
    padding: 10px 22px;
    font-size: 14px;
}
.tab-content ul li {
    width: calc(33% - 12px);
}
.registration-form {
    max-width: 100%;
}
.registration-form .form-control {
    height: 44px;
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
}
.registration-form .input-group-addon {
    font-size: 15px;
    padding: 12px 15px 7px 13px;
    width: 48px;
}
.registration-form .input-group {
    padding-bottom: 12px;
}
.registration-form textarea {
    min-height: 100px;
}
.bonus h2 {
    font-size: 32px;
}
.bonus h4 {
    font-size: 22px;
}
.register-page-content {
    padding: 20px 0;
    margin-bottom: 20px;
}
.register-page-heading {
    font-size: 24px;
}
.checkbox label{
    font-size: 13px;
}
.disc {
    font-size: 13px;
    line-height: 20px;
    margin-top: 12px;
    margin-bottom: 0;
}
.step-content {
    display: grid;
    gap: 12px;
}
.step-one h3 {
    font-size: 16px;
    margin-bottom: 0;
}
.step-one p {
    margin-bottom: 0;
    margin-top: 5px;
}
.down-app {
    margin: 15px 0;
    padding: 20px 0 12px 0;
}
.down-app a {
    padding: 12px 20px;
    font-size: 13px;
}
.app-text {
    font-size: 13px;
    line-height: 21px;
}
.contact-page .page-heading {
    padding-top: 20px;
}
.policy-page .page-heading {
    padding-top: 20px;
}
ul li{
    font-size: 13px;
    line-height: 21px;
}

}
@media (min-width: 576px) and (max-width: 767.98px){
.caption {
    padding-top: 0;
}
p{
    color: #000;
    font-size: 13px;
    line-height: 21px;
}
h1{
    font-size: 32px;
}
h2{
    font-size: 28px;
}
h3{
    font-size: 24px;
}
h4{
    font-size: 20px;
}
h5{
    font-size: 18px;
}
h6{
    font-size: 16px;
}
.font-18 {
    font-size: 16px;
    line-height: 26px;
}
.cta-button {
    font-size: 14px !important;
    padding: 8px 24px !important;
    border: 2px solid #fcd600 !important;
}
.cta-button::before {
    top: 3px !important;
    height: 16px !important;
}
.cta-button-red {
    font-size: 14px !important;
    padding: 8px 24px !important;
    border: 2px solid #ffab05 !important;
}
.cta-button-red::before {
    top: 3px !important;
    height: 16px !important;
}
.game-title {
    font-size: 17px;
    margin-bottom: 12px;
}
.four-image {
    padding: 30px 0;
}
.four-image .box-shadow {
    box-shadow: none;
}
.split-section {
    flex-direction: column;
    margin-bottom: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 12px;
}
.image-half {
    width: 100%;
}
.image-half img {
    width: 100%;
    border-radius: 12px 12px 0px 0px;
}
.content-half {
    padding: 20px;
    border-radius: 12px;
}
.content-half h2 {
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 30px;
}
.content-half p {
    font-size: 13px;
    line-height: 21px;
    margin-bottom: 15px;
}
.split-section .image-half:nth-child(2), .split-section .image-half:nth-child(4) {
    order: -1;
}
.game-caption {
    padding: 20px 0 0 0;
}
.page-heading {
    font-size: 26px;
    margin-bottom: 12px;
}
.golden-wale {
    gap: 10px;
    margin: 20px 0;
}
.golden-wale li {
    padding: 8px 12px;
    font-size: 13px;
}
.game-tab {
    margin-top: 30px;
}
.game-tab .nav-tabs .nav-item .nav-link.active {
    font-size: 14px !important;
    padding: 10px 22px !important;
}
.game-tab .nav-tabs>li>a {
    padding: 10px 22px;
    font-size: 14px;
}
.tab-content ul li {
    width: calc(45% - 12px);
}
.registration-form {
    max-width: 100%;
}
.registration-form .form-control {
    height: 44px;
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
}
.registration-form .input-group-addon {
    font-size: 15px;
    padding: 12px 15px 7px 13px;
    width: 48px;
}
.registration-form .input-group {
    padding-bottom: 12px;
}
.registration-form textarea {
    min-height: 100px;
}
.bonus h2 {
    font-size: 32px;
}
.bonus h4 {
    font-size: 22px;
}
.register-page-content {
    padding: 20px 0;
    margin-bottom: 20px;
}
.register-page-heading {
    font-size: 24px;
}
.checkbox label{
    font-size: 13px;
}
.disc {
    font-size: 13px;
    line-height: 20px;
    margin-top: 12px;
    margin-bottom: 0;
}
.step-content {
    display: grid;
    gap: 12px;
}
.step-one h3 {
    font-size: 16px;
    margin-bottom: 0;
}
.step-one p {
    margin-bottom: 0;
    margin-top: 5px;
}
.down-app {
    margin: 15px 0;
    padding: 20px 0 12px 0;
}
.down-app a {
    padding: 12px 20px;
    font-size: 13px;
}
.app-text {
    font-size: 13px;
    line-height: 21px;
}
.contact-page .page-heading {
    padding-top: 20px;
}
.policy-page .page-heading {
    padding-top: 20px;
}
ul li{
    font-size: 13px;
    line-height: 21px;
}
}
@media (min-width: 1px) and (max-width: 575.98px){
p{
    font-size: 13px;
    line-height: 21px;
}
ul li{
    font-size: 13px;
    line-height: 21px;
}
h1{
    font-size: 30px;
}
h2{
    font-size: 24px;
}
h3{
    font-size: 20px;
}
h4{
    font-size: 18px;
}
h5{
    font-size: 16px;
}
h6{
    font-size: 15px;
}
.caption {
    padding-top: 0;
    position: relative !important;
}
.caption .cta-button {
    position: absolute !important;
}
.font-20 {
    font-size: 16px;
    margin-bottom: 10px;
}
.caption h1 {
    margin-bottom: 12px;
}
.font-18 {
    font-size: 13px;
    line-height: 21px;
    text-align: justify;
}
.cta-button {
    font-size: 14px !important;
    padding: 8px 24px !important;
    border: 2px solid #fcd600 !important;
}
.cta-button::before {
    top: 3px !important;
    height: 16px !important;
}
.cta-button-red {
    font-size: 14px !important;
    padding: 8px 24px !important;
    border: 2px solid #ffab05 !important;
}
.cta-button-red::before {
    top: 3px !important;
    height: 16px !important;
}
.hero img{
    max-width: 80%;
}
.fb-login-btn{
    font-size: 13px;
}
.fb-login-btn i {
    padding: 10px 13px;
}
.fb-login-btn span {
    padding: 7px 13px;
}
.hero{
    padding: 20px 0 0 0;
}
.games-container {
    width: calc(100% - 50px);
}
.game-title {
    font-size: 17px;
    margin-bottom: 12px;
}
.four-image {
  padding: 30px 0;
}
.split-section {
  flex-direction: column;
  margin-bottom: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border-radius: 12px;
}
.image-half {
  width: 100%;
}
.image-half img{
  width: 100%;
  border-radius: 12px 12px 0px 0px;
}
.content-half {
  padding: 15px;
  border-radius: 12px;
}
.content-half h2 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 30px;
}
.content-half p {
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 15px;
}
.four-image .box-shadow{
    box-shadow: none;
}
.split-section .image-half:nth-child(2),
.split-section .image-half:nth-child(4) {
    order: -1;
}
.game-caption {
    padding: 20px 0 0 0;
}
.page-heading {
    font-size: 24px;
    margin-bottom: 12px;
}
.golden-wale {
    gap: 10px;
    margin: 20px 0;
}
.golden-wale li {
    padding: 8px 12px;
    font-size: 13px;
}
.distributors {
    margin-top: 0;
}
.game-tab {
    margin-top: 20px;
}
.game-tab .nav-tabs .nav-item .nav-link.active {
    font-size: 14px !important;
    padding: 8px 20px !important;
}
.game-tab .nav-tabs>li>a {
    padding: 8px 20px;
    font-size: 14px;
}
.game-tab .nav-link.active::before {
    top: 2px !important;
    height: 14px !important;
}
.tab-content ul {
    padding-top: 0;
}
.tab-content ul li {
    width: calc(50% - 12px);
}
.mobile-send {
    width: 100%;
}
#myDiv {
    padding-top: 20px;
}
.registration-form {
    max-width: 100%;
}
.registration-form .form-control {
    height: 42px;
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
}
.registration-form .input-group-addon {
    font-size: 15px;
    padding: 12px 15px 7px 13px;
    width: 46px;
}
.registration-form .input-group {
    padding-bottom: 12px;
}
.registration-form textarea {
    min-height: 80px;
}
.bonus h2 {
    font-size: 24px;
}
.bonus h4 {
    font-size: 17px;
}
.register-page-content {
    padding: 20px 0;
    margin-bottom: 20px;
}
.register-page-heading {
    font-size: 24px;
}
.checkbox label{
    font-size: 13px;
}
.disc {
    font-size: 13px;
    line-height: 20px;
    margin-top: 12px;
    margin-bottom: 0;
}
.step-content {
    display: grid;
    gap: 12px;
}
.step-one h3 {
    font-size: 16px;
    margin-bottom: 0;
}
.step-one p {
    margin-bottom: 0;
    margin-top: 5px;
}
.down-app {
    margin: 15px 0;
    padding: 20px 0 12px 0;
}
.down-app a {
    padding: 12px 20px;
    font-size: 13px;
}
.app-text {
    font-size: 13px;
    line-height: 21px;
}
.contact-page .page-heading {
    padding-top: 20px;
}
.policy-page .page-heading {
    padding-top: 20px;
}
.g-cap{
    max-width: 90%;
}
}
@media (max-width: 991px) {
.navbar-brand img{
    width: 180px;
}
.navbar-toggler {
  padding: 12px 15px;
  margin: 0 10px 0 0;
  border: none;
  background: radial-gradient(circle, rgb(252 0 0) 0%, rgb(167 0 0) 100%);
  border-radius: 50px;
  z-index: 1111;
  right: -8px;
  position: relative;
  color: #fff!important;
  box-shadow: 0 3px 10px #00000033;
}
.navbar-toggler:hover, .navbar-toggler:active, .navbar-toggler:focus {
  background: radial-gradient(circle, rgb(252 0 0) 0%, rgb(167 0 0) 100%);
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}
.navbar-toggler:not(.collapsed) {
  background: linear-gradient(135deg, #f45353 0%, #c60000 100%) !important;
  transition: background 0.3s ease-in-out;
  box-shadow: 0 3px 10px #00000033;
}
.navbar-toggler .navbar-toggler-icon {
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: #fff;
  display: block;
  margin: 5px auto;
  transition: all 0.3s ease;
  transform-origin: center;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon:nth-child(2) {
  opacity: 0;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Optional: smoother transition */
.navbar-toggler {
  transition: background 0.3s ease;
}
.navbar-collapse {
  position: absolute;
  background: url(/assets/images/pattern.svg),linear-gradient(135deg, #ffd100 9%, #dea402 100%);
  z-index: 111;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 0;
}
.nav-links {
  display: grid;
  gap: 0;
  padding: 15px;
  margin-top: 65px;
}
.nav-links a {
    background: rgba(245, 245, 245, 0.788);
    margin: 6px 0;
    font-size: 14px;
    border: 1px solid #717171;
}
.nav-links a::after {
    background: transparent;
}
#myNavbar i {
  background: linear-gradient(180deg, rgba(8, 0, 11, 0.7) 0%, rgba(238, 238, 238, 0.58) 100%);
  padding: 11px 11px;
  border-radius: 50px;
  margin-left: 10px;
  background: #0003;
  margin-right: -10px;
}
footer {
    padding: 30px 0 15px 0;
}
.footer-column h3{
    font-size: 18px;
}
footer h4 {
    font-size: 18px;
    margin-bottom: 12px;
}
footer ul li a {
    font-size: 13px;
}
footer ul li {
    line-height: 24px;
}
.footer-column ul:nth-child(3),.footer-column ul:nth-child(4){
    margin-bottom: 0;
}
}
