* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-red: #d10000;
    --dark-red: #a00000;
    --white: #F2F2F1;
    --light-gray: #fdf5f5;
    --text-color: #fff;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text-color);
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
}


a.daman-login.btn-1 {
    border: 2px solid #fff;
    padding: 7px 22px;
    border-radius: 25px;
    color: #fff;
    font-size: 17px;
}

a.daman-download.btn-1 {
    border: 2px solid #fff;
    padding: 7px 22px;
    border-radius: 25px;
    color: #fff;
    font-size: 17px;
}

/* -----Top----Headr-------------- */

header.top-header.deskshow {
    background-color: #fff;
    padding: 5px 0px;
}

.lotter92club {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.lotter92club .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 165px;
    padding: 9px 22px;
}

/* -------End---Top------Header---- */
header.myheader {
    background: linear-gradient(90deg, #49C755 0%, #0F9957 100%);
    position: relative;
    /* border-bottom: 1px solid #eeeeee; */
    padding-bottom: 9px;
}

header.myheader ul li {
    list-style: none;
    border-left: none;
}

.daman-bg-clor {
    background-color: #262525;
    padding: 25px 39px;
    border-radius: 10px;
    border: 1px solid #fec464;
    box-shadow: inset 0 0 8px rgba(255, 193, 7, 0.5);
}

.daman-bg-clor:hover {
    border: 1px solid #fec464;
    box-shadow: inset 0 0 8px rgba(255, 193, 7, 0.5);
    transition: 0.3s ease;
}

.nav__data {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main-logo img {
    padding-top: 8px;
    max-width: 170px;
}

.first-section {
    padding: 40px 0px 40px;
}

a {
    text-decoration: none;
}

.nav__menu {
    position: relative;
}

h1 {
    font-family: "Exo 2", sans-serif;
    font-size: 2.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
    color: #fff;
}


h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 22px;
    font-family: "Exo 2", sans-serif;
}

.specif {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 22px;
    font-family: "Exo 2", sans-serif;
}

h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 20px;
    font-family: "Exo 2", sans-serif;
}

h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 20px;
    font-family: "Exo 2", sans-serif;
}

ul.menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 13px;
}

li.menu-link {
    position: relative;
    padding: 7px 9px;
    z-index: 1;
    margin-left: 10px;
}

li.menu-link a {
    color: #fff;
    font-weight: 400;
    font-size: 17px;
    position: relative;
}

li.menu-link 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;
}

li.menu-link a:hover:before {
    width: 100%;
}

.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;
}

ul li {
    margin-bottom: 10px;
    padding: 2px 6px;
    line-height: 1.6;
    list-style: none;
    border-left: 4px solid #fff;
}


.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);
}

/* Dropdown */
.nav__menu ul.menu-list li.menu-link>ul.sunmenu {
    position: absolute;
    top: 100%;
    background: linear-gradient(90deg, #49C755 0%, #0F9957 100%);
    left: inherit;
    width: 250px;
    padding: 15px 0px 0px;
    border-radius: 0px 0px 10px 10px;
    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;
}

.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: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding-left: 20px;
    display: block;
    padding: 5px 20px;
}


section {
    background: var(--white);
    border-radius: 14px;
    margin: 40px 0;
    position: relative;
}

section .container {
    width: 100%;
    max-width: 1185px;
    margin: auto;
    background: linear-gradient(90deg, #49C755 0%, #0F9957 100%);
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    padding: 50px 45px;
    box-sizing: border-box;
    transition: all 0.4s ease;
}


p {
    line-height: 1.8;
    text-align: justify;
    font-family: "Rajdhani", sans-serif;
    font-weight: 500;
    margin: 15px 0;
}

.steps {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 20px 25px;
    margin: 34px 0;
    border-radius: 8px;
    font-family: "Rajdhani", sans-serif;
    border: 1px solid #fff;
}

.images img {
    max-width: 335px;
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 12px;
}

.images {
    text-align: center;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 20px 0px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.feature-images img {
    border-radius: 12px;
}

.feature-images {
    text-align: center;
    margin: 20px 0px;
}

.footer {
    background: linear-gradient(90deg, #49C755 0%, #0F9957 100%);
    color: white;
    padding: 24px 1rem 5px;
    margin-top: 2.4rem;
}

.footer-section ul {
    padding: 0px;
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
}

.footer-section ul li a {
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #fff;
    font-size: 23px;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 12px 20px 1px 10px;
    border-top: 1px solid #fff;
    margin-top: 0px;
}


.faq {
    border: 2px solid #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    color: #fff;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-section ul li {
    border-left: none;
}

.faq-header h3 {
    margin: 0;
    font-size: 1.1em;
    font-weight: 600;
    color: #fff;
}

.faq-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq.active .faq-header::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    color: #333;
    transition: all 0.4s ease;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.faq.active .faq-content {
    max-height: 300px;
    padding: 15px 20px 20px;
}


.conclusion {
    background-color: #fff;
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    line-height: 1.6;
}

/* -----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;
}

header.sticky {
    background-color: #fff;
    border-bottom: 1px solid #fff;
}

header.sticky ul li a {
    color: #fff;
}

.for-top-margin {
    margin-top: 40px !important;
}


.btn-groups {
    text-align: center;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 12px 36px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    margin: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
}

/* Different button color styles */
.btn-register {
    background: linear-gradient(90deg, #28a745, #66d37e);
}

.btn-login {
    background: linear-gradient(90deg, #007bff, #63a4ff);
}

.btn-download {
    background: linear-gradient(90deg, #ffab00, #ffcc4d);
}

/* Hover glow effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(255, 255, 255, 0.25);
}

.gift-box {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.gift-box p {
    text-align: center;
}

.gift-box h2 {
    margin-bottom: 12px;
    color: #fff;
}

.gift-code {
    display: inline-block;
    background: #fff;
    color: #0F9957;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    border: 2px dashed #0F9957;
    letter-spacing: 1px;
}

.specs {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 30px;
    margin-top: 45px;
}

.specs h2 {
    text-align: center;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    color: #fff;
}

th,
td {
    padding: 12px 15px;
    text-align: left;
}

td:first-child {
    font-weight: 600;
}

tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}


.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.review-box {
    background: #fff5f5;
    border: 1px solid #f3c2c2;
    border-left: 5px solid #c50000;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(197, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.review-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(197, 0, 0, 0.2);
}

.review-name {
    color: #c50000;
    font-size: 18px;
    margin-bottom: 8px;
}

.review-text {
    font-style: italic;
    font-size: 15px;
    color: #333;
    margin-bottom: 0;
    line-height: 1.7;
}

/* -----Style---Inner----Section------ */
section.inner-section .container {
    max-width: 1185px;
    margin: 32px auto;
    padding: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(200, 16, 46, 0.13);
    border-left: 4px solid #C8102E;
    padding: 24px;

    border-radius: 8px;
}

section.inner-section ul {
    list-style: none;
}

header#myheader .container {
    max-width: 1175px;
}

p.copy-right {
    text-align: center;
    margin: 0px;
}

.toc-container {
    background: #111;
    border: 1px solid #fff;
    border-radius: 10px;
    width: 100%;
    max-width: 700px;
    margin: 34px 0px 34px;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

/* Ã¢Å“â€¦ TOC Button */
.toc-toggle {
    background: linear-gradient(90deg, #49C755 0%, #0F9957 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    text-align: left;
    padding: 12px 18px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 10px 10px 0 0;
}

.toc-content {
    display: none;
    background: linear-gradient(90deg, #49C755 0%, #0F9957 100%);
    padding: 10px 20px;
    border-top: 1px solid #1f2020;
}

.toc-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc-content li {
    padding: 8px 0;
    border-bottom: 1px solid #fff;
}

.toc-content li:last-child {
    border-bottom: none;
}

.toc-content a {
    text-decoration: none;
    transition: 0.3s;
    padding-left: 16px;
    color: #fff;
}

.toc-content a:hover {
    color: #fff;
    text-shadow: 0 0 5px #d9ac4f;
}

.toc .container {
    max-width: 1174px;
}