/* Сброс стилей и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
}

body.age-verification-active,
body.channel-subscribe-active {
    overflow: hidden;
}

/* Модальное окно возрастного ограничения */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-verification-overlay.hidden {
    display: none;
}

.age-verification-modal {
    background: #1a1818;
    border: 2px solid rgba(255, 110, 199, 0.3);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 40px rgba(255, 110, 199, 0.3);
}

.age-verification-title {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-verification-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.age-verification-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.age-verification-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    min-width: 180px;
}

.age-verification-btn-yes {
    background: #ff6ec7;
    color: white;
    box-shadow: 0 0 20px rgba(255, 110, 199, 0.5);
}

.age-verification-btn-yes:hover {
    background: #ff7dd1;
    box-shadow: 0 0 30px rgba(255, 110, 199, 0.8);
    transform: translateY(-2px);
}

.age-verification-btn-no {
    background: rgba(61, 31, 31, 0.6);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.age-verification-btn-no:hover {
    background: rgba(61, 31, 31, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Push-уведомление для подписки на канал */
.channel-subscribe-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.channel-subscribe-overlay.hidden {
    display: none;
}

.channel-subscribe-modal {
    background: #1a1818;
    border: 2px solid rgba(255, 110, 199, 0.3);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    max-width: 400px;
    width: 85%;
    box-shadow: 0 0 40px rgba(255, 110, 199, 0.3);
}

.channel-subscribe-title {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.channel-subscribe-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.channel-subscribe-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.channel-subscribe-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    min-width: 140px;
    text-decoration: none;
    display: inline-block;
}

.channel-subscribe-btn-yes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0088cc;
    color: white;
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.5);
}

.channel-subscribe-icon {
    width: 24px;
    height: 24px;
    opacity: 1;
}

.channel-subscribe-btn-yes:hover {
    background: #0099dd;
    box-shadow: 0 0 30px rgba(0, 136, 204, 0.8);
    transform: translateY(-2px);
}

.channel-subscribe-btn-no {
    background: rgba(61, 31, 31, 0.6);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.channel-subscribe-btn-no:hover {
    background: rgba(61, 31, 31, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Скрытый SEO-текст */
.seo-hidden-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    font-size: 0;
    line-height: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка */
.header {
    background: #1a1818;
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.header .container {
    padding: 0;
    max-width: 100%;
    width: 100%;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s;
}

.nav {
    justify-self: start;
    margin: 0;
    padding: 0;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    font-family: inherit;
    letter-spacing: 0.5px;
}

.nav a:hover {
    opacity: 0.8;
}

.logo {
    justify-self: center;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo h1 {
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    margin: 0;
    text-decoration: none;
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 700;
}

.logo-link h1 {
    text-decoration: none;
    color: white;
}

.header-contacts {
    justify-self: end;
    display: flex;
    gap: 15px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s;
    width: 30px;
    height: 30px;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-icon:hover {
    opacity: 0.8;
}

/* Главный блок / Герой */
.hero {
    background: #250000;
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 50px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin: 0;
    min-height: 80vh;
    gap: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    display: block;
}

.hero-content {
    background: #250000;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 28px;
    line-height: 1.15;
    color: white;
    text-align: left;
    max-width: 550px;
    width: 100%;
    letter-spacing: 0.3px;
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-style: italic;
}

.hero-content p {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 6px;
    color: #fdf5ff;
    line-height: 1.7;
    text-align: left;
    max-width: 600px;
    width: 100%;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-content p:first-of-type {
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.25px;
    position: relative;
}

.hero-content p:first-of-type::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, #ff6ec7, rgba(255, 110, 199, 0));
    border-radius: 999px;
}

.hero-buttons-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 15px;
    margin-top: 30px;
    width: fit-content;
    align-items: center;
}

.hero-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 40px;
    background: #3d1f1f;
    color: white;
    text-decoration: none;
    border-radius: 60px;
    font-size: 20px;
    font-weight: 600;
    transition: background 0.3s;
    box-sizing: border-box;
    width: auto;
    white-space: nowrap;
}

.hero-button:hover {
    background: #4a2525;
}

.hero-button-taxi {
    background: #3d1f1f;
    color: white;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.hero-button-taxi:hover {
    background: #4a2525;
}

.hero-button-channel-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
}

.hero-channel-telegram-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.hero-button-channel-wrapper:hover .hero-channel-telegram-icon {
    transform: scale(1.1);
}

.hero-button-channel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ff6ec7;
    border: none;
    padding: 15px 40px;
    box-sizing: border-box;
    border-radius: 60px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s;
    color: white;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 110, 199, 0.5);
    width: auto;
    white-space: nowrap;
}

.hero-button-channel-icon {
    width: 20px;
    height: 20px;
    display: none;
}

.hero-button-channel:hover {
    background: #ff7dd1;
    box-shadow: 0 0 30px rgba(255, 110, 199, 0.8);
}

.hero-button-telegram {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 31, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 40px;
    box-sizing: border-box;
    border-radius: 60px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s;
    color: white;
    text-decoration: none;
    width: auto;
    white-space: nowrap;
}

.hero-button-telegram:hover {
    background: rgba(61, 31, 31, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}


#ya-taxi-widget {
    display: none !important;
}

.footer-taxi-widget #ya-taxi-widget {
    display: block !important;
}

.button-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

/* Информационные блоки */
.info-blocks {
    padding: 80px 0;
    background: #191717;
    color: white;
}

.info-blocks .section-title {
    margin-bottom: 60px;
}

.blocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-block {
    text-align: center;
    padding: 20px;
    background: transparent;
    transition: transform 0.3s;
}

.info-block:hover {
    transform: translateY(-5px);
}

.block-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: #d3d3d3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.block-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-block h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.info-block p {
    color: white;
    line-height: 1.6;
    font-size: 16px;
}

.info-block-hidden {
    display: none;
}

.info-block-hidden.show {
    display: block;
}

.show-more-container {
    text-align: center;
    margin-top: 50px;
}

.show-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 20px;
    background: #ff6ec7;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    box-shadow: 0 0 20px rgba(255, 110, 199, 0.5);
}

.show-more-btn:hover {
    background: #ff7dd1;
    box-shadow: 0 0 30px rgba(255, 110, 199, 0.8);
}

.show-more-btn .arrow-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.3s;
    filter: brightness(0) invert(1);
}

.show-more-btn:hover .arrow-icon {
    opacity: 0.7;
}

.show-more-btn.hidden {
    display: none;
}

/* Блок с массажистками */
.masters-section {
    padding: 80px 0;
    background: #000;
    color: white;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: white;
}

.masters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.master-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    aspect-ratio: 3/4;
    background: #1a1818;
}

.master-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 110, 199, 0.3);
}

.master-photo {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.master-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.master-card:hover .master-photo img {
    transform: scale(1.08);
}

/* Карточка "Еще девушки" для ПК */
.master-card-more {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6ec7 0%, #ff7dd1 100%);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.master-card-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.master-card-more-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.master-card-more-text {
    color: white;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.master-card-more:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 110, 199, 0.5);
    background: linear-gradient(135deg, #ff7dd1 0%, #ff8ee0 100%);
}

.masters-button-container {
    margin-top: 60px;
    width: 100%;
    display: block;
}

/* Скрыть кнопку на ПК, показать на мобильных */
@media (min-width: 769px) {
    .masters-button-container {
        display: none;
    }
    
    .master-card-more {
        display: flex;
    }
}

@media (max-width: 768px) {
    .master-card-more {
        display: none;
    }
    
    .masters-button-container {
        display: block;
    }
}

.masters-telegram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 20px;
    background: #ff6ec7;
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 0 20px rgba(255, 110, 199, 0.5);
}

.masters-telegram-btn:hover {
    background: #ff7dd1;
    box-shadow: 0 0 30px rgba(255, 110, 199, 0.8);
}

.masters-telegram-icon {
    width: 20px;
    height: 20px;
    opacity: 0.9;
    display: none;
}

@media (max-width: 768px) {
    .masters-telegram-icon {
        display: block;
    }
}

/* Блок Интерьер */
.interior-section {
    padding: 0;
    background: #000;
    color: white;
    min-height: 80vh;
    position: relative;
}

.interior-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 80vh;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
}

.interior-gallery {
    width: 100%;
    height: 100%;
    min-height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    box-sizing: border-box;
}

.interior-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.interior-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.interior-image:hover img {
    transform: scale(1.05);
}

.interior-content-wrapper {
    background: #250000;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    min-height: 80vh;
    box-sizing: border-box;
}

.interior-content {
    width: 100%;
    max-width: 600px;
    color: white;
}

.interior-content h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    color: white;
}

.interior-content p {
    font-size: 18px;
    line-height: 1.8;
    color: white;
}

.interior-intro {
    font-size: 18px;
    line-height: 1.8;
    color: white;
    margin-bottom: 25px;
}

.interior-subtitle {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    color: white;
    margin-bottom: 20px;
    margin-top: 25px;
}

.interior-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.interior-features li {
    font-size: 17px;
    line-height: 1.8;
    color: white;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.interior-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6ec7;
    font-size: 24px;
    line-height: 1.4;
    text-shadow: 0 0 10px rgba(255, 110, 199, 0.5);
}

.interior-features li:last-child {
    margin-bottom: 0;
}

.interior-features strong {
    color: #ff6ec7;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 110, 199, 0.3);
}

/* О нас / Галерея */
.about-section {
    padding: 80px 0;
    background: #000;
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Подвал */
.footer {
    background: #191717;
    color: white;
    padding: 80px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 50px;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-info-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.35);
}

.footer-info-item:last-child {
    border-bottom: none;
}

.footer-label {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    min-width: 120px;
}

.footer-value {
    font-size: 18px;
    color: white;
    text-align: right;
    flex: 1;
}

.footer-link {
    color: #ff6ec7;
    text-decoration: underline;
    transition: opacity 0.3s;
    text-shadow: 0 0 10px rgba(255, 110, 199, 0.5);
}

.footer-link:hover {
    opacity: 0.8;
    text-shadow: 0 0 15px rgba(255, 110, 199, 0.8);
}

.footer-map-column {
    width: 100%;
}

.footer-map {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.footer-telegram-link {
    font-size: 18px;
    color: #ff6ec7;
    text-decoration: underline;
    transition: opacity 0.3s;
    text-align: right;
    text-shadow: 0 0 10px rgba(255, 110, 199, 0.5);
}

.footer-telegram-link:hover {
    opacity: 0.8;
    text-shadow: 0 0 15px rgba(255, 110, 199, 0.8);
}

.footer-telegram-item {
    border-bottom: 1px solid rgba(255,255,255,0.35);
}

.footer-channel-item {
    border-bottom: 1px solid rgba(255,255,255,0.35);
}

.footer-channel-link {
    font-size: 18px;
    color: #ff6ec7;
    text-decoration: underline;
    transition: opacity 0.3s;
    text-align: right;
    text-shadow: 0 0 10px rgba(255, 110, 199, 0.5);
}

.footer-channel-link:hover {
    opacity: 0.8;
    text-shadow: 0 0 15px rgba(255, 110, 199, 0.8);
}

.footer-taxi-item {
    border-bottom: none;
}

.footer-taxi-widget {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.footer-taxi-widget .ya-taxi-widget,
.footer-taxi-widget #ya-taxi-widget,
.footer-taxi-widget #footer-ya-taxi-widget {
    display: block !important;
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: #1a1818;
    z-index: 10000;
    transition: top 0.3s ease;
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    overflow-y: auto;
}

.mobile-menu.active {
    top: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-header .logo {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.mobile-menu-header .logo-link {
    text-decoration: none;
    color: white !important;
    display: inline-block;
    cursor: pointer;
    transition: opacity 0.3s;
}

.mobile-menu-header .logo-link:hover {
    color: white !important;
}

.mobile-menu-header .logo-link:hover {
    opacity: 0.8;
}

.menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.mobile-nav {
    flex: 1;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav li {
    margin: 0 0 30px 0;
}

.mobile-nav li:last-child {
    margin-bottom: 0;
}

.mobile-nav a {
    display: block;
    padding: 10px 0;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: opacity 0.3s;
}

.mobile-nav a:hover {
    opacity: 0.7;
}

.mobile-contacts {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 30px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-contact-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.mobile-contact-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Адаптивность */
@media (max-width: 768px) {
    .header-content {
        grid-template-columns: 1fr auto;
        padding: 0 20px;
    }

    .logo {
        justify-self: start;
    }

    .nav {
        display: none;
    }

    .header-contacts {
        display: none;
    }

    .menu-toggle {
        display: flex;
        justify-self: end;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 300px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
    }

    .hero-button,
    .hero-button-channel,
    .hero-button-telegram {
        width: 100%;
        font-size: 18px;
        padding: 12px 30px;
    }

    .hero-button-channel-wrapper {
        width: 100%;
        gap: 10px;
    }

    .hero-channel-telegram-icon {
        display: none;
    }

    .hero-button-channel-icon {
        display: block;
        width: 28px;
        height: 28px;
    }

    .masters-telegram-icon {
        width: 28px;
        height: 28px;
    }

    .channel-subscribe-icon {
        width: 22px;
        height: 22px;
    }

    .channel-subscribe-modal {
        padding: 30px 25px;
        max-width: 90%;
    }

    .channel-subscribe-title {
        font-size: 20px;
    }

    .channel-subscribe-text {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .channel-subscribe-btn {
        padding: 10px 25px;
        font-size: 14px;
        min-width: 120px;
    }

    .blocks-grid {
        grid-template-columns: 1fr;
    }

    .masters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .master-card {
        border-radius: 12px;
    }
    
    /* На мобильных скрыть карточку "Еще девушки" */
    .master-card-more {
        display: none !important;
    }
    
    /* На мобильных показать кнопку */
    .masters-button-container {
        display: block !important;
    }

    .masters-button-container {
        margin-top: 40px;
    }

    .masters-telegram-btn {
        padding: 18px;
        font-size: 18px;
    }

    .show-more-btn {
        width: 100%;
        padding: 20px;
        font-size: 20px;
        border-radius: 15px;
        background: #ff6ec7;
        box-shadow: 0 0 20px rgba(255, 110, 199, 0.5);
    }

    .interior-content {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        padding: 40px 20px;
    }

    .footer-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 0;
    }

    .footer-label {
        min-width: auto;
        font-size: 16px;
    }

    .footer-value {
        text-align: left;
        font-size: 16px;
    }

    .footer-map {
        height: 300px;
    }

    .footer-telegram-link {
        font-size: 16px;
        text-align: left;
    }

    .section-title {
        font-size: 28px;
    }

    .info-blocks .section-title {
        margin-bottom: 40px;
    }

    .masters-section {
        padding: 60px 0;
    }

    .interior-content h2 {
        font-size: 36px;
    }

    .interior-content p {
        font-size: 16px;
    }

    .interior-intro {
        font-size: 16px;
    }

    .interior-subtitle {
        font-size: 18px;
    }

    .interior-features li {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .interior-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .interior-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 8px;
        min-height: auto;
    }

    .interior-image {
        min-height: 200px;
    }

    .interior-content-wrapper {
        padding: 40px 20px;
        min-height: auto;
        border-radius: 15px;
    }

    .interior-content {
        width: 100%;
        max-width: 100%;
    }

    /* Модальное окно возрастного ограничения на мобильных */
    .age-verification-modal {
        padding: 50px 30px;
        max-width: 90%;
        margin: 20px;
        border-radius: 20px;
        background: #1a1818;
        border: 2px solid rgba(255, 110, 199, 0.3);
        box-shadow: 0 0 40px rgba(255, 110, 199, 0.3);
    }

    .age-verification-title {
        font-size: 28px;
        margin-bottom: 20px;
        color: white;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .age-verification-text {
        font-size: 16px;
        margin-bottom: 40px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.8);
    }

    .age-verification-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .age-verification-btn {
        width: 100%;
        min-width: auto;
        font-size: 18px;
        padding: 16px 40px;
        border-radius: 60px;
    }

    .age-verification-btn-yes {
        background: #ff6ec7;
        color: white;
        box-shadow: 0 0 20px rgba(255, 110, 199, 0.5);
    }

    .age-verification-btn-no {
        background: rgba(61, 31, 31, 0.6);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .masters-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


