:root {
    --font-family: "Noto Sans", sans-serif;
    --second-family: "Open Sans", sans-serif;


	--text-h: #d8d8d8;
	--txt: #a4a2aa;
	--bg-3: #1c1429;
	--bg-2: #120b1d;
	--border: #201d27;
	--bg: #040306;
}


.container {
    width: 100%;
    max-width: 1290px;
    margin: 0 auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	scrollbar-color: #E5A938 transparent;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: #E5A938;
  border-radius: 10px;
  border: 2px solid transparent;
}


html{
	scroll-behavior: smooth;
}
body {
    font-family: 'Museo Sans Cyrl', Sans-Serif;
    background-color: #0a0c12;
	font-family: "Open Sans",  sans-serif;
}

.ayri-pagination{
    display: flex;
    gap: 10px;
    justify-content: center;
}
.ayri-pagination__item{
    border-radius: 14px 6px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.06);
}
.ayri-pagination__item .page-numbers{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-h);
    text-decoration: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ayri-main{
    max-width: 1290px;
    margin: 0 auto;
    padding: 0;
}
.ayri-page-header{
    display: flex;
    flex-direction: column;
    gap: 70px;
}
.ayri-page-header__title{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 62px;
    color: var(--text-h);
	line-height: 1.2;
    display: inline-block; 
    background: none;
    
}
/*Global Modal*/
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  width: 100vw;
}

.modal.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 778;
  background: rgba(23, 24, 28, 0.94);
}

.modal-content {
  position: relative;
  max-width: 730px;
  width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 50px;
  z-index: 779;
  border-radius: 30px 6px 30px 6px;
  background: rgba(30, 31, 35, 1);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 50px;
  height: 50px;
  display: flex;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}
.modal-close img{
	width: 15px;
	height: 15px;
}
.popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #187f18;
    color: #ffffff;
    border: 1px solid #187f18;
    padding: 10px 20px;
    border-radius: 10px;
    display: none; 
    z-index: 9999;
  }

.pagination_rotated_arrow {
    transform: rotate(180deg);
}

.page-numbers {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: all 300ms ease-in-out;
	cursor: pointer;
}

.ayri-pagination__item .page-numbers.current {
	background: #E5A938;
	border-radius: 14px 6px;
	color: #000;
}

.ayri-pagination__item:hover .page-numbers {
	background: #E5A938;
	border-radius: 14px 6px;
	color: #000;
}

.body.no-scroll {
    overflow: hidden;
}

.current-page {
    color: #e5a938;
    text-shadow: 0 0 10px 2px rgba(229, 169, 56, 0.6);
    -webkit-text-stroke: 1px #e5a938;
}

main.section__first {
  background-image: url('/wp-content/themes/another-site/assets/images/new_icons/girls_bg_1920.webp');
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: start; */
}
.section__first {
	padding-top: 124px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 30px 0 0 0;
    flex-wrap: wrap;
}

.pagination__item {
  background-color: #1a2132;
  color: #d6d7dc;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Museo Sans Cyrl 500',sans-serif;
  font-size: 18px;
  font-weight: 600;
  min-width: 36px;
  text-align: center;
  transition: background-color 0.2s, color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pagination__item:hover {
  background-color: #141621;
  color: #fff;
}

.pagination__item--active {
  background-color: #141621;
  color: #ffffff;
  font-weight: bold;
}

.pagination__item--dots {
  pointer-events: none;
  color: #888;
}

.pagination__item--next {
  font-weight: bold;
}

.page-numbers {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: #d8d8d8;
    text-decoration: none;
}

.page-numbers.current {
    color: #fce690;
}

.comment__item-likes {
    display: flex;
    width: max-content;
}
.comment__item-likes:hover
{
    background: #e5a938;
    border-radius: 14px 6px;
    cursor: pointer;
}
.comment__item-likes:hover  img{
    filter: brightness(0.15) contrast(1.1) hue-rotate(260deg) saturate(1.2) sepia(0.3);
}
.comment__item-likes:hover  .comment__item-likes-count{
    color: #1c1429;
}

.like-btn {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px 6px;
    padding: 16px 13px;
    height: 50px;
    width: max-content;
    border: none;
    box-shadow: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}



.like-btn span {
    font-family: var(--second-family), sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 160%;
    color: #e5a938;
    margin-left: 10px;
}

.like-btn.liked span.comment__item-likes-count{
    display: block;
}
.comment__item-likes-approved{
    display: none;
}
.comment__item-likes-count{
    /* display: none; */
}
.hide{
    display: none;
}
.show{
    display: block;
}
.like-btn.full span.comment__item-likes-approved{
    display: block;
}

@media (max-width:1310px) {
    .ayri-main{
        padding: 0 20px;
    }
}

@media (max-width:1024px) {
    .ayri-page-header{
        gap: 50px;
    }
	main.section__first {
      background-image: url('/wp-content/themes/another-site/assets/images/new_icons/girls_bg_1024-768.webp');
    }
}
@media (max-width:768px) {
    .ayri-page-header__title{
        font-size: 54px;
    }
    .ayri-page-header{
        gap: 30px;
    }
}
@media (max-width: 767px) {
	.section__first {
		padding-top: 80px;
	}
}
@media (max-width:420px) {
	.ayri-page-header{
		gap: 20px;
	}
	.ayri-page-header__title{
		font-size: 28px;
	}
	main.section__first {
      background-image: url('/wp-content/themes/another-site/assets/images/new_icons/girl_bg_320.webp');
    }
}
	
#age-verification-popup.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    height: 100vh;
    background: rgba(23, 24, 28, 0.94);
    justify-content: center;
    align-items: center;
    z-index: 9998;
    height: 100vh;
}
#age-verification-popup.modal{
    width: 100%!important;
    border: none!important;
    border-radius: 0!important;
}
#age-verification-popup .modal-header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
#age-verification-popup .modal-header img{
    width: 27px;
    height: auto;
    margin-right: 20px;
}
#age-verification-popup .modal-content {
    background: rgba(30, 31, 35, 1);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    max-width: 850px;
    border-radius: 30px 6px 30px 6px;
    width: 95vw; 
    height: auto;
    overflow: auto;
}
#age-verification-popup.modal footer{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
    justify-content: center;
}
#age-verification-popup.modal header .modal_title{
    font-family: var(--font-family);
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    line-height: 44px;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
}

#age-verification-popup.modal footer .modal_title{
    flex: 0 0 100%;
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    font-style: normal;
    font-size: 28px;
    line-height: 35px;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
}
#age-verification-popup .modal-content p{
    font-family: var(--second-family);
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0;
    color: var(--txt);
    text-align: left;
    margin-bottom: 10px;
}
#age-verification-popup .modal-content a,
#age-verification-popup .modal-content a:active,
#age-verification-popup .modal-content a:focus,
#age-verification-popup .modal-content a:visited{
    color: rgba(229, 169, 56, 1);
    text-decoration: none;
}
#age-verification-popup .modal-content ul{
    margin-bottom: 20px;
    row-gap: 5px;
}
#age-verification-popup .modal-content ul > li{
    font-size: 14px;
    line-height: 22px;
    text-align: left;
}
.exit-gradient {
    width: max-content;
    height: 100%;
    background: linear-gradient(to bottom right, #E5A938 0%, rgba(36, 36, 36, 0) 51%, #E5A938 98%);
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-in-out;
        border-radius: 30px 6px;
}
.exit{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px 6px;
    max-width: 100%;
    padding:0 20px;
    width: 100%;
    height: 100%;
    background-color: #28282a;
    position: relative;
    height: 50px;
    font-family: var(--font-family);
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
}
#age-verification-popup.modal footer #age-confirm-btn{
    flex: 0 0 auto;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #17181c;
    border-radius: 20px 6px;
    border: none;
    padding: 0 20px;
    background: #e5a938;
    height: 50px;
    width: max-content;
    cursor: pointer;
}
.footer_age_verifications{
    padding: 10px;
    width: 100vw;
    gap: 10px;
}
.footer_age_verifications #age-confirm-btn{
   font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #17181c;
    border-radius: 20px 6px;
    border: none;
    padding: 0 10px;
    background: #e5a938;
    height: 50px;
    width: max-content;  
}
.overlay-active {
    background: rgba(23, 24, 28, 0.94);
    overflow: hidden;
}
.age-verification_list{
    color: #fff;
}
.age-verification_list li{
    display: flex;
    justify-content: start;
    align-items: center;
}
.age-verification_list li span{
    font-size: 14px;
    line-height: 22px;
    color: var(--txt);
    width: 100%;
}
.left_mark{
    width: 11px;
    height: 11px;
    background: #E5A938;
    border-radius: 5px 2px;
    margin-right: 7px;
}
.footer_age_verifications{
    display: none;
    position: fixed;
    bottom: 50px;
    left: 0;
}
#age-verification-popup.modal {
    background: transparent !important;
    pointer-events: none;
}
#age-verification-popup .modal-content,
#age-verification-popup footer {
    pointer-events: auto;
}


@media (max-width: 767px) {
    #age-verification-popup .modal-content{
        padding: 50px 30px 50px 30px;
        height: 100%;
        overflow: auto;
    }
    #age-verification-popup.modal header h2{
        font-size: 20px;
        line-height: 20px;
    }
    #age-verification-popup .modal-header img {
        width: 30px;
        height: 30px;
        margin-right: 0;
    }
    #age-verification-popup .modal-header {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 20px;
    }
    #age-verification-popup .modal-content p{
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 10px;
    }
    #age-verification-popup.modal footer h2 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    #age-verification-popup.modal footer {
        gap: 20px;
    }
    .age-verification_list li span{
        font-size: 12px;
    }
}
@media (max-width: 560px) {
    #age-verification-popup .modal-header img{
        margin-bottom: 10px;
    }
    #age-verification-popup .modal-content {
        padding: 30px 20px 75px 20px;
    }
    #age-verification-popup.modal footer h2{
        margin-bottom: 0;
    }
   
    #age-verification-popup.modal footer .footer__actions{
        display: flex;
    }
    #age-verification-popup.modal footer .modal_title{
        font-size: 24px;
    }
    #age-verification-popup.modal footer {
        gap: 10px;
    }
    .footer_age_verifications{
        display: flex;
        justify-content: center;
    }
}
@media (max-width: 420px) {
    #age-verification-popup.modal footer #age-confirm-btn {
        max-width: 100%;
        padding: 5px 10px;
        height: 40px;
    }
    .exit {
        padding: 0 10px;
        position: relative;
        height: 40px;
    }
}
/*Toast container*/
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.toast {
  background: #222;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 14px;
  max-width: 320px;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success { background: #28a745; }
.toast.error { background: #dc3545; }
