body {
    margin: 0;
        font-family: "ProximaNova-Bold", sans-serif;
    background-color: #1a1a1a;
    color: white;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.hdphone{
	margin:0px!important;
}
.header {
      position: fixed;
    top: 100%;
    height: 30px;
    margin-top: -30px;
    left: 0;
    width: 100%;
    background: #333;
    color: white;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 0px 11px;
    box-sizing: border-box;
    z-index: 1000;
}

.back-button, .phone-button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 5px 10px;
}

.phone-button a {
    color: white;
    text-decoration: none;
}

.back-button:hover, .phone-button:hover {
    opacity: 0.8;
}

@font-face {
	font-family: 'ProximaNova-Bold'; 
	src: url(ProximaNova-Bold.ttf); 
}


/* Стили для popup подтверждения галереи */
.gallery-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 600; /* Выше карточек, но ниже лайтбокса */
    overflow: hidden;
}

.gallery-confirm-content {
    background-color: #ffffffcf;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery-confirm-content p {
    margin: 0 0 15px;
    font-family: "ProximaNova-Bold", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
}

.gallery-confirm-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery-confirm-buttons button {
    padding: 10px 20px;
    background-color: #fe3c72;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-family: "ProximaNova-Bold", sans-serif;
    font-size: 14px;
    transition: background-color 0.3s ease;
    touch-action: manipulation;
}

.gallery-confirm-buttons button:hover {
    background-color: #e03562;
}

/* Адаптация для мобильных */
@media (max-width: 600px) {
    .gallery-confirm-content {
        width: 90%;
        padding: 15px;
    }

    .gallery-confirm-content p {
        font-size: 14px;
    }

    .gallery-confirm-buttons button {
        padding: 8px 15px;
        font-size: 12px;
    }
}

.banner-container {
display: flex
;
    justify-content: center;
    padding: 20px 0;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.photon-effect {
  position: relative;
  width: 250px; /* Ширина изображения */
}

.photon-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px; /* Закругленные углы */

}

.photon-text {
position: absolute;
    top: 54%;
    left: 53%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 15px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
	 font-family: "ProximaNova-Bold", sans-serif;
}

.hero-container {
 background: linear-gradient(135deg, #1C2526 0%, #1A1A1A 50%, #2A1A2E 100%);
  background-position: center center;
  background-size: cover;
 
  text-align: center;
}

.hero-content {
 background: linear-gradient(289deg, #00000066 0%, #33243b 50%, #000000 100%);
  border-radius: 20px;
  padding: 20px;
  margin: 0 auto;
  max-width: 90%;
  padding-top: 85px;
}

.hero-title {
  color: #FFFFFF;
  font-family: "ProximaNova-Bold", sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 0px;
}

.hero-subtitle {
  background-color: #61CE70;
  color: #FFFFFF;
  font-family: "GothamPro", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  padding: 5px;
  display: inline-block;
  margin-bottom: 10px;
}

.hero-description {
  color: #FFFFFF;
  font-family: "GothamPro", sans-serif;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center; /* Выравниваем по вертикали */
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: nowrap; /* Запрещаем перенос на новую строку */
}

.hero-button {
    font-family: "ProximaNova-Bold", sans-serif;
    font-weight: 600;
    width: auto; /* Убираем фиксированную ширину */
    min-width: 140px; /* Минимальная ширина для читаемости */
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    text-align: center;
}

.hero-button:nth-child(1) {
    background-color: #FFFFFF;
    color: #000000;
}

.hero-button:nth-child(2) {
    background-color: #603d36;
    color: #FFFFFF;
}
/* Адаптация для мобильных */
@media (max-width: 600px) {
    .hero-buttons {
        flex-wrap: wrap; /* На мобильных разрешаем перенос */
        gap: 5px;
    }

    .hero-button {
        min-width: 120px; /* Уменьшаем для мобильных */
        padding: 25px 15px;
        font-size: 11px;
    }
}
.hero-promo {
  color: #FFFFFF;
  font-family: "GothamPro", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7em;
}

.promo-container {

  background-size: cover;
}
.mastdesk{
	font-size: 14px;
    padding-bottom: 10px;
}
.section-title {
    color: #FFFFFF;
    font-family: "ProximaNova-Bold", sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    padding: 0px 0px 0px 0px;
}

.promo-grid {
  /*display: grid;
  grid-template-columns: 1fr;*/

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
	    margin: 20px;
}
.grid2-container {
  /*display: grid;
  grid-template-columns: 1fr;*/

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
	    margin: 20px;
}
.promo-item {
  background-color: rgba(42, 12, 39, 0.05);
  background: linear-gradient(135deg, #1C2526 0%, #1A1A1A 50%, #2A1A2E 100%);
  background-position: center center;
  background-size: cover;
  border-radius: 15px;
  box-shadow: 1px 1px 15px 0px rgba(56, 44, 47, 0.85);
  padding: 20px;
  text-align: center;
}

.promo-title {
  color: #FFFFFF;
  font-family: "GothamPro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.promo-button {
  font-family: "GothamPro", sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-transform: none;
  border-radius: 20px;
  padding: 2px 10px;
  background-color: #B52044;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
}
.contacts-container {
  background: linear-gradient(135deg, #1C2526 0%, #1A1A1A 50%, #2A1A2E 100%);
  background-size: cover;
  padding-bottom: 200px;
}

.contacts-content {
  text-align: center;
  padding-top: 20px;
}

.contact-info {
  color: #FFFFFF;
  font-family: "ProximaNova-Bold", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 0px 20px 0;
}

.contact-phone {
  background-color: rgba(0, 0, 0, 0.49);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  margin: 20px auto;
  max-width: 400px;
}

.phone-number {
  color: #FFFFFF;
  font-family: "ProximaNova-Bold", sans-serif;
  font-size: 23px;
  font-weight: 600;
  margin: 0;
}

.phone-number a {
  color: #FFFFFF;
  text-decoration: none;
}

.whatsapp-icon img {
  width: 47px;
  margin-left: 15px;
}

.map-container {
  border-radius: 15px;
  margin-top: 0;
  overflow: hidden;
}

.booking-screen {
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1C2526 0%, #1A1A1A 50%, #2A1A2E 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.booking-container {
    background-color: rgba(0, 0, 0, 0.47);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    color: #fff;
}

.booking-screen h2 {
    color: #fe3c72;
    font-family: "ProximaNova-Bold", sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.booking-subtitle {
    font-family: "GothamPro", sans-serif;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 10px;
    background-color: #333;
    color: #fff;
    font-size: 14px;
    font-family: "GothamPro", sans-serif;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: #ccc;
}

.booking-button {
    width: 100%;
    padding: 12px;
    background-color: #fe3c72;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-family: "ProximaNova-Bold", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    touch-action: manipulation;
}

.booking-button:hover {
    background-color: #e03562;
}

.booking-details {
    margin: 20px 0;
    font-family: "GothamPro", sans-serif;
    font-size: 14px;
    color: #fff;
}

.booking-contacts p {
    font-family: "GothamPro", sans-serif;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-family: "ProximaNova-Bold", sans-serif;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    touch-action: manipulation;
}

.contact-button.whatsapp {
    background-color: #25D366;
}

.contact-button.telegram {
    background-color: #0088cc;
}

.contact-button.back {
    background-color: #603d36;
}

.contact-button:hover {
    opacity: 0.9;
}

@media (max-width: 600px) {
    .booking-container {
        padding: 20px;
    }

    .booking-screen h2 {
        font-size: 24px;
    }

    .booking-subtitle {
        font-size: 14px;
    }

    .form-group input,
    .form-group select {
        font-size: 12px;
    }

    .booking-button {
        font-size: 14px;
    }
}


/* Основные экраны */
.about-screen, .why-us-screen, .gender-selection, .master-selection, .booking-screen, .program-selection, .master-program-selection {
    width: 100%;
    height: 100vh;
    /* padding: 10px;*/
	background: linear-gradient(135deg, #1C2526 0%, #1A1A1A 50%, #2A1A2E 100%);
    box-sizing: border-box;
    text-align: center;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Уменьшаем шрифты и отступы для мобильных */
@media (max-width: 600px) {
    .about-screen h1, .why-us-screen h1, .gender-selection h1, .booking-screen h2, .program-selection h1, .master-program-selection h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .about-screen p, .why-us-screen p, .gender-selection p, .booking-screen p {
        font-size: 14px;
        margin: 5px 0;
    }

    .next-button, .to-masters-button, .gender-selection button {
        padding: 8px 16px;
        font-size: 14px;
    }
}

#masterSelection {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
    touch-action: none; /* Запрещаем масштабирование */
}

.tinder-container {
    width: 100%;
   /* height: 100vh;*/
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: linear-gradient(135deg, #1C2526 0%, #1A1A1A 50%, #2A1A2E 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.age-card {
background-color: #0000006b;
    border: 2px solid #ffffff08;
    border-radius: 20px;
    padding: 30px;
    max-width: 70%;
    text-align: center;
    color: white;
}

.age-card h2 {
     color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
	    font-family: "ProximaNova-Bold", sans-serif;
}

.age-card p {
   margin: 15px 0;
    font-size: 16px;
    font-weight: 600;
	    font-family: "ProximaNova-Bold", sans-serif;
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.age-confirm, .age-deny {
    padding: 10px 30px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    touch-action: manipulation;
}

.age-confirm {
    background-color: #1dd1a1;
    color: white;
}

.age-deny {
    background-color: #ff4757;
    color: white;
}

.age-confirm:hover {
    background-color: #10a881;
}

.age-deny:hover {
    background-color: #e84118;
}

@media (max-width: 600px) {
    .tinder-container {
        max-width: none;
        box-shadow: none;
    }
}
/* Стили для демонстрации свайпа */
.swipe-demo {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    position: relative;
    overflow: hidden;
}

.demo-card {
    width: 80px;
    height: 100px;
    background-color: #333;
    border: 2px solid #fe3c72;
    border-radius: 10px;
    position: relative;
    animation: swipeAnimation 3s infinite ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.demo-finger {
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    animation: fingerMove 3s infinite ease-in-out;
}

.demo-emoji {
    font-size: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    z-index: 3;
}

.demo-emoji-left {
    left: -30px;
    color: #ff4444; /* Красный крестик */
    animation: emojiLeft 3s infinite ease-in-out;
}

.demo-emoji-right {
    right: -30px;
    color: #00cc66; /* Зелёная галочка */
    animation: emojiRight 3s infinite ease-in-out;
}

.demo-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    animation: gradientAnimation 3s infinite ease-in-out;
    z-index: 1;
    pointer-events: none;
}

/* Анимация свайпа карточки */
@keyframes swipeAnimation {
    0% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translateX(-80px) rotate(-10deg);
        opacity: 0.5;
    }
    50% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
    75% {
        transform: translateX(80px) rotate(10deg);
        opacity: 0.5;
    }
    100% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}

/* Анимация движения пальца */
@keyframes fingerMove {
    0% {
        transform: translate(-50%, -50%);
    }
    25% {
        transform: translate(-130%, -50%);
    }
    50% {
        transform: translate(-50%, -50%);
    }
    75% {
        transform: translate(30%, -50%);
    }
    100% {
        transform: translate(-50%, -50%);
    }
}

/* Анимация появления красного крестика */
@keyframes emojiLeft {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    40% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* Анимация появления зелёной галочки */
@keyframes emojiRight {
    0% {
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    70% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Анимация градиента */
@keyframes gradientAnimation {
    0% {
        background: transparent;
    }
    20% {
        background: linear-gradient(to right, rgba(255, 68, 68, 0.7) 0%, transparent 50%);
    }
    30% {
        background: linear-gradient(to right, rgba(255, 68, 68, 0.7) 0%, transparent 50%);
    }
    40% {
        background: transparent;
    }
    60% {
        background: transparent;
    }
    70% {
        background: linear-gradient(to left, rgba(0, 204, 102, 0.7) 0%, transparent 50%);
    }
    80% {
        background: linear-gradient(to left, rgba(0, 204, 102, 0.7) 0%, transparent 50%);
    }
    100% {
        background: transparent;
    }
}

/* Адаптация для мобильных устройств */
@media (max-width: 600px) {
    .demo-card {
        width: 60px;
        height: 80px;
    }

    .demo-finger {
        font-size: 20px;
    }

    .demo-emoji {
        font-size: 18px;
    }

    .demo-emoji-left {
        left: -20px;
    }

    .demo-emoji-right {
        right: -20px;
    }

    @keyframes swipeAnimation {
        0% {
            transform: translateX(0) rotate(0deg);
            opacity: 1;
        }
        25% {
            transform: translateX(-60px) rotate(-10deg);
            opacity: 0.5;
        }
        50% {
            transform: translateX(0) rotate(0deg);
            opacity: 1;
        }
        75% {
            transform: translateX(60px) rotate(10deg);
            opacity: 0.5;
        }
        100% {
            transform: translateX(0) rotate(0deg);
            opacity: 1;
        }
    }

    @keyframes fingerMove {
        0% {
            transform: translate(-50%, -50%);
        }
        25% {
            transform: translate(-130%, -50%);
        }
        50% {
            transform: translate(-50%, -50%);
        }
        75% {
            transform: translate(30%, -50%);
        }
        100% {
            transform: translate(-50%, -50%);
        }
    }

    @keyframes emojiLeft {
        0% {
            opacity: 0;
        }
        20% {
            opacity: 1;
        }
        30% {
            opacity: 1;
        }
        40% {
            opacity: 0;
        }
        100% {
            opacity: 0;
        }
    }

    @keyframes emojiRight {
        0% {
            opacity: 0;
        }
        60% {
            opacity: 0;
        }
        70% {
            opacity: 1;
        }
        80% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }

    @keyframes gradientAnimation {
        0% {
            background: transparent;
        }
        20% {
            background: linear-gradient(to right, rgba(255, 68, 68, 0.7) 0%, transparent 50%);
        }
        30% {
            background: linear-gradient(to right, rgba(255, 68, 68, 0.7) 0%, transparent 50%);
        }
        40% {
            background: transparent;
        }
        60% {
            background: transparent;
        }
        70% {
            background: linear-gradient(to left, rgba(0, 204, 102, 0.7) 0%, transparent 50%);
        }
        80% {
            background: linear-gradient(to left, rgba(0, 204, 102, 0.7) 0%, transparent 50%);
        }
        100% {
            background: transparent;
        }
    }
}
.about-screen h1, .why-us-screen h1, .gender-selection h1, .booking-screen h2 {
   margin-bottom: 20px;
    font-size: 24px;
    color: #ffffff;
    font-family: "ProximaNova-Bold", sans-serif;
}

/* Стили для экрана "Мастеров больше нет" */
.no-masters {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    color: #fff;
}

.no-masters p {
    font-family: "ProximaNova-Bold", sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.restart-button {
    padding: 12px 20px;
    background-color: #fe3c72;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    font-family: "ProximaNova-Bold", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    touch-action: manipulation;
}

.restart-button:hover {
    background-color: #e03562;
}

/* Адаптация для мобильных устройств */
@media (max-width: 600px) {
    .no-masters p {
        font-size: 20px;
    }

    .restart-button {
        padding: 10px 16px;
        font-size: 14px;
    }
}


.about-screen p, .why-us-screen p, .gender-selection p, .booking-screen p {
      font-size: 16px;
    color: #ffffff;
    margin: 10px 0;
    font-family: "ProximaNova-Bold", sans-serif;
}

.next-button, .to-masters-button, .gender-selection button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #fe3c72;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    touch-action: manipulation;
}

.next-button:hover, .to-masters-button:hover, .gender-selection button:hover {
    background-color: #e03562;
}

.why-us-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.why-us-item {
  /*margin: 12px 18px;*/
    background: linear-gradient(135deg, #1C2526 0%, #1A1A1A 50%, #2A1A2E 100%);
    border-radius: 15px;
    box-shadow: 1px 1px 15px 0px rgba(56, 44, 47, 0.85);
    padding: 10px;
    text-align: center;
}

.why-us-item span {
    font-size: 20px;
    margin-right: 10px;
}

.why-us-item p {
    font-size: 14px;
    margin: 0;
    line-height: 1.2;
}

.master-selection {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.card-stack {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.swipe-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 5;
}

.booking-screen button {
    display: block;
    width: 80%;
    margin: 10px auto;
    padding: 12px;
    background-color: #fe3c72;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    touch-action: manipulation;
}

.booking-screen button:hover {
    background-color: #e03562;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
    touch-action: none; /* Запрещаем масштабирование */
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    touch-action: none; /* Запрещаем масштабирование */
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    touch-action: manipulation;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
    color: #000;
    touch-action: manipulation;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.tooltip-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 500;
    overflow: hidden;
}

.tooltip-content {
     background-color: #000000cf;
    padding: 20px;

    text-align: center;
    max-width: 400px;
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	
	border: 1px solid #ffc092;
    -webkit-backdrop-filter: blur(7.5px);
    backdrop-filter: blur(7.5px);
    border-radius: 4px;
    box-shadow: 0px 0px 8px #ffc092;
    transition: 0.3s;
}

.tooltip-content p {
margin: 0 0 15px;
    font-family: "ProximaNova-Bold", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
}

.tooltip-content button {
    padding: 10px 20px;
    background-color: #fe3c72;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    touch-action: manipulation;
}

.tooltip-content button:hover {
    background-color: #e03562;
}

.nav-buttons {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 50px;
    background-color: #000000;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    touch-action: manipulation;
    gap: 0;
}

.nav-button {
width: 50%;
    height: 100%;
    color: #ffffff;
    font-family: "ProximaNova-Bold", sans-serif;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid #ffc092;
    -webkit-backdrop-filter: blur(7.5px);
    backdrop-filter: blur(7.5px);
    border-radius: 4px;
    box-shadow: 0px 0px 8px #ffc092;
    transition: 0.3s;
}

.nav-button:first-child {
    border-right: 1px solid #fff; /* Разделитель между кнопками */
}

.nav-button:hover {
    background-color: #e03562;
}

/* Адаптация для мобильных */
@media (max-width: 600px) {
    .nav-button {
        font-size: 12px;
        padding: 0 5px; /* Уменьшаем отступы для текста */
    }
}

.gender-selection {
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.gender-selection h1 {
    color: #fe3c72;
    font-family: "ProximaNova-Bold", sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.gender-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.gender-block {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.female-block {
    /*clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);*/
}

.male-block {
   /* clip-path: polygon(100% 0, 100% 100%, 0 100%, 100% 0);;*/
}

.gender-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.gender-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: background 0.3s ease;
}

.gender-block:hover .gender-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.gender-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    font-family: "ProximaNova-Bold", sans-serif;
    font-size: 32px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.vs-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-family: "ProximaNova-Bold", sans-serif;
    font-size: 80px;
    font-weight: 600;
    background: linear-gradient(90deg, #FF9500, #FE3C72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px black;
    z-index: 4;
}

/* Адаптация для мобильных устройств */
@media (max-width: 600px) {
    .gender-selection h1 {
        font-size: 24px;
    }

    .gender-text {
        font-size: 24px;
    }

    .vs-divider {
        font-size: 60px;
    }

    .female-block {
     /*   clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);*/
    }

    .male-block {
       /* clip-path: polygon(100% 0, 100% 100%, 0 100%, 100% 0);*/
    }
}

@media (max-width: 400px) {
    .gender-text {
        font-size: 20px;
    }

    .vs-divider {
        font-size: 50px;
    }

.promo-grid {
  /*display: grid;
  grid-template-columns: 1fr;*/

    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
	    margin: 20px;
}
.grid2-container {
  /*display: grid;
  grid-template-columns: 1fr;*/

    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
	    margin: 20px;
}

}



/* Стили для экрана выбора вида отображения */
/* Стили для экрана выбора вида отображения */
.view-selection {
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1C2526 0%, #1A1A1A 50%, #2A1A2E 100%);
}

.view-container {
    position: relative;
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column; /* Вертикальное расположение */
}

.view-block {
    position: relative;
    width: 100%;
    height: 50%; /* Каждый блок занимает ровно 50% высоты экрана */
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swipe-view {
    background-color: #2A1A2E; /* Темно-фиолетовый фон */
}

.grid-view {
    background-color: #1C2526; /* Темно-серый фон */
}

.view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: background 0.3s ease;
}

.view-block:hover .view-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.view-content {
	border-top: 1px solid #ffffff36;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0px;
    box-sizing: border-box;
}

.view-text {
    color: #FFFFFF;
    font-family: "ProximaNova-Bold", sans-serif;
    font-size: 32px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

/* Анимация для "Смотреть по одной карточке" */
.view-block .swipe-demo {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px; /* Увеличенная высота для полной анимации */
    position: relative;
    overflow: visible; /* Убрать обрезку */
}

.view-block .demo-card {
    width: 80px;
    height: 100px;
    background-color: #333;
    border: 2px solid #fe3c72;
    border-radius: 10px;
    position: relative;
    animation: swipeAnimation 3s infinite ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.view-block .demo-finger {
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    animation: fingerMove 3s infinite ease-in-out;
}

.view-block .demo-emoji {
    font-size: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    z-index: 3;
}

.view-block .demo-emoji-left {
    left: -30px;
    color: #ff4444;
    animation: emojiLeft 3s infinite ease-in-out;
}

.view-block .demo-emoji-right {
    right: -30px;
    color: #00cc66;
    animation: emojiRight 3s infinite ease-in-out;
}

.view-block .demo-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    animation: gradientAnimation 3s infinite ease-in-out;
    z-index: 1;
    pointer-events: none;
}

/* Анимация для "Смотреть всех сразу" */
.grid-preview {
    position: relative;
    width: 120px; /* Фиксированная ширина для размещения двух колонок */
    height: 150px; /* Увеличенная высота для анимации */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.preview-card {
    width: 50px;
    height: 70px;
    background-color: #333; /* Основной цвет для первых 4 карточек */
    border: 1px solid #fff;
    border-radius: 5px;
    position: absolute;
    animation: cardScroll 3s infinite ease-in-out;
}

/* Первые четыре карточки */
.card1 { top: 0; left: 0; }
.card2 { top: 0; left: 60px; }
.card3 { top: 75px; left: 0; } /* Уменьшен отступ сверху */
.card4 { top: 75px; left: 60px; } /* Уменьшен отступ сверху */

/* Дополнительные карточки с другим цветом */
.card5 {
    width: 50px;
    height: 70px;
    background-color: #fe3c72; /* Другой цвет для новых карточек */
    border: 1px solid #fff;
    border-radius: 5px;
    position: absolute;
    top: 150px; /* Начальная позиция ниже видимой области */
    left: 0;
    animation: cardScrollExtra 3s infinite ease-in-out;
}

.card6 {
    width: 50px;
    height: 70px;
    background-color: #fe3c72; /* Другой цвет для новых карточек */
    border: 1px solid #fff;
    border-radius: 5px;
    position: absolute;
    top: 150px; /* Начальная позиция ниже видимой области */
    left: 60px;
    animation: cardScrollExtra 3s infinite ease-in-out;
}

.scroll-finger {
    font-size: 24px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: fingerScroll 3s infinite ease-in-out;
}

/* Анимации для свайпа */
@keyframes swipeAnimation {
    0% { transform: translateX(0) rotate(0deg); opacity: 1; }
    25% { transform: translateX(-80px) rotate(-10deg); opacity: 0.5; }
    50% { transform: translateX(0) rotate(0deg); opacity: 1; }
    75% { transform: translateX(80px) rotate(10deg); opacity: 0.5; }
    100% { transform: translateX(0) rotate(0deg); opacity: 1; }
}

@keyframes fingerMove {
    0% { transform: translate(-50%, -50%); }
    25% { transform: translate(-130%, -50%); }
    50% { transform: translate(-50%, -50%); }
    75% { transform: translate(30%, -50%); }
    100% { transform: translate(-50%, -50%); }
}

@keyframes emojiLeft {
    0% { opacity: 0; }
    20% { opacity: 1; }
    30% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes emojiRight {
    0% { opacity: 0; }
    60% { opacity: 0; }
    70% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes gradientAnimation {
    0% { background: transparent; }
    20% { background: linear-gradient(to right, rgba(255, 68, 68, 0.7) 0%, transparent 50%); }
    30% { background: linear-gradient(to right, rgba(255, 68, 68, 0.7) 0%, transparent 50%); }
    40% { background: transparent; }
    60% { background: transparent; }
    70% { background: linear-gradient(to left, rgba(0, 204, 102, 0.7) 0%, transparent 50%); }
    80% { background: linear-gradient(to left, rgba(0, 204, 102, 0.7) 0%, transparent 50%); }
    100% { background: transparent; }
}

/* Анимации для пролистывания плиток */
@keyframes fingerScroll {
    0% { transform: translateX(-50%) translateY(75px); opacity: 0; } /* Начало внизу блока (150px / 2) */
    20% { transform: translateX(-50%) translateY(50px); opacity: 1; } /* Появление */
    80% { transform: translateX(-50%) translateY(-75px); opacity: 1; } /* Движение к верху блока */
    100% { transform: translateX(-50%) translateY(-85px); opacity: 0; } /* Исчезновение чуть выше */
}
@media (max-width: 600px) {
    .scroll-finger {
        font-size: 20px;
    }

    @keyframes fingerScroll {
        0% { transform: translateX(-50%) translateY(60px); opacity: 0; } /* Начало внизу блока (120px / 2) */
        20% { transform: translateX(-50%) translateY(40px); opacity: 1; }
        80% { transform: translateX(-50%) translateY(-60px); opacity: 1; } /* Движение к верху блока */
        100% { transform: translateX(-50%) translateY(-70px); opacity: 0; }
    }
}
@keyframes cardScroll {
    0% { transform: translateY(150px); opacity: 0; } /* Начало ниже видимой области */
    20% { transform: translateY(75px); opacity: 1; } /* Появление внизу */
    80% { transform: translateY(0); opacity: 1; } /* Подъем вверх */
    100% { transform: translateY(-70px); opacity: 0; } /* Исчезновение сверху */
}

@keyframes cardScrollExtra {
    0% { transform: translateY(225px); opacity: 0; } /* Начало чуть ниже */
    20% { transform: translateY(150px); opacity: 1; } /* Появление ниже первых карточек */
    80% { transform: translateY(75px); opacity: 1; } /* Подъем до нижней позиции */
    100% { transform: translateY(0); opacity: 0; } /* Исчезновение на уровне старта первых карточек */
}

/* Применение анимации ко всем карточкам */
.preview-card { animation: cardScroll 3s infinite ease-in-out; }
.card5, .card6 { animation: cardScrollExtra 3s infinite ease-in-out; }

/* Задержка для последовательного появления */
.card1 { animation-delay: 0s; }
.card2 { animation-delay: 0.1s; }
.card3 { animation-delay: 0.2s; }
.card4 { animation-delay: 0.3s; }
.card5 { animation-delay: 0.4s; }
.card6 { animation-delay: 0.5s; }

/* Адаптация для мобильных */
@media (max-width: 600px) {
    .view-text {
        font-size: 24px;
    }

    .view-block .swipe-demo {
        height: 120px;
		        width: 100%;
    }

    .view-block .demo-card {
        width: 60px;
        height: 80px;
    }

    .view-block .demo-finger {
        font-size: 20px;
    }

    .view-block .demo-emoji {
        font-size: 18px;
    }

    .view-block .demo-emoji-left {
        left: -20px;
    }

    .view-block .demo-emoji-right {
        right: -20px;
    }

    .grid-preview {
        width: 100px; /* Уменьшенная ширина */
        height: 180px;
    }

    .preview-card, .card5, .card6 {
        width: 40px;
        height: 55px;
    }

    .card2 { top: 0; left: 50px; }
    .card3 { top: 60px; left: 0; } /* Уменьшен отступ сверху */
    .card4 { top: 60px; left: 50px; } /* Уменьшен отступ сверху */
    .card5 { top: 60px; left: 0; }
    .card6 { top: 60px; left: 50px; }

    .scroll-finger {
        font-size: 20px;
    }

    @keyframes cardScroll {
        0% { transform: translateY(120px); opacity: 0; }
        20% { transform: translateY(60px); opacity: 1; }
        80% { transform: translateY(0); opacity: 1; }
        100% { transform: translateY(-55px); opacity: 0; }
    }

    @keyframes cardScrollExtra {
        0% { transform: translateY(180px); opacity: 0; }
        20% { transform: translateY(120px); opacity: 1; }
        80% { transform: translateY(60px); opacity: 1; }
        100% { transform: translateY(0); opacity: 0; }
    }
}


/* Стили для блока "Мастера на смене" */
.shift-masters-container {
  width: 100%;
  max-width: 100%;
  margin: 20px auto;
  overflow: hidden;
}

.shift-masters-carousel {
  position: relative;
  width: 100%;
  height: 150px; /* Высота карточек */
  overflow: hidden;
}

.shift-masters-track {
  display: flex;
  height: 100%;
  width: auto; /* Ширина определяется количеством карточек */
  transition: transform 0.3s ease;
}

.shift-master-card {
  flex-shrink: 0;
  width: 120px; /* Фиксированная ширина карточки */
  height: 100%;
  margin: 0 5px; /* Отступы между карточками */
  background-color: #333;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}

.shift-master-card:hover {
  transform: scale(1.05);
}

.shift-master-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shift-master-name {
  position: absolute;
  bottom: 5px;
  left: 5px;
  color: white;
  font-family: "ProximaNova-Bold", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Адаптация для мобильных устройств */
@media (max-width: 600px) {
  .shift-masters-carousel {
    height: 120px; /* Уменьшаем высоту для мобильных */
  }

  .shift-master-card {
    width: 100px; /* Уменьшаем ширину карточек */
    margin: 0 3px;
  }

  .shift-master-name {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .shift-masters-carousel {
    height: 100px;
  }

  .shift-master-card {
    width: 80px;
  }

  .shift-master-name {
    font-size: 10px;
  }
}