* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sora:wght@100..800&display=swap');
:root {
    --thm-font: 'Inter', sans-serif;
    /* Headings */
    --thm-b-font:  'Inter', sans-serif;
    /* Body font */
    --thm-icon-font: "FontAwesome";
    /*Icon Font*/
    --thm-color-one: #c71585;
    --thm-color-two: #0464B9;
    /*Light Color*/
    --thm-color-light: #F88AF8;
    /*RGB Colors*/
    --thm-color-one-rgb: 14, 223, 126;
    /*Theme Colors*/
    --thm-body-color: #fff;
    /*White Color*/
    --thm-border: #d1d1d1;
    --thm-white: #fff;
    --thm-black: #000;
    /*Border Color*/
}

/*Animations*/

@keyframes fadeHeaderInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*General*/
::selection {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}

i[class^="flaticon-"],
i[class*=" flaticon-"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    overflow-x: hidden;
}

body {
    padding: 0;
    margin: 0;
    background-color: #fff;
    font-family: var(--thm-b-font);
    font-size: 16px;
    line-height: 1.5;
    counter-reset: sectionCounter;
}
.relative {
    position: relative;
}

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

ul li {
    margin-bottom: 0;
}
li a {
    text-decoration: none;
}
p {
 font-family:sans-serif;
 color: #727272;
 margin-bottom: 15px;
}
.section-padding {
    padding: 80px 0;
    position: relative;
}
.section-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}
.image-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/*Slick Arrows*/

.slick-arrow:hover {
    color: var(--thm-white) !important;
    background-color: var(--thm-color-one);
    border-color: inherit !important;
}

.slick-arrow:before {
    content: "\f053";
    font-family: var(--thm-icon-font);
    font-weight: 500;
    font-size: 15px;
}

.slick-arrow.slick-next:before {
    content: "\f054";
    font-family: 'FontAwesome';
    opacity: 1;
}
.slick-arrow.slick-prev:before {
    content: "\f053";
    font-family: 'FontAwesome';
    opacity: 1;
}

.slick-prev.slick-arrow {
    position: absolute;
    top: 48%;
    left: 1%;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 0;
    transition: 0.5s all;
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3766E8;
}
.slick-next.slick-arrow {
    position: absolute;
    top: 48%;
    right: 1%;
    bottom: 0;
    z-index: 1;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 0;
    transition: 0.5s all;
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3766E8;
}

.slick-arrow.slick-prev:hover {
    border: 2px solid #3766E8;
    background-color:transparent;
    color: #3766E8 !important;
}
.slick-arrow.slick-prev:hover:before {
    color: #3766E8;
}
.slick-arrow.slick-prev:focus {
    border: 2px solid #3766E8;
    background-color: #fff;
    color: #3766E8;
}
.slick-arrow.slick-prev:focus:before {
    color: #3766E8;
}

.slick-arrow.slick-next:hover {
    border: 2px solid #3766E8;
    background-color: transparent;
    color: #3766E8 !important;
}
.slick-arrow.slick-next:hover:before {
    color: #3766E8;
}
.slick-arrow.slick-next:focus {
    border: 2px solid #3766E8;
    background-color: #fff;
    color: #3766E8;
}
.slick-arrow.slick-next:focus:before {
    color: #3766E8;
}

/*Slick Dots*/

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.slick-dots li {
    padding: 0;
    line-height: 0;
}

.slick-dots li button {
    font-size: 0;
    width: 20px;
    height: 4px;
    /* border-radius: 50%; */
    background: #000;
    margin: 0px;
    transition: 0.6s all;
    border: 0px solid #182946;
}

.slick-dots li.slick-active button {
    width: 20px;
    height: 4px;
    /* border-radius: 50%; */
    background: var(--thm-color-two);
    border: 0px solid var(--thm-color-two);
    position: relative;
}

.slick-dots li.slick-active button:before {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    /* border: 2px solid var(--thm-color-one); */
    position: absolute;
    top: -5px;
    left: -5px;
}

/*pagination*/
.pagination {
    justify-content: center;
    margin-top: 20px;
    border-radius: 0;
    flex-wrap: wrap;
}

.pagination .page-item {
    margin: 0px 7px 15px;
}
a {
    transition: .3s all;
    text-decoration: none;
}

a:hover,
a:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}
a:hover,
a:focus {
    text-decoration: none;
}

h1 {
    font-size: 40px;
}
h2 {
    font-size: 32px;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 400;
}
.thm-btn-one {
    position: relative;
    background-color: var(--thm-color-one);
    color: #000;
    padding: 10px 25px;
    border-radius: 7px;
    border: 1px solid var(--thm-color-one);
    transition: 0.5s all;
    font-size: 14px;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    gap: 10px;
}
.thm-btn-one:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 7px;
    background: #000;
    width: 0%;
    height: 100%;
    transition: 0.5s all;
    z-index: -1;
}
.thm-btn-one:hover:before {
    width: 100%;
    margin: 0 auto;
}
.thm-btn-one i {
    background-color: #000;
    color: #fff;
    width: 20px;
    height: 20px;
    font-size: 13px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* transform: rotate(-45deg); */
    transition: 0.5s all;
}
.thm-btn-one:hover {
    color: #fff;
}
.thm-btn-two {
    background-color: #fff;
    color: var(--thm-color-two);
    position: relative;
    padding: 10px 25px;
    border-radius: 7px;
    border: 1px solid #fff;
    transition: 0.5s all;
    font-size: 14px;
    z-index: 0;
    text-transform: uppercase;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.thm-btn-two:hover {
    background-color: var(--thm-color-one);
}
.color-one {
    color: #c71585;
}
.color-two {
    color: #ff0081;
}
.border-btn {
    background: transparent;
    color: var(--thm-color-one);
}
.border-btn i {
    background-color: var(--thm-color-one);
    color: #fff;
}
.border-btn i:hover {
    background-color: #fff;
    color: var(--thm-color-one);
}
.thm-btn-one.shadow-btn {
    box-shadow: 0px 40px 60px 0px #8C198C33;
}
.header {
    background: #fff;
    border-bottom: 1px solid #C2C7D05E;
    /* padding: 10px 0; */
    box-shadow: 0 0 15px 0 rgba(8,18,109,.1)!important;
}
.navigation-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navigation {
    padding: 0;
    display: flex;
    align-items: center;
    margin: 0;
}

.header .navigation .menu-item a {
    color: #c71585;
    font-family: sans-serif;
    transition: 0.5s all;
    font-size: 15px;
    font-weight: 600;
    transform: scale(1.0);
}
.header .navigation .menu-item:hover a {
    color:#0056b3;
}
.header .navigation .menu-item {
    transition: 0.5s all;
}
.header .navigation .menu-item:hover {
    transform: scale(1.3);
}

/*------header end------*/
.main-menu {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
}
.menu-item {
    padding: 25px 20px;
}
.header.sticky {
    animation-name: fadeHeaderInDown;
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0;
    z-index: 22 !important;
    animation-duration: 1s;
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
    animation-fill-mode: both;
    background-color: #fff;
}
.navigaation-warpper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    padding: 7px 0;
}
.thm-btn-one.join-btn {
    border-radius: 10px;
    padding: 6px 25px;
}
/*-----navigation start-----*/
.header .navigation .menu-item-has-children {
    position: relative;
}
.header .navigation .menu-item-has-children>a:after {
    content: "\f078";
    font-family: var(--thm-icon-font);
    margin-left: 10px;
}
.header .navigation .menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transition: 0.5s all;
    width: 215px;
    visibility: hidden;
    opacity: 0;
    background-color: var(--thm-color-one);
    padding-left: 0;
}
.header .navigation .menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 11;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item {
    padding: 0;
    width: 100%;
    padding: 10px 10px;
    border-bottom: 1px solid;
    transition: 0.5s all;
    background-color: var(--thm-color-one);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item:hover a {
    background-color: #000;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item>a {
    color: var(--thm-white);
    display: flex;
}
 .sub-menu .menu-item a:hover {
    color: var(--thm-white) !important;
}
.header .navigation .menu-item-has-children .sub-menu .menu-item:hover {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>a:after {
    position: absolute;
    right: 15px;
    transform: rotate(-90deg);
}
.header .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 52px;
}
.header .header_action {
    margin-left: 15px;
}
.header.sticky .navigation .menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: -100%;
    top: 52px;
}
/*-----hamburger start------*/
.hamburger {
  display: none;
}
.hamburger-btn span{
    background: #fff;
    margin-bottom: 5px;
    display: flex;
    position: relative;
    width: 25px;
    height: 2px;
    transition: 0.5s all;
}
.hamburger-btn span:last-child {
    margin-bottom: 0;
}
.hamburger-btn.active span:first-child {
    transform: rotate(45deg);
    top: 4px;
}
.hamburger-btn.active span:nth-child(2) {
    display: none;
}
.hamburger-btn.active span:last-child {
    transform: rotate(-45deg);
    top: -3px;
}
/*-----hamburger end------*/
/* banner  */
.menu-item.telegram-btn a i {
    font-size: 40px;
    color: var(--thm-color-two);
    padding: 0;
}
.menu-item.telegram-btn {
    padding: 0;
    padding-right: 60px;
}
.logo img {
    width: 75%;
}
.banner-title {
    font-size: 60px;
    margin-bottom: 0;
}
.banner-perra {
    font-size: 30px;
}
.banner-image img {
    width: 30%;
}
.custom-button {
    padding: 1rem; /* Equivalent to p-3 */
    border-radius: 9999px; /* Equivalent to rounded-full */
    width: 18rem; /* Equivalent to w-48 */
    max-width: 18rem; /* Equivalent to md:w-72 */
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Equivalent to shadow */
    background: linear-gradient(45deg, #F08 0%, #ffdf5d 100%);
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px; /* Equivalent to font-16 */
    cursor: pointer;
    /* transition: 0.5s all; */
    text-decoration: none;
    animation: bounce 2s ease-in-out infinite; /* Adjusted duration for smoother effect */
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0); /* Start and end at the original position */
    }
    25% {
        transform: translateY(-10px); /* Move up to simulate the bounce */
    }
    50% {
        transform: translateY(0); /* Return to original position */
    }
    75% {
        transform: translateY(-15px); /* Slight upward motion for bounce */
    }
}


  .custom-button i {
    margin-right: 8px; /* Spacing between the icon and text */
  }

  .custom-link {
    background-color: #16a34a; /* Equivalent to bg-green-600 */
    padding: 1rem; /* Equivalent to p-3 */
    border-radius: 9999px; /* Equivalent to rounded-full */
    color: white;
    width: 12rem; /* Equivalent to w-48 */
    border: 2px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Equivalent to shadow */
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px; /* Equivalent to default font size */
    text-decoration: none; /* Ensures the link has no underline */
  }

  .custom-link i {
    margin-right: 8px; /* Spacing between the icon and text */
  }

  .custom-link:hover {
    opacity: 0.9; /* Adds a slight hover effect */
  }
  .play-game-card {
    box-shadow: 0 0 15px 0 rgba(8,18,109,.1);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    margin-bottom: 25px;
    background-color: #fff;
}
.play-game-card i {
    font-size: 35px;
    margin-bottom: 50px;
    color: #411c82;
    position: relative;
    z-index: 0;
    display: block;
}
.play-game-card i:after {
    content: "";
    position: absolute;
    top: -68px;
    right: 16%;
    width: 75px;
    height: 75px;
    transform: rotate(50deg) scale(.8) skew(-1deg,-15deg) translateX(16px) translateY(97px);
    background: #411c8214;
    border-radius: 15px;
    z-index: -1;
}
.play-game-card:after {
    content: "";
    position: absolute;
    width: 170px;
    height: 4px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-radius: 45px;
    transition: 0.5s all;
    background: linear-gradient(45deg,#411c82,#f08);
    border-radius: 15px;
}
.play-game-card:hover:after {
    width: 94%;
    border-radius: 0 0 20px 20px;
}
.feature-bg-shape-2 {
    position: absolute;
    left: 0;
    top: -200px;
    z-index: -1;
}
.img-fluid {
    max-width: 30%;
    height: auto;
}
.section-title i {
    color: #f08;
}
.section-title {
    margin-bottom: 38px;
}
.subtitle {
    margin-bottom: 5px;
    font-size: 18px;
    color: #8b8e93;
    font-family: Poppins, sans-serif;
    font-weight: 400;
}
.gaame-rate-main {
    box-shadow: 0 0 15px 0 rgba(8,18,109,.1);
    padding: 20px;
    border-radius: 10px;
    background: #fff;
}
.game-rate-card {
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 20px 0;
}
.game-rate-btn {
    background: linear-gradient(45deg,#f08,#ffdf5d);
    border-radius: 30px;
    border-color: #000;
    padding: 10px 25px;
    color: #fff;
}
.process-bg-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}


/* Container Styles */
.custom-container {
    background-color: white;
    border-radius: 0 10px 10px 0;
    display: flex;
    font-size: 0.75rem;
    box-shadow: 0 10px 15px 11px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 15px 20px;
    align-items: center;
    justify-content: space-between;
    border-right: 4px solid #f44336;
}

  /* Content Styles */
  .custom-content {
    text-align: center;
    margin-top: 0.75rem; /* Add spacing */
    margin-bottom: 1rem; /* Add spacing */
    padding-left: 0.75rem; /* Left padding */
  }

   .info-icon {
    padding-left: 0.25rem;
    color: #f08; /* Primary blue color */
    cursor: pointer;
  }

  /* Digit Display */
  .digit-display {
    color: #000;
    font-size: 2rem; /* Medium font size */
    font-weight: bold;
  }

  .digit {
    font-size: 2rem; /* Larger font size */
  }

  /* Charts */
  .charts {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    align-items: center;
}

  .chart-link {
    color: #e91e63; /* Pink color for links */
    font-weight: medium;
    text-decoration: none;
  }

  .separator {
    font-size: 2rem;
  }

  /* Button Styles */
  .play-button {
    position: relative;
  }
  .play-button .button-icon {
    position: relative;
    width: 65px;
    height: 65px;
    background-color: #6164ec; /* Indigo background */
    color: white;
    border-radius: 9999px; /* Full rounded button */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .button-icon {
    color: #e0e0e0; /* Light gray color for the icon */
    font-size: 1.5rem;
  }

  .ring-container {
    position: relative;
    width: 150px;
    height: 150px;
}

.button-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #6366f1; /* Indigo-500 */
    border-radius: 50%;
    border: 4px solid #4f46e5; /* Indigo-600 */
    opacity: 0.4;
    animation: ping 1.5s infinite ease-out;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.offer-list li {
    line-height: 4;
    display: flex;
    align-items: baseline;
    gap: 15px;
}
.offer-list li i {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f08;
    box-shadow: 0 0 15px 0 rgba(8,18,109,.1)!important;
}
.players-main {
    background: #411c8214;
    border-radius: 10px;
    padding: 25px;
}
.rating-color {
    color: #6c3;
}
.ratings i {
    font-size: 28px;
}
.players-main .label {
    width: 10%;
    text-align: right;
    padding-right: 10px;
    font-size: 23px;
    /* font-weight: bold; */
}
.ratings.text-center {
    margin-bottom: 20px;
}
.progress-container {
    width: 90%;
}
.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background-color: #6c3;
    transition: width 0.5s ease-in-out;
}
.ft-logo img {
    width: 50%;
}
.footer {
    background: #15192b;
}
.social-item {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: end;
}
.social-item li a {
    color: #fff;
    font-size: 22px;
}
.about-perra-disc {
    list-style: disc;
    padding-left: 25px;
    color: #000;
}
.about-perra-disc li {
   padding-bottom: 10px;
}
.about-perra-disc.number {
    list-style: auto;
    color: #000;
}
.about-card {
    border: 2px solid pink;
    padding: 20px;
    box-shadow: rgba(179, 119, 119, 0.58) 0px 5px 15px;
    margin: 15px;
    border-radius: 8px;
    height: 100%;
}
.about-card h3 {
    text-align: center;
}
.about-card p {
    text-align: justify;
}
.about-main p {
    text-align: justify;
}
.cart-btn-top {
    background: #f3f4f6;
    text-align: center;
    padding: 14px 14px;
}
.cart-heading {
    text-align: center;
    margin-top: 40px;
    background: var(--thm-color-one);
    padding: 20px 10px;
    color: #fff;
}
.cart-heading h5 {
    margin-bottom: 0;
}
.gameNameRow {
    line-height: 47px!important;
    margin: .25rem;
    height: 3rem;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 16px;
    line-height: 1.25rem;
    font-weight: 700;
    letter-spacing: .025em;
    --tw-text-opacity: 1;
    color: rgba(219,76,119)!important;
}

.about-marque.mt-5 {
    background-color: #8334721a;
    border-radius: 5px;
    margin: 5px;
    padding: 20px 15px;
    font-size: 30px;
}
.chatsupport-box {
    border-radius: 30px;
    padding: 100px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.chatsupport-box h1 {
    font-size: 23px;
    color: #3766E8;
    font-weight: 600;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 80px;
    z-index: 1000;
}
.whatsapp-button a {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-button a img {
    width: 60px;
    height: 60px;
}
#back-top a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 0px;
    text-align: center;
    line-height: 36px;
    border: #180b38 solid 1px;
    color: #ffffff;
    border-radius: 10px;
    background: var(--thm-color-one);
    transition-duration: 0.3s;
    font-size: 22px;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 10px;
    position: fixed;
    z-index: 100;
    bottom: 30px;
    right: 20px;
}
.play-game-card h3 {
    font-size: 18px;
}
.custom-content h3 {
    font-size: 18px;
}

