/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    background: var(--accent4);
    color: var(--body);
    border: none;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(40px);
}

#scrollToTopBtn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#scrollToTopBtn:hover {
    background: var(--main);
    color: #fff;
    transform: scale(1.1);
}

footer {
    background: #181818;
    color: var(--text-light);
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
    margin-top: 40px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--main);
    margin-bottom: 0.5rem;
}

.footer-links {
    margin: 1rem 0;
    font-size: 1rem;
}

.footer-links a {
    color: var(--accent4);
    text-decoration: none;
    margin: 0 0.3rem;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--main);
    text-decoration: underline;
}

.footer-social {
    margin: 1rem 0;
}

.footer-social a {
    display: inline-block;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    vertical-align: middle;
    color: var(--text-light);
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--main);
}

.footer-copyright {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

:root {
    --bg: #1B1B1B;
    --body: #151515;
    --main: #E63946;
    --secondary: #F1FAEE;
    --accent: #fb182f;
    --accent2: #fb182fcd;
    --accent3: #fb182f8b;
    --accent4: #f7b02c;
    --text: #FFFFFF;
    --text-light: #B0B0B0;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    background: var(--body);
    color: var(--text);
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
}

header {
    position: relative;
    min-height: 880px;
    background: linear-gradient(rgba(27, 27, 27, 0.85), rgba(27, 27, 27, 0.475)), url('../images/header-bg.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    align-items: center;
    box-shadow: 0 8px 32px rgba(230, 57, 70, 0.12);
}

.pst-top-splider {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    bottom: -40px;
}

.banner-content h1 {
    font-family: 'Poppins', serif;
    font-size: 3.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1rem;
    width: 50%;
    text-align: left;
}

.banner-content {
    padding: 0 20px;
    padding-top: 140px;
    padding-bottom: 120px;
}

.banner-content p {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    width: 50%;
}



section {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* h1,
h2, */
h3,
h4 {
    font-size: unset;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

table {
    width: 100%;
    background: #232323;
    border-radius: 12px;
    border-collapse: collapse;
    margin-bottom: 2rem;
    color: var(--text-light);
}

th,
td {
    padding: 0.8rem;
    border: 1px solid var(--accent);
}

th {
    background: var(--accent);
    color: var(--secondary);
    font-size: 1.1rem;
}

tr:nth-child(even) {
    background: #222;
}

tr:nth-child(odd) {
    background: #181818;
}

a {
    color: var(--main);
    text-decoration: underline;
    font-weight: 600;
}

ul,
ol {
    color: var(--text-light);
}




.premium-offers {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.offer {
    background: #292929;
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 220px;
    color: var(--secondary);
    text-align: center;
    box-shadow: 0 2px 8px rgba(106, 5, 114, 0.08);
}

.offer-title {
    font-family: 'Playfair Display', serif;
    color: var(--main);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.offer-price {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.offer-features {
    color: var(--text-light);
    font-size: 0.95rem;
}

footer {
    background: #181818;
    color: var(--text-light);
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
}

.social-icons {
    margin: 1rem 0;
}

.social-icons a {
    display: inline-block;
    margin: 0 0.5rem;
    vertical-align: middle;
}

.social-icons svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}

@media (max-width: 700px) {
    header {
        height: 180px;
    }

    .banner-content h1 {
        font-size: 1.2rem;
    }

    section {
        padding: 1rem 0.5rem;
    }

    .premium-offers {
        flex-direction: column;
        align-items: center;
    }
}

.gri-container-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin: 45px 10px;
}

.card-content>div {
    background: linear-gradient(-185deg, var(--accent2) 0%, var(--bg) 70%);
    min-height: 485px;
    padding: 20px;
    border-radius: 15px;
    transition: all .2s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.card-content>div:hover {
    transform: scale(1.05);
}

.header-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.header-card h3 {
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: bold;
}

.header-card span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 15px;
    border: 3px solid var(--secondary);
    border-radius: 20px;
}

.card-content p {
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 50px;
    margin: 7px 0px;
    color: var(--secondary);
    font-weight: bold;
    border-radius: 15px;
}

.card-content p span i {
    font-size: 25px;
    color: var(--accent4);
}

.card-btn-container {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
}

.card-btn-container button {
    padding: 17px;
    font-size: 18px;
    width: 90%;
    border-radius: 50px;
    border: none;
    background: var(--accent4);
    color: var(--body);
}

.card-btn-container button span {
    margin-left: 10px;
}

.advice-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    grid-gap: 20px;
}

.advice-card-column {
    margin-bottom: 30px;
}

.advice-card-column div,
.advice-card div {
    border-radius: 20px;
    padding: 5px;
}

.advice-card-column div:nth-child(1),
.advice-card div:nth-child(1) {
    background: linear-gradient(50deg, var(--body) 0%, var(--bg) 60%);
}

.advice-card-column div h3,
.advice-card div h3 {
    background: linear-gradient(50deg, var(--accent2) 0%, var(--bg) 60%);
}

.advice-card-column div ul,
.advice-card div ul {
    padding: 0;
    list-style-type: none;
}

.advice-card-column div ul li,
.advice-card div ul li {
    margin: 10px;
    color: var(--text);
    background: linear-gradient(50deg, var(--body) 0%, var(--bg) 60%);
    border-radius: 10px;
    padding: 10px;
}

.advice-card-column div h3,
.advice-card div h3 {
    padding: 15px;
    color: var(--text);
    text-transform: uppercase;
    border-radius: 5px;
}

.padding-bg {
    padding: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin: 25px 0 20px 0px;
    height: 300px;
}

.Deep-nude-bg {
    margin: 25px 0 20px 0px;
}

.Deep-nude-bg .bg {
    background: var(--bg);
    padding: 30px;
}

.Deep-nude-bg .bg ul {
    padding: 0;
    list-style-type: none;
}

.Deep-nude-bg .bg ul li::before {
    content: ' * ';
    color: var(--accent);
    margin-right: 10px;
}

.padding-bg+div {
    background: var(--bg);
    padding: 30px;
    position: relative;
    border-radius: 20px;
    margin: 25px 0 20px 0px;
    top: -55px;
}

.undressap-bg {
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 6%, var(--body) 80%), url('../images/undressapp.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.nudify-bg {
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 6%, var(--body) 80%), url('../images/nudify.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.undresscc-bg {
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 6%, var(--body) 80%), url('../images/undressCC.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.undressherapp-bg {
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 6%, var(--body) 80%), url('../images/undressapp.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.Candy-bg {
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 6%, var(--body) 80%), url('../images/candiIA.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.Undressvip-bg {
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 6%, var(--body) 80%), url('../images/Undress.vip.png');
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: center center; */
}

.promptchan-bg {
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 6%, var(--body) 80%), url('../images/promptchan.png');
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: center center; */
}

.seduceAi-bg {
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 6%, var(--body) 80%), url('../images/seducedAI.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.title-h3-principal {
    color: var(--text);
    text-transform: uppercase;
    font-weight: bold;
    background: var(--bg);
    display: flex;
    align-items: center;
    padding: 20px;
    margin: 0 auto;
}

.title-h3-principal .num {
    margin-right: 10px;
    color: var(--accent4);
    font-size: 30px;
}

.arrow-btn {
    font-size: 15px;
    background: var(--accent4);
    padding: 20px;
    border-radius: 50px;
    color: var(--body);
}

.cta-btn {
    border-radius: 50px;
    background: none;
    color: var(--text);
    cursor: pointer;
    font-size: 17px;
    font-weight: bold;
    border: none;
    margin: 30px 0;
}

.text-btn {
    background: var(--accent);
    padding: 20px;
    border-radius: 50px;
    text-decoration: none;
}

.cta-btn:hover {
    color: var(--text);
}

.cta-btn {
    margin: 20px 0;
    display: inline-block;
    text-decoration: none;
}

.sticky-best-cta {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 998;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 50px;
    background: var(--accent);
    color: var(--text);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transform: translateX(-50%);
}

.sticky-best-cta:hover {
    color: var(--text);
    background: var(--main);
}

.sticky-best-cta i {
    color: var(--accent4);
    font-size: 18px;
}

.padding-bg+div>ul {
    margin: 0;
    padding: 0;
}

.padding-bg+div>ul li {
    list-style: none;
    margin: 15px 0;
}

.avis-div {
    padding: 20px;
    border-radius: 10px;
    background: var(--bg);
    animation: avisanimation 1.5s ease-in-out infinite alternate;
}

@keyframes avisanimation {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.avis-div h4 {
    color: var(--text);
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.avis-div strong {
    background: var(--accent4);
    padding: 1px 5px;
    color: var(--body);
}

.avis-div h4::after {
    content: '';
    display: inline-block;
    width: 40%;
    height: 5px;
    background: rgb(255, 21, 21);
    margin-top: 5px;
}

.avis-div div {
    display: grid;
    grid-template-columns: 75px 1fr;
    align-items: center;
}

.avis-div div img {
    width: 50px;
    background: var(--accent3);
    border-radius: 5px;
    padding: 10px;
}

.padding-bg+div>ul li::before {
    content: ' * ';
    color: var(--accent);
    margin-right: 10px;
}

.line {

    position: relative;
}

.line::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: .5px;
    background: var(--accent4);
    margin-top: 5px;
    position: absolute;
    left: 0;
    bottom: -2px;
}

.card-small .content {
    border: 1.5px solid var(--accent);
    background: linear-gradient(-185deg, var(--accent2) 0%, var(--bg) 70%);
    padding: 20px;
    border-radius: 15px;
    position: relative;
}

/* .card-small {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
} */

.card-small ul {
    padding: 0;
    list-style-type: none;
}

.card-small .content .price {
    font-weight: bold;
    font-size: 38px;
}

.credit {
    padding: 5px 20px;
    border-radius: 50px;
    background: var(--body);
    position: absolute;
    top: -15px;
    right: 20px;
    color: var(--text);
    border: 2px solid var(--accent4);

}

.card-container {
    padding: 20px;
    margin: 15px 0;
    background: var(--bg);
    border-radius: 10px;
}

.list-card .card-content ul {
    margin: 0 0 70px 0;
    padding: 0px;
}

.list-card .card-content ul li {
    color: var(--text);
    list-style-type: none;
    margin: 5px 0;
    font-size: 15px;
}

.list-card .card-content ul li::before {
    content: ' * ';
    color: var(--accent4);
    margin-right: 10px;
}

.video-content video {
    width: 265px;
    border-radius: 10px;
}

.accordion div h3 {
    background: var(--bg);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 0;
    cursor: pointer;
    transition: all .5s;
}

.accordion div h3:hover {
    background: var(--accent3);
    transform: scale(1.02);
}

.accordion div {
    margin: 10px;
}

.accordion div p {
    background: var(--bg);
    margin-top: 2px;
    padding: 20px;
    border-radius: 10px;
    display: none;
}

.accordion .active+p {
    display: block !important;
    border: 2px solid var(--accent2);
}

.accordion .active {
    background: var(--accent);
    border: 2px solid var(--accent);
}

.faq {
    margin: 20px;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

.splide__pagination,
.splide__arrows button {
    display: none !important;
}

.splider-header {
    padding: 0;
}

.splide__list li div {
    background: var(--bg);
    border-radius: 15px;
    height: 250px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    color: var(--text);
    background: linear-gradient(-185deg, var(--accent2) 0%, var(--bg) 70%);
    border: 1px solid var(--accent);
    padding: 30px 0;
}

.splide__list {
    grid-gap: 10px;
}

.splide__slide span {
    background: var(--accent4);
    padding: 5px 10px;
    border-radius: 20px;
    color: var(--body);
    font-weight: bolder;
}

.splide__slide h4 {
    font-weight: bolder;
    text-transform: uppercase;
    background: var(--accent);
    padding: 8px 25px;
    border-radius: 6px;
}

.splide__slide p {
    padding: 15px;
    border-radius: 10px;
    margin: 5px 0;
    text-align: center;
}

.splide {
    margin: 50px 10px;
}

.navbar {
    padding: 25px 5px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: none;
}

.scrolled {
    background: var(--body);
}

.nav-link {
    color: var(--text);
}

.nav-link:hover {
    color: var(--accent4) !important;
}

.navbar .nav-link.active {
    border: none;
    color: var(--text) !important;
    position: relative;
}

.navbar .nav-link.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: var(--accent4);
    margin-top: 5px;
    position: absolute;
    bottom: -24px;
    left: 0;
    right: 0;
}

.bi-list {
    font-size: 40px;
    color: var(--accent4);
}

.navbar-brand {
    width: 200px;
}

.navbar-brand img {
    width: 100%;
}

.navbar-nav {
    padding: 10px 0;
}

.nav-link {
    padding: 0;
    font-weight: lighter;
    padding-right: unset !important;
}
