* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-red: #d10000;
    --dark-red: #a00000;
    --white: #ffffff;
    --light-gray: #fdf5f5;
    --text-color: #1a1a1a;
}

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-color: #CD0103;
    /* box-shadow: 1px 0px 1px 0px rgba(17, 0, 0, .71); */
    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: 68px;
}

.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: #CD0103;
}


h2 {
    color: #CD0103;
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 22px;
    font-family: "Exo 2", sans-serif;
}

h3 {
    color: #CD0103;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 20px;
    font-family: "Exo 2", sans-serif;
}

h4 {
    color: #cd0103;
    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;
    border-left: 4px solid #CD0103;
}


.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%;
    left: inherit;
    width: 250px;
    padding: 15px 0px 0px;
    background-color: #cd0103;
    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: 1150px;
    margin: auto;
    background: var(--white);
    border-left: 6px solid var(--main-red);
    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;
}

.split-sec {
    background: linear-gradient(120deg, var(--light-gray) 50%, var(--white) 50%);
    padding: 50px 20px;
}

.split-sec:nth-child(even) {
    background: linear-gradient(240deg, var(--light-gray) 50%, var(--white) 50%);
}




p {
    line-height: 1.8;
    text-align: justify;
    font-family: "Rajdhani", sans-serif;
    font-weight: 500;
    margin: 15px 0;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 377px;
    padding: 14px 22px;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    margin: auto;
}

.btn i {
    font-size: 20px;
}

/* Login Button */
.btn-login {
    background: linear-gradient(90deg, #d90429, #9b021c);
}

.btn-login:hover {
    background: linear-gradient(90deg, #9b021c, #d90429);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(217, 4, 41, 0.4);
}

/* Register Button */
.btn-register {
    background: linear-gradient(90deg, #ffb300, #ff7b00);
    color: #111;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.btn-register:hover {
    background: linear-gradient(90deg, #ff7b00, #ffb300);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 123, 0, 0.5);
}

/* Download Button */
.btn-download {
    background: linear-gradient(90deg, #0057ff, #00c48c);
    box-shadow: 0 8px 20px rgba(0, 87, 255, 0.4);
}

.btn-download:hover {
    background: linear-gradient(90deg, #00c48c, #0057ff);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 196, 140, 0.5);
}

.steps {
    background: var(--light-gray);
    padding: 20px 25px;
    margin: 20px 0;
    border-radius: 8px;
    font-family: "Rajdhani", sans-serif;
    border: 1px solid #CD0103;
}

.images img {
    max-width: 335px;
    border: 1px solid #cd0103;
    padding: 10px;
    border-radius: 12px;
}

.images {
    text-align: center;
    margin-top: 20px;
}

.feature-images img {
    border-radius: 12px;
}

.feature-images {
    text-align: center;
    margin: 20px 0px;
}

.footer {
    background-color: #CD0103;
    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 #CD0103;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    background-color: #CD0103;
    color: #fff;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.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;
    background: #fff;
    color: #333;
    transition: all 0.4s ease;
    padding: 0 20px;
}

.faq.active .faq-content {
    max-height: 300px;
    padding: 15px 20px 20px;
}


.conclusion {
    background-color: #CD0103;
    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: #cd0103;
    border-bottom: 1px solid #cd0103;
}

header.sticky ul li a {
    color: #fff;
}

.for-top-margin {
    margin-top: 40px !important;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Urbanist', sans-serif;
    font-weight: 500;
    font-size: 1em;
    text-align: center;
}

.styled-table thead tr {
    background-color: #f9f9f9;
}

.styled-table th,
.styled-table td {
    padding: 12px;
    border: 1.5px solid;
}

.payment-method-col {
    border-color: #d10000;
}

.limits-col {
    border-color: #ff6600;
}

.time-col {
    border-color: #6610f2;
}

.styled-table th.payment-method-col {
    color: #d10000;
}

.styled-table th.limits-col {
    color: #ff6600;
}

.styled-table th.time-col {
    color: #6610f2;
}

.note {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-top: 20px;
    font-size: 1em;
    text-align: left;
}

.point-list {
    background: #f0e6e6;
    border-radius: 6px;
    padding: 15px 25px;
    border-left: 5px solid #c50000;
    margin-top: 15px;
}

.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: 1150px;
    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 #cd0103;
    border-radius: 10px;
    width: 100%;
    max-width: 700px;
    margin: 40px 0px 0px;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

/* Ã¢Å“â€¦ TOC Button */
.toc-toggle {
    background: #cd0103;
    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: #ffffff;
    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 #cd0103;
}

.toc-content li:last-child {
    border-bottom: none;
}

.toc-content a {
    text-decoration: none;
    transition: 0.3s;
    padding-left: 16px;
}

.toc-content a:hover {
    color: #cd0103;
    text-shadow: 0 0 5px #d9ac4f;
}

.toc .container {
    max-width: 1174px;
}