:root {
    --color-rouge-primaire: #BF0404;
    --color-rouge-secondaire: #8C0303;
    --color-rouge-tertiaire: #F24452;
    --color-rouge-gris: #8EACBF;
    --color-rouge-sombre: #260101;
    --color-noire: #100c0c;
}

body::-webkit-scrollbar {
    width: 10px !important;
}

body::-webkit-scrollbar-thumb {
    background: var(--color-rouge-tertiaire) !important;
    border-radius: 20px;
}

body::-webkit-scrollbar-track {
    background: var(--color-noire) !important;
}

body {
    font-family: "Public Sans", sans-serif;
}

header {
    background-color: rgba(20, 17, 17, 0.048);
    backdrop-filter: blur(10px);
    position: fixed;
    left: 0;
    right: 0;
    z-index: 60;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header>div {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logo {
    width: 260px;
}

.porntchat-header-section {
    background-image: url('../../images/porntchat.ai-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 45px;
}

.porntchat-pre-header {
    height: 95vh;
    display: flex;
    align-items: center;
    width: 95%;
    margin: 0 auto;
    justify-content: space-around;

}

.porntchat-image-container {
    position: relative;
    width: 380px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

button {
    min-width: 210px;
    padding: 18px 5px;
    margin: 15px 0;
    background: var(--color-rouge-tertiaire);
    border: none;
    color: white;
    border-radius: 10px;
    transition: all .5s;
}

button:hover {
    background: var(--color-rouge-primaire);
    transform: scale(1.04);
}

.porntchat-image-container img {
    width: 85%;
    object-fit: cover;

}

/* .porntchat-text-container button {
    float: right;
} */

.porntchat-text-container {
    width: 890px;
}

.porntchat-text-container h1 {
    font-size: 80px;
    font-weight: bolder;
    line-height: 70px;
    font-weight: 800;

}

/*MESSAGE BLOCS*/
.chat {
    width: 300px;
    display: flex;
    flex-direction: column;
    position: absolute;
    padding: 10px;
    top: 36%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0px 18px;
    height: 55%;
}

.messages {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.message {
    border-radius: 20px;
    padding: 8px 15px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: inline-block;
}

.yours {
    align-items: flex-start;
}

.yours .message {
    margin-right: 25%;
    background-color: #eee;
    position: relative;
}

.yours .message.last:before {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: -7px;
    height: 20px;
    width: 20px;

    border-bottom-right-radius: 15px;
}

.mine {
    align-items: flex-end;
}

.mine .message {
    color: white;
    margin-left: 25%;
    background: linear-gradient(to bottom, var(--color-rouge-primaire) 0%, var(--color-rouge-secondaire) 100%);
    background-attachment: fixed;
    position: relative;
}


.mine .message.last:after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: -10px;
    width: 10px;
    height: 20px;
    background: white;
    border-bottom-left-radius: 10px;
}



.loader {
    text-align: center;
}

.loader span {
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    background: var(--color-rouge-gris);
    border-radius: 50px;
    -webkit-animation: loader 0.5s infinite alternate;
    -moz-animation: loader 0.5s infinite alternate;
}

.loader span:nth-of-type(2) {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
}

.loader span:nth-of-type(3) {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
}

@-webkit-keyframes loader {
    0% {

        height: 10px;
        opacity: 0.9;
        -webkit-transform: translateY(0);
    }

    100% {

        opacity: 0.3;
        -webkit-transform: translateY(-11px);
    }
}

@-moz-keyframes loader {
    0% {
        width: 10px;
        height: 10px;
        opacity: 0.9;
        -moz-transform: translateY(0);
    }

    100% {
        width: 24px;
        height: 24px;
        opacity: 0.3;
        -moz-transform: translateY(-11px);
    }
}

.porntchat-section-table {
    min-height: 50vh;
    padding: 100px 0;
    color: white;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    width: 350px;
    padding: 20px;
    background-color: rgba(19, 19, 19, 0.308);
    border: 1px solid rgba(243, 238, 238, 0.37);
    box-shadow: 0px 0px 10px rgba(20, 20, 20, 0.582);
    border-radius: 20px;
}

main {
    background: var(--color-noire);
}

.porntchat-grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 350px 1fr;
    margin: 0 auto;
    width: 95%;
    backdrop-filter: blur(3px);
    align-items: start;
}

.porntchat-grid>div {
    padding: 20px;
    background-color: rgba(19, 19, 19, 0.308);
    border: 1px solid rgba(243, 238, 238, 0.37);
    box-shadow: 0px 0px 10px rgba(20, 20, 20, 0.582);
    border-radius: 20px;
}

.table-body {
    padding: 50px;
}

.table-head {
    height: 100px;
    border-bottom: 1px solid rgb(243, 238, 238);
}

.table-head td {
    color: white;
}

.table-body tr {
    height: 80px;
    padding: 20px 0;
}

.table-body td {
    color: rgba(204, 204, 204, 0.815);
}

.porntchat-table-principal table {
    width: 100%;
}

.porntchat-table-principal {
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(3, 1, 1, 0.616);
    backdrop-filter: blur(20px);

}

.border-table-principale {
    padding: 20px;
    background-color: rgba(19, 19, 19, 0.308);
    border: 1px solid rgba(243, 238, 238, 0.37);
    box-shadow: 0px 0px 10px rgba(20, 20, 20, 0.582);
    border-radius: 20px;
}

.porntchat-list-tools {
    min-height: 63px;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.porntchat-list-tools span {
    font-weight: bold;
    font-size: 40px;
    color: var(--color-rouge-gris);
}

.porntchat-candyia-section {
    color: white;
    text-align: center;
}

.porntchat-soulgen-section {

    color: white;
    text-align: center;
}

.porntchat-kupid-section,
.porntchat-botmake-section,
.porntchat-promptchan-section {

    color: white;
    text-align: center;
}

.porntchat-info {
    background: #131313;
    color: white;
    text-align: center;
}

.porntchat-info {
    padding: 60px 0;
}

.porntchat-info div {
    background: #232323;
    border: 1px solid #000000;
    color: white;
    text-align: left;
    width: 65%;
    padding: 40px;
    border-radius: 20px;
    margin: 0 auto;
}

.porntchat-info div h2 {
    text-align: center;
    margin-bottom: 60px;
}

.porntchat-dreamgf-section {
    color: white;
    text-align: center;
}

.porntchat-soulgen-section .porntchat-image-container-tools img {
    border: none;
}

.porntchat-default-section>div {
    margin: 0 auto;
    padding: 70px 0;
}

.porntchat-image-container-tools {
    /* width: calc(100% - 400px); */
}

.porntchat-image-container-tools img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(243, 238, 238, 0.37);
}

.pornttchat-advantages {
    width: 95%;
    /* display: flex;
    justify-content: space-evenly; */
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(19, 19, 19, 0.308);
    border-left: 1px solid rgba(243, 238, 238, 0.37);
    box-shadow: 0px 0px 10px rgba(20, 20, 20, 0.582);
}

.pornttchat-advantages ul {
    padding: 0;
    list-style-type: none;
}

.pornttchat-advantages p {
    font-weight: bold;
    color: var(--color-rouge-tertiaire);
    border-bottom: 1px solid rgba(243, 238, 238, 0.37);
    padding-bottom: 20px;

}

.pornttchat-advantages div:last-child {
    border-top: 1px solid rgba(243, 238, 238, 0.37);
    padding-top: 20px;
}


.pornttchat-advantages div ul {
    text-align: left;
}

.porntchat-flex-bloc {
    /* display: flex; */
    margin: 70px 0;
    grid-gap: 15px;
    align-items: flex-start;
}

.porntchat-text-container-tools {
    margin: 0 auto;
    padding: 30px;
    border-radius: 20px;
    text-align: left;
}

.porntchat-text-container-tools strong {
    color: var(--color-rouge-tertiaire);
}

.porntchat-text-container-tools ul {
    padding: 0;
    /* width: 200px; */
    margin: 40px auto;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.porntchat-text-container-tools ul li {
    margin: 5px 0;
}

footer {
    height: auto;
    display: flex;
    align-items: center;
    background: #000000;
    padding: 40px;
    border-top: 2px solid;
    color: white;
    border-image: linear-gradient(45deg, #7ff 20%, #fcd246 46%, #e71991 60%, #9ffe00 75%, #417efd 93%) 1;
}

footer .row {
    width: 90%;
    margin: 0 auto;
}

footer .row ul {
    padding: 0;
    margin: 20px 0;
    list-style-type: none;
}

footer .row ul li {
    margin: 10px 0;
}

footer .row ul li a {
    color: white;
    text-decoration: none;
    transition: all .5s;
}

.porntchat-footer-links li a:hover {
    cursor: pointer;
    color: var(--color-rouge-tertiaire) !important;
}

footer .row ul li a:hover {
    color: var(--color-rouge-tertiaire);
}

footer .row h5 {
    color: var(--color-rouge-gris);
    font-weight: bold;
}

.porntchat-counter-top {
    display: flex;
    height: 60px;
    width: 60px;
    background: var(--color-rouge-tertiaire);
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    border-radius: 50px;
    font-size: 35px;
    font-weight: bold;
    top: -30px;
    animation: counterAnimation 1s alternate infinite;
}

@keyframes counterAnimation {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.mine .message.last:after {
    display: none;
}

.porntchat-form-main {
    min-height: 85vh;
    background: var(--color-noire);
    padding: 50px 0;
    color: white;
    padding-top: 200px;
}

.porntchat-form-main h2 {
    text-align: center;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 60px;
}

form {
    margin-top: 50px;
    width: 75%;
    margin: 0 auto;
}

form label {
    color: white;
    margin: 20px 15px;
}

input,
textarea {
    background: none !important;
    padding: 15px 10px !important;
    border: 1px solid var(--color-rouge-gris) !important;
    color: white !important;
}

::placeholder {
    color: var(--color-rouge-gris) !important;
}

.alert-error,
.alert-success {
    width: 60%;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    margin: 10px auto;
}

.alert-error {
    background: red;
}

.alert-success {
    background: rgb(40, 113, 248);
}

.porntchat-scrolltop {
    position: fixed;
    width: 50px;
    height: 50px;
    background: var(--color-rouge-primaire);
    right: 20px;
    bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
}

.table-body tr:hover td {
    cursor: pointer;
}

.lang {
    display: flex;
    align-items: center;
    position: relative !important;
}

.porntchat-language {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    transition: all .5s;
}

.animated-flag {
    border-radius: 50px;
}


.porntchat-language img {
    width: 100%;
    object-fit: cover;
}

.lang-choices {
    width: 185px;
    position: relative;
    min-height: 100px;
    background: #050505;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    border: 1px solid rgba(255, 255, 255, 0.095);
}

.lang-choices>a {
    display: inline-block;
    width: 30px;
    height: 30px;
    overflow: hidden;
    margin: 5px;
    border-radius: 2px;
}

.lang-choices>a>img {
    width: 100%;
    object-fit: cover;
}

.porntchat-division {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 350px 1fr;
    margin: 0 auto;
    width: 95%;
    backdrop-filter: blur(3px);
    align-items: start;
    padding-top: 60px;
}

.flex-bloc-section {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 2fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.185);
    border-radius: 15px;
}

/* .porntchat-division>div {
    position: relative;

} */


.fixed-description {
    position: fixed !important;

    width: 350px;
    background: red;
    z-index: 1000;
    /* Assure que l'élément reste au-dessus des autres */
}


.porntchat-note {
    background: var(--color-rouge-primaire);
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
}

.porntchat-note:hover {
    transform: scale(1.08);
}













































.porntchat-section-table {
    position: sticky;
    top: 20%;
    /* Ajuste selon l'espace sous l'en-tête */
    min-height: 50vh;
    padding: 20px;
    background-color: rgba(19, 19, 19, 0.5);
    color: white;
    width: 350px;
    border: 1px solid rgba(243, 238, 238, 0.37);
    box-shadow: 0px 0px 10px rgba(20, 20, 20, 0.582);
    border-radius: 20px;
}

.porntchat-height {
    position: relative;
    padding-bottom: 60px;
}

.porntchat-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    grid-gap: 20px;
    margin: 0 auto;
    width: 95%;
}

.porntchat-table-principal table {
    width: 100%;
}

.porntchat-note {
    background: var(--color-rouge-primaire);
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.porntchat-scrolltop {
    position: fixed;
    width: 50px;
    height: 50px;
    background: var(--color-rouge-primaire);
    right: 20px;
    bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
}

.porntchat-default-section {
    border-top: 1px solid var(--color-rouge-tertiaire);
}

.mobile-button {
    display: none;
}

