* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(90deg, #f95959 0%, #ff9a8e 100%);
    font-family: "Exo 2", sans-serif;
    color: #fff;
}

.container {
    max-width: 1250px;
}

/* ===== HEADER ===== */
.topmenu {
    background: #ffffff;
    padding: 4px;
    text-align: center;
    color: #fff;
}

.myheader {
    background: linear-gradient(90deg, #f95959 0%, #ff9a8e 100%);
    top: 0;
    padding: 0px 0px;
    transition: box-shadow 0.3s ease;
}


.nav__data {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main-logo img {
    max-width: 126px;
    padding: 4px;
    border-radius: 10px;
}

.nav__menu {
    position: relative;
}

ul.menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 13px;
    list-style: none;
}



li.menu-link {
    position: relative;
    padding: 3px 9px;
    z-index: 1;
    margin-left: 10px;
    list-style: none;
}

li.menu-link a {
    color: #000;
    font-weight: 400;
    font-size: 17px;
    position: relative;
    text-decoration: none;
}

li.menu-link a:before {
    position: absolute;
    content: ' ';
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 100%;
    border-bottom: 2px solid #000;
    transition: all 0.5s ease-in-out;
    padding-top: 2px;
    z-index: -1;
}

li.menu-link a:hover:before {
    width: 100%;
}

.sunmenu li.sb-links a {
    position: relative;
}

.sunmenu li.sb-links a:before {
    position: absolute;
    content: ' ';
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 100%;
    border-bottom: 1px solid #000;
    transition: all 0.5s ease-in-out;
    padding-top: 2px;
    z-index: -1;
    background-color: #fff;
}

.sunmenu li.sb-links a:hover:before {
    width: 100%;
    color: #000;
}

.sunmenu li.sb-links a:hover {
    color: #000 !important;
    transition: all 0.5s ease-in-out;
}

.nav__toggle {
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid #fff;
    display: none;
}

.nav__toggle .pizza,
.close {
    position: absolute;
    max-width: max-content;
    max-height: max-content;
    inset: 0;
    margin: auto;
    font-size: 30px;
    color: #fff;
    transition: all 0.5s ease-in-out;
}

.close {
    opacity: 0;
    visibility: hidden;
}

.show-menu {
    transform: translateX(0%) !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 999 !important;
}

.show-icon .close {
    transform: rotate(90deg);
    opacity: 1;
    visibility: visible;
    position: absolute;
    left: -103px;
    z-index: 999 !important;
}

.show-icon .pizza {
    opacity: 1;
    transform: rotate(360deg);
}

.nav__menu ul.menu-list li.menu-link>ul.sunmenu {
    position: absolute;
    top: 100%;
    left: inherit;
    width: 250px;
    padding: 15px 0px 0px;
    border-radius: 0px;
    background: linear-gradient(90deg, #f95959 0%, #ff9a8e 100%);
    opacity: 0;
    visibility: hidden;
    transform: rotateX(-90deg);
    transform-origin: top;
    transition: all 0.3s ease-in-out;
    box-shadow: -3px 3px 4px 0px #fff;
    z-index: 100;
    margin-left: -70px;
    margin-top: 8px;
    list-style: none;
}

.nav__menu ul.menu-list li.menu-link:hover ul.sunmenu {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg);
}

.nav__menu ul.menu-list li.menu-link>ul>li>a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    display: block;
    padding: 5px 20px;
    border-bottom: 2px solid #fff;
}

/* ===== MENU ===== */

a.v3-download.btn-1 {
    background-color: red !important;
}

a.v3-login.btn-1,
a.v3-download.btn-1 {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border: 2px solid #ff8b8b;
    padding: 5px 22px;
    border-radius: 6px;
    font-size: 17px;
    color: #fff;
    background-color: green;
    text-decoration: none;
    transition: color 0.3s ease;
    z-index: 1;
}

a.v3-download.btn-1:hover {
    box-shadow: 0 0 15px yellow;
    color: #fff;
}

a.v3-login.btn-1:hover {
    box-shadow: 0 0 15px yellow;
    color: #fff;
}

/* LEFT + RIGHT layers */
a.v3-login.btn-1::before,
a.v3-login.btn-1::after,
a.v3-download.btn-1::before,
a.v3-download.btn-1::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #f95959 0%, #ff9a8e 100%);
    color: #fff;
    transition: 0.4s ease;
    z-index: 0;
}

/* left side */
a.v3-login.btn-1::before,
a.v3-download.btn-1::before {
    left: -50%;
}

/* right side */
a.v3-login.btn-1::after,
a.v3-download.btn-1::after {
    right: -50%;
}

/* hover animation */
a.v3-login.btn-1:hover::before,
a.v3-download.btn-1:hover::before {
    left: 0;
}

a.v3-login.btn-1:hover::after,
a.v3-download.btn-1:hover::after {
    right: 0;
}

/* text always on top */
a.v3-login.btn-1 span,
a.v3-download.btn-1 span {
    position: relative;
    z-index: 2;
}

.v3-game {
    display: flex;
    margin: auto;
    gap: 7px;
}

.v3-game.mob-show {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
}

/* 
        /* ================= HERO DESKTOP ================= */
.hero {
    min-height: 74vh;
    background:
        linear-gradient(rgba(5, 11, 44, 0.75), rgba(5, 11, 44, 0.75)),
        url("../image/Banner-images/BANNER\ 1.webp");
    background-size: cover;
    background-position: center;
    align-items: center;
    padding: 0 8%;
}

.hero-container {
    padding-top: 24px;
}

/* TEXT */
.hero-content h1 {
    font-size: 45px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
    text-shadow: 0 2px 1px rgb(255 252 252 / 85%);
}

.hero-content {
    text-align: center;
}

.hero-content h1 span {
    color: red;
}

.hero-content p {
    margin: 0px 0px 5px;
    font-size: 17px;
    color: #f0f0f0;
    text-shadow: 0 2px 1px rgba(0, 0, 0, 0.6);
}

.hero-bottom {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 26px;
    align-items: center;
}

ul.no-bullets li {
    padding: 6px 0px;
}

.hero-art.reveal.for-height.is-visible img {
    height: 460px;
}

.hero-art img {
    width: 100%;
    margin-bottom: 25px;
    border-radius: 13px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.hero-art.reveal.for-height.is-visible {
    margin: auto;
}

/* FEATURES */
.features {
    display: grid;
    gap: 3px 40px;
    padding: 20px 3px 40px;
    text-align: justify;
    margin: auto;
    justify-content: center;
}

.features li {
    list-style: none;
    font-size: 15px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.features li::before {
    content: "Ã¢Å“â€¦";
    color: #00ff99;
    margin-right: 8px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 6px;
    padding: 11px 36px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1;
}

/* Hover lift + shadow */
.btn:hover {
    box-shadow: 0 2px 2px yellow;
    /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65); */
}

/* Keep your existing gradients */
.btn-login {
    background: linear-gradient(180deg, #ff5252, #c62828);
}

.btn-download {
    background: linear-gradient(180deg, #4caf50, #1b5e20);
}

/* LEFT-RIGHT hover overlay */
.btn::before,
.btn::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #f95959 0%, #ff9a8e 100%);
    /* hover background */
    transition: all 0.45s ease;
    z-index: 0;
    color: #000;
}

.hero-d-buttons.new {
    display: flex;
    margin: 20px 0px 21px;
    justify-content: start;
    gap: 6px;
}

/* Left side starts hidden */
.btn::before {
    left: -50%;
}

/* Right side starts hidden */
.btn::after {
    right: -50%;
}

/* Hover animation */
.btn:hover::before {
    left: 0;
}

.btn:hover::after {
    right: 0;
}

/* Text always on top */
.btn span {
    position: relative;
    z-index: 2;
}


/* RIGHT IMAGE DESKTOP */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 25px;
}

.hero-image img {
    height: 75vh;
    max-height: 720px;
    width: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
    z-index: 1;
}

/* -----Sticky----Style----Code-------- */
.sticky {
    position: sticky !important;
    top: 0;
    width: 100%;
    z-index: 9999 !important;
    transition: all 0.6s ease-in-out;
    animation: smothScroll 1s forwards;
}

@keyframes smothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}

.sticky+.site-content {
    padding-top: 102px;
}

.sticky header.myheader {
    background-color: #3f3f3f !important;
    color: #fff;
}

.sticky .myheaders {
    background-color: #f8f5fb;
    color: #000;

}

/* header.sticky {
    background-color: #ffffff !important;
    box-shadow: 0px 0px 22px #85858569 !important;
} */
.about-section {
    color: #000;
    padding: 19px 25px;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
}

section.gift-code.about-section {
    text-align: center;
    margin-top: 30px;
}

.about-section h2 {
    color: #f88a20;
}

/* left & right lines */
.section-title::before,
.section-title::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #000);
}

.section-title::after {
    background: linear-gradient(to left, transparent, #000);
}

/* ===============================
   IMAGE ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ CLEAN & SHARP
================================ */
.game-card img {
    width: 100%;
    object-fit: contain;
    margin-bottom: 6px;
    border-radius: 20px;
    background-color: #fff;
    padding: 15px;
}

/* ===============================
   TEXT
================================ */
.game-card span {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* ===============================
   DOTS ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Å“ FIXED & VISIBLE
================================ */
.swiper-pagination {
    left: 0;
    right: 0;
    text-align: center;
    background: transparent;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.4;

}

span.swiper-pagination-bullet {
    width: 15px;
    height: 9px;
    background-color: #080707;
}

.swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

.swiper {
    position: relative;
    padding-bottom: 50px !important;
}

/* ===== Swiper Arrows Styling ===== */
.swiper-button-next,
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background-color: red;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000 !important;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 10;
    color: #1b2b6b;
    font-weight: bold;
    padding: 6px;
}

/* Position adjustments */
.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

/* Optional: use arrow icons if not using default */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}


.faq-section {
    padding: 50px 20px;
    background: #fe9187;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.faq-column {
    display: flex;
    flex-direction: column;
}

/* FAQ BOX */
.faq {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-header {
    padding: 15px 20px;
    color: #000;
    cursor: pointer;
    position: relative;
    font-weight: 600;
}

.faq-header h3 {
    font-size: 20px;
}

.faq-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 22px;
    font-size: 22px;
    transition: 0.3s;
}

.faq.active .faq-header::after {
    transform: rotate(45deg);
    /* rotate icon */
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    color: #000;
    padding: 0 20px;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq.active .faq-content {
    max-height: 300px;
    padding: 15px 20px 20px;
}


.footerbar {
    background-color: #130041;
    padding: 2px;
    text-align: center;
    color: #000;
}

.trust-item span::first-letter {
    font-size: 32px;
    margin-right: 8px;
    vertical-align: middle;
}

.footer {
    background: #f7f8ff;
    color: #000;
    padding: 35px 0 0px;
    font-size: 14px;
}

.footer-container {
    max-width: 1250px;
    margin: auto;
    padding: 0 20px;
    display: flex;
}

/* Disclaimer */
.footer-disclaimer {
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 1;
    font-size: 17px;
    padding: 16px;
    border-radius: 10px;
}

/* Bottom layout */
.footer-bottom {
    display: inline;
    align-items: center;
    justify-content: space-between;
    padding: 23px 0px 0px 0px;
}

/* Quick Links */
.footer-links {
    display: flex;
    justify-content: center;
    margin-top: 37px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    opacity: 0.9;
}

.footer-links a:hover {
    color: #ffa500;
}

/* Rating Center */
.footer-rating {
    text-align: center;
    padding: 1px 0px 10px !important;
}

.footer-rating .stars {
    color: gold;
    font-size: 32px;
    margin-bottom: 5px;
}

.footer-rating span {
    font-size: 17px;
}

/* Badges Right */
.footer-badges {
    width: 40%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.copy-right {
    background: linear-gradient(90deg, #f95959 0%, #ff9a8e 100%);
    text-align: center;
    margin-top: 14px;
    font-size: 16px;
    padding: 4px 0px;
}

.hero-d-buttons {
    margin-bottom: 13px;
    DISPLAY: FLEX;
    justify-content: center;
}

.footer-badges img {
    height: 47px;
}

.footer-hea-text {
    font-size: 23px;
    color: #080e48;
}

.hero-bg-alt {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

section.about-section.blog-section h1 {
    color: #fff;
}

.blogs-row {
    background-color: #130041;
    text-align: center;
    padding: 20px;
}

/* Smooth transition */
.about-section,
.review-section {
    transition: 0.4s ease;
}

.toc-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

#tocList {
    list-style: none;
    padding-left: 0;
}

#tocList li {
    margin: 6px 0;
}

.toc-h1 a {
    font-weight: bold;
}

.toc-h2 {
    margin-left: 15px;
}

.toc-h3 {
    margin-left: 30px;
    font-size: 14px;
}

#tocList a {
    text-decoration: none;
    color: #333;
}

#tocList a:hover {
    color: #007bff;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #f88a20;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title span {
    position: relative;
    padding: 0 0px;
    white-space: nowrap;
    color: #000;
}


.review-section {
    color: #000;
    background: linear-gradient(90deg, #f95959 0%, #ff9a8e 100%);
    margin-top: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.review-section h2 {
    color: #fff;
    font-weight: 700;
}

.review-section h3 {
    font-weight: 600;
    color: #000;
}

section.Bonus.section-games {
    padding-top: 40px;
}

.box {
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 30px;
    background: linear-gradient(90deg, #f95959 0%, #ff9a8e 100%);
    border-radius: 18px;
    padding: 28px;
}

/* ===== Table Wrapper ===== */
.table-wrap {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===== Table ===== */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

td.label {
    width: 42%;
    background: #f7f8ff;
    padding: 14px 18px;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.4px;
}

td.value {
    background: #fff;
    padding: 14px 18px;
    color: #000;
    font-weight: 600;
}

/* Row Hover Effect */
tr {
    transition: all 0.3s ease;
}

tr:hover td.value {
    background: #ffffff;
    transform: scale(1.01);
    color: #000 !important;
}

/* Row Divider */
tr:not(:last-child) td {
    border-bottom: 1px solid #7f69fb;
}

/* ===== Right Side ===== */
.right {
    text-align: center;
    position: relative;
}

.right img {
    width: 75%;
    border-radius: 15px;
    margin-top: 150px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
    transition: 0.4s ease;
}

.right img:hover {
    transform: rotate(10deg) scale(1.05);
}

/* ===== Info Box ===== */
.info {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    font-size: 14px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

p.subtitle {
    text-align: center;
    color: #000;
    font-weight: 600;
}

.swiper {
    position: relative;
    padding-bottom: 50px;
}


section.popular-games {
    margin: 40px 0px;
}

.steps {
    display: flex;
    gap: 22px;
    padding: 0px;
}

.step-box {
    flex: 1;
    background: #fff;
    border-radius: 14px;
    padding: 16px 20px 0px;
    display: flex;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease-out;
}

.step-box:hover {
    transform: translateY(-8px);
}

.step-box img {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
}

.step-text .step-heading {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.step-text p {
    font-size: 13px;
    color: #000;
    line-height: 1.5;
}

@media(max-width:900px) {
    .steps {
        flex-direction: column;
    }
}

.download-instructions ol {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 16px;
}

.download-instructions ol li {
    margin-bottom: 14px;
    color: #000;
    padding: 8px;
    border-radius: 10px;
}

.black-type-clrs {
    padding: 18px 0px;
    border-radius: 12px;
    border: 3px solid #ff978c;
    margin: 20px 0px;
    color: #fff;
}

.center {
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
}

ul li img,
ol li img {
    display: block;
    margin: 12px auto;
    max-width: 275px;
    width: 100%;
    height: auto;
}

ol,
ul {
    padding: 0px 20px;
}

section.all-section.register ol li {
    color: #fff;
}

section.all-section.register ul li {
    color: #000;
}

.cards.reveal {
    padding: 10px 0px 0px;
    margin-bottom: 7px;
}

.cards.reveal.top-mrgn {
    margin-top: 37px;
}

/* 2 Column */
.games-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
}

.new-game-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: 0.6s ease;
    display: flex;
}

.game-img {
    display: flex;
    padding: 18px 0px 19px 11px;
}

.game-overlay h3 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 500;
    color: #ff4d4d;
}

/* Bottom Heading */
.game-info {
    text-align: center;
    padding: 18px;
    transition: all 0.3s ease;
}

.game-info h3 {
    margin: 0;
    font-size: 20px;
    color: #ff4d4d;
}

.game-img img {
    max-width: 55%;
    border-radius: 10px 0px 0px 10px;
    transition: all 0.5s ease-in-out;
}

.game-img {
    overflow: hidden;

}

.game-img:hover img {
    transform: scale(1.5);
}

.hvr-box {
    width: 55%;
    overflow: hidden;
}

.hvr-box img {
    max-width: 100%;
}

.game-overlay {
    max-width: 45%;
    padding: 15px;
}

.my-swipper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(90deg, #f95959 0%, #ff9a8e 100%);
    border-radius: 10px;
}

.my-swipper .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 17px 0px;
    border-radius: 25px;
}

.game-55-card {
    background: #f7f8ff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    padding: 25px 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 260px;
    text-align: center;
}

.game-55-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.18);
}

.game-55-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.game-55-card-review-avatar img {
    width: 100%;
    height: 80px;
    border-radius: 10px;
}

.game-55-card-review-avatar {
    width: 74px;
    height: 58px;
    flex-shrink: 0;
}

.lottery7-review-game {
    font-weight: bold;
    font-size: 1.2rem;
    color: #000;
    text-shadow: 0px 0px #f51818;
}

.lottery7-review-comment {
    font-size: 1rem;
    line-height: 1.6;
    color: #000;
}

.name-heading {
    margin-top: 10px;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    text-shadow: 0px 0px #f51818;
}


#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 14%;
    background: radial-gradient(circle at top left, #f88a20, #f88a20);
    color: #000;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

#backToTop.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

#backToTop:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
    transform: scale(1.1);
}

.arrow {
    position: absolute;
    font-size: 22px;
    font-weight: bold;
    color: #111;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

.progress-ring__circle {
    stroke: #000;
    stroke-opacity: 0.25;
    transition: stroke-dashoffset 0.25s linear, stroke-opacity 0.25s linear;
}

.progress-ring__circle.active {
    stroke-opacity: 1;
    filter: drop-shadow(0 0 6px #fed385);
}

@media (max-width: 768px) {
    #backToTop {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

.lottery-7-review-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.inner-section {
    padding: 17px 0px;
}

.btn-download.forclrchanga {
    background: #7f69fb !important;
}

.inner-section .review-section {
    margin-top: 0px;
}

section.section.inner-section .review-section {
    margin-top: 0px;
}

section.section.inner-section {
    padding: 0px;
}

.center-cnct {
    text-align: center;
}

.author-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-img img {
    max-width: 206px;
    border-radius: 30px;
    border: 7px solid #fff;
    padding: 10px;
}

.topheading {
    color: #000;
    font-weight: 500;
}

.payment-section .swiper-slide {
    background-color: #f7f8ff;
    padding: 20px;
    border-radius: 20px;
}

.payment-section .swiper-slide img {
    border-radius: 8px !important;
    width: 190px;
    height: 85px;
}

section.popular-games .swiper-slide {
    background-color: #fff;
    padding: 6px;
    border-radius: 13px;
    border: 2px solid #00b300;

}

section.popular-games .swiper-slide img {
    padding: 8px;
}

.result-found {
    background-color: #ebedf9;
    height: 350px;
    padding: 20px;
    border-top: 7px solid #00b300;
    border-left: 7px solid #00b300;
}

footer.footer img {
    max-width: 162px;
}

.register.about-section {
    background: #fff;
    margin-bottom: 40px;
}

.all-cards {
    display: flex;
    justify-content: space-between;
}

.new-card {
    background: #f7f8ff;
    padding: 30px;
    color: #000;
    border-radius: 10px;
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.5);
}

.inner-card {
    background: #000c1c;
    margin: 6px;
    padding: 8px;
    border-radius: 10px;
}

.inner-sections {
    padding: 15px 0;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0;
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
}

.features-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1976d2, #0d47a1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.text {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.blogs-row {
    background-color: #f8f5fb;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: 0.4s ease;
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.blog-img-wrapper img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.5s ease;
    display: block;
}

/* Overlay */
.blog-overlay {
    position: absolute;
    inset: 0;
    background: #fc615f;
    opacity: .25;
    transition: 0.4s ease;
}

/* Common Button Style */
.bottom-btn a.btn-link,
.center-btn a.btn-link {
    position: relative;
    display: inline-block;
    padding: 12px 21px;
    background: #1f3c88;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    border: 2px solid #1f3c88;
    overflow: hidden;
    /* Important */
    z-index: 1;
}

/* Button Hover Background Animation (Inside Only) */
.bottom-btn a.btn-link,
.center-btn a.btn-link {
    position: relative;
    z-index: 2;
}

.bottom-btn a.btn-link::before,
.center-btn a.btn-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fc615f;
    transform: scale(0);
    transition: 0.4s ease;
    border-radius: 30px;
    z-index: -1;
}

.bottom-btn a.btn-link:hover::before,
.center-btn a.btn-link:hover::before {
    transform: scale(1);
}

.bottom-btn a.btn-link:hover,
.center-btn a.btn-link:hover {
    color: #fff;
}

/* Bottom Button */
.bottom-btn {
    text-align: center;
    margin-top: 15px;
    transition: .4s ease;
}

/* Center Button */
.center-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.6);
    opacity: 0;
    transition: .4s ease;
    z-index: 2;
}

/* Hover Text */
.hover-text {
    display: none;
    text-align: center;
    font-weight: 700;
    margin-top: 15px;
    color: #1f3c88;
    font-size: 18px;
}

/* Hover Effects */
.blogs-row:hover img {
    transform: scale(1.3);
}

.blogs-row:hover .blog-overlay {
    opacity: 0;
}

.blogs-row:hover .bottom-btn {
    display: none;
}

.blogs-row:hover .hover-text {
    display: block;
}

.blogs-row:hover .center-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.blogs-row:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.new-review {
    border: 19px solid #fff;
    padding: 4px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.row-gift {
    text-align: center;
}

.row-gift p span {
    border: 3px dashed red;
    padding: 9px 20px;
    font-size: 18px;
    font-weight: 500;
}

.row-gift h2 {
    margin-bottom: 20px;
}

section.black-section {
    padding: 40px 0px;
}

.about-us {
    border: 10px solid #fff;
    border-radius: 10px;
    padding: 10px;
}

section.all-section.review-section.r-news {
    margin: 40px 0px;
}