* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1a0a0f 0%, #2d0f1f 25%, #4a1428 50%, #2d0f1f 75%, #1a0a0f 100%);
    background-attachment: fixed;
    scroll-behavior: smooth;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

html {
    height: -webkit-fill-available;
}

html, body {
    width: 100% !important;
    overflow-x: hidden !important;
}

/* Унифицированные стили для формы */
.photos-label {
    font-family: 'Montserrat', sans-serif;
    color: #d4af37 !important;  /* Золотой цвет для "Прикрепите от 3 до 5 фотографий..." */
    font-size: 1em;
    margin-bottom: 10px;
    display: block;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    color: #d4af37 !important;  /* Золотой для всех лейблов, включая "Прикрепите фото" */
    margin-bottom: 8px;
    font-weight: 500;
}

input, select, textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95em;
    color: #fff;
    background: rgba(20,20,20,0.9);
    border: 1px solid #d4af37;
    border-radius: 8px;
    padding: 12px 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input::placeholder, textarea::placeholder {
    color: rgba(255,255,255,0.6);
    font-size: 0.95em;
}

input:focus, select:focus, textarea:focus {
    border-color: #f2d06b;
    box-shadow: 0 0 8px rgba(212,175,55,0.3);
    outline: none;
}

.custom-file-upload {
    font-size: 0.9em;
    padding: 10px 18px;
    max-width: 280px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #d4af37 !important;  /* Золотой текст для "Выбрать фото" */
    background: rgba(20,20,20,0.9);
    border: 1px solid #d4af37 !important;  /* Унифицированная рамка */
    border-radius: 8px !important;  /* Унифицированное закругление */
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0 auto;
}

.custom-file-upload:hover {
    background: rgba(212,175,55,0.1);
    box-shadow: 0 0 10px rgba(212,175,55,0.3);
}

.file-status {
    font-family: 'Montserrat', sans-serif;
    color: #d4af37;
    font-size: 0.9em;
    margin-top: 8px;
    text-align: center;
}

.submit-btn {
    font-size: 0.9em;
    padding: 12px 30px;
    max-width: 300px;
    margin: 0 auto;
	white-space: nowrap !important;
	overflow: hidden !important;
}

@media (max-width: 768px) {
    .custom-file-upload {
        font-size: 0.85em;
        padding: 10px 16px;
        max-width: 100%;
        border-radius: 8px;
    }
}

.header-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(8, 4, 6, 0.7);
    backdrop-filter: blur(40px) saturate(120%);
    border-bottom: none;
    animation: menuAppear 1.2s ease;
    pointer-events: none;
}

.header-container {
    pointer-events: auto;
    max-width: 1800px;
    margin: 0 auto;
    padding: 32px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-item {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: color 0.5s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: rgba(212, 175, 55, 0.7);
    transform: translateX(-50%);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.nav-item:hover {
    color: rgba(255, 255, 255, 0.95);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-accent {
    color: rgba(212, 175, 55, 0.85);
    font-weight: 400;
}

.nav-accent::after {
    background: rgba(212, 175, 55, 0.9);
}

.nav-accent:hover {
    color: rgba(212, 175, 55, 1);
}

@media (max-width: 1024px) {
    .header-container {
        padding: 28px 50px;
    }
    
    .header-nav {
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 24px 30px;
    }
    
    .header-logo {
        font-size: 0.95rem;
        letter-spacing: 4px;
    }
    
    .header-nav {
        gap: 24px;
    }
    
    .nav-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 20px 20px;
    }
    
    .header-logo {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    
    .header-nav {
        gap: 16px;
    }
    
    .nav-item {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.75) 0%, rgba(30, 25, 20, 0.75) 100%);
    border: 2px solid rgba(212, 175, 55, 0.9);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center !important;  /* Усиленное центрирование всего содержимого */
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4), 0 0 100px rgba(212, 175, 55, 0.4);
    animation: fadeInScale 0.5s ease-out;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center !important;  /* Центрирование элементов внутри */
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.age-modal-icon {
    margin: 0 auto 30px;
    width: 100px;
    height: 100px;
}

.age-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    color: #d4af37;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}

.age-modal-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: center !important;  /* Центрирование текста */
}

.age-warning {
    font-size: 0.9em !important;
    color: rgba(212, 175, 55, 0.8) !important;
    margin-bottom: 30px !important;
    text-align: center !important;
    width: 100% !important;
}

.age-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.age-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    pointer-events: auto;
    position: relative;
    z-index: 1000000;
}

.age-btn-yes {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b8 100%);
    color: #000;
    border: 2px solid transparent;
}

.age-btn-yes:hover {
    background: linear-gradient(135deg, #f4e5b8 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.age-btn-no {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.age-btn-no:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 480px) {
    .age-modal-content {
        padding: 40px 25px;
    }
    .age-modal-content h2 {
        font-size: 1.6em;
    }
    .age-modal-content p {
        font-size: 1em;
    }
    .age-btn {
        font-size: 0.95em;
        padding: 12px 25px;
    }
}

/* Центрирование "Dark Queen Premium Escort Agency" */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}

.main-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 2;
    padding: 0 !important;
    margin: 0 !important;
}

.logo-section {
    text-align: center !important;
    max-width: 90vw !important; /* Не выходит за края видео/экрана */
    padding: 0 10px !important;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: clamp(2rem, 10vw, 7rem);
    text-align: center !important;
    width: 100% !important;
}

.subtitle {
    font-weight: 300;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
    font-size: clamp(0.8rem, 3vw, 1.8rem);
    text-align: center !important;
    width: 100% !important;
}

@media (max-width: 768px) {
    .main-content {
        height: 100vh !important;
    }
    .logo-section {
        max-width: 95vw !important;
    }
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    z-index: 0;
    overflow: hidden !important;
    pointer-events: none;
    background: #000; /* Fallback */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Стили для оригинального видео (адаптировано из старого) */
.original-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto; /* Авто-ширина для не растяжения */
    height: 100vh; /* Во всю высоту */
    object-fit: contain;
    object-position: center center;
    pointer-events: none;
    z-index: 2; /* Над размытым */
}

/* Стили для размытого видео (подложка, как старое видео, но с blur) */
.blurred-video {
    position: absolute;
    top: 50%; /* Фикс: как у оригинального для правильного transform */
    left: 50%; /* Фикс: центрирование */
    width: 100%;
    height: 100vh;
    transform: translate(-50%, -50%); /* Базовый transform, как в старом */
    object-fit: cover; /* Полноэкранное покрытие, как в старом */
    filter: blur(30px); /* Сильное размытие (регулируй: 10-30px) */
    pointer-events: none;
    z-index: 1; /* За оригинальным */
    display: none; /* По умолчанию скрыто, показываем в media */
}

/* Скрытие controls (из старого) */
video::-webkit-media-controls,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

/* Медиа для десктопа >=1024px (из старого, адаптировано) */
@media (min-width: 1024px) {
    .original-video {
        max-width: 100% !important; /* Ограничение */
        height: 100vh !important;
        min-height: 100vh !important;
        object-fit: contain !important; /* Contain для оригинала */
        object-position: center 35% !important;
        transform: translate(-50%, -50%) scale(1.1) !important;
    }
    .blurred-video {
        display: block; /* Показываем подложку */
        min-width: 100% !important;
        min-height: 100vh !important;
        object-position: center 35% !important;
        transform: translate(-50%, -50%) scale(1.1) !important; /* Масштабирование как раньше */
    }
    .video-overlay {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(20, 0, 20, 0.15) 50%,
            rgba(0, 0, 0, 0.25) 100%
        );
    }
}

/* Для ультра-больших экранов (из старого) */
@media (min-width: 1920px) {
    .original-video,
    .blurred-video {
        object-position: center 30% !important;
        transform: translate(-50%, -50%) scale(1.05) !important; /* Масштабирование как раньше */
    }
}

/* Для планшетов (из старого, без изменений) */
@media (min-width: 769px) and (max-width: 1023px) {
    .video-background {
        background: #000;
    }
    .blurred-video {
        display: none; /* Скрыто */
    }
    .original-video {
        width: 100%; /* Полноэкранное */
        object-fit: cover; /* Как раньше */
    }
}

/* Для мобильных (из старого, без изменений) */
@media (max-width: 768px) {
    .blurred-video {
        display: none; /* Скрыто */
    }
    .original-video {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        min-width: 100%;
        min-height: 100vh;
        transform: none;
        object-fit: cover;
        object-position: center center;
    }
    .video-overlay {
        position: fixed;
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(20, 0, 20, 0.3) 50%,
            rgba(0, 0, 0, 0.4) 100%
        );
    }
}

/* Оверлей (из старого) */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(20, 0, 20, 0.25) 50%,
        rgba(0, 0, 0, 0.35) 100%
    );
    z-index: 3; /* Над видео */
}

.contacts {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.contact-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.contact-btn svg {
    width: 28px;
    height: 28px;
}

.contact-btn.telegram {
    background: linear-gradient(135deg, rgba(34, 139, 230, 0.9), rgba(34, 139, 230, 0.7));
    color: #fff;
}

.contact-btn.telegram:hover {
    background: linear-gradient(135deg, rgba(34, 139, 230, 1), rgba(34, 139, 230, 0.9));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(34, 139, 230, 0.5);
}

.main-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
}

@media (min-width: 1024px) {
    .main-content {
        padding: 60px 40px;
    }
}

.logo-section {
    text-align: center;
    margin-bottom: 25px;
    animation: fadeInDown 1s ease-out;
    max-width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.crown-icon {
    display: none !important;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: clamp(2rem, 10vw, 7rem);
}

.subtitle {
    font-weight: 300;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
    font-size: clamp(0.8rem, 3vw, 1.8rem);
}

@media (min-width: 1024px) {
    .main-title {
        letter-spacing: 4px;
        margin-bottom: 15px;
		font-size: 4rem;
    }
    .subtitle {
        letter-spacing: 8px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1920px) {
    .main-title {
        letter-spacing: 6px;
    }
    .subtitle {
        letter-spacing: 10px;
    }
}

.navigation {
    display: none !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-btn {
    padding: 12px 25px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.2);
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.5s ease;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.nav-btn:active {
    transform: translateY(-1px);
}

.info-panel {
    display: none !important;
}

.info-panel.active {
    right: 0;
}

.info-panel::-webkit-scrollbar {
    width: 8px;
}

.info-panel::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.info-panel::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4af37, #f4e4a6);
    border-radius: 4px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(212, 175, 55, 0.4);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.panel-content {
    display: none;
    padding: 80px 40px 40px;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.panel-content.active {
    display: block;
}

.panel-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37, #f4e4a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.content-text p {
    margin-bottom: 20px;
}

.content-text strong {
    color: #d4af37;
    font-weight: 600;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.service-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 15px;
    line-height: 1.6;
}

.price {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    color: #d4af37;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 10px;
}

.intro-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    text-align: center;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.model-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.model-card:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.model-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.model-icon {
    font-size: 4rem;
    opacity: 0.6;
}

.model-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.model-card > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.model-card ul {
    list-style: none;
    padding: 0;
}

.model-card ul li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.model-card ul li:last-child {
    border-bottom: none;
}

.model-card ul li::before {
    content: '✓';
    color: #d4af37;
    font-weight: bold;
    margin-right: 10px;
}

.note {
    margin-top: 30px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.08);
    border-left: 3px solid #d4af37;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.vip-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.vip-intro p {
    color: rgba(255, 255, 255, 0.85);
}

.vip-benefits {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.vip-item {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.vip-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateX(5px);
}

.vip-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 10px;
}

.vip-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
}

.vip-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.4);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.vip-cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.vip-note {
    color: #d4af37 !important;
    font-weight: 600;
    font-size: 1rem !important;
    margin: 0 !important;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
}

.telegram-icon {
    background: linear-gradient(135deg, rgba(34, 139, 230, 0.3), rgba(34, 139, 230, 0.1));
    border: 2px solid rgba(34, 139, 230, 0.5);
    color: #228be6;
}

.whatsapp-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.3), rgba(37, 211, 102, 0.1));
    border: 2px solid rgba(37, 211, 102, 0.5);
    color: #25d366;
}

.contact-method h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 5px;
}

.contact-method p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.contact-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #f4e4a6;
    text-decoration: underline;
}

.working-hours {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
}

.working-hours h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.hours {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-weight: 500;
}

.response-time {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.booking-info {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 30px;
    border-radius: 12px;
}

.booking-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.booking-info ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.booking-info ol li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.booking-note {
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid #d4af37;
    padding: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
}

@media (max-width: 1200px) {
    .info-panel {
        width: 500px;
        right: -500px;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    .main-content {
        padding: 30px 15px;
        min-height: 100vh;
    }
    .logo-section {
        margin-bottom: 35px;
    }
    .navigation {
        gap: 8px;
        padding: 0 10px;
    }
    .nav-btn {
        padding: 13px 22px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    .info-panel {
        width: 100%;
        right: -100%;
    }
    .panel-content {
        padding: 70px 20px 40px;
    }
    .panel-content h2 {
        font-size: 1.9rem;
    }
    .features,
    .service-grid {
        grid-template-columns: 1fr;
    }
    .contacts {
        top: 12px;
        right: 12px;
        gap: 8px;
    }
    .contact-btn {
        width: 48px;
        height: 48px;
    }
    .contact-btn svg {
        width: 22px;
        height: 22px;
    }
    .feature-item {
        padding: 20px;
    }
    .feature-icon {
        font-size: 2rem;
    }
    .service-card {
        padding: 20px;
    }
    .service-icon {
        font-size: 2.5rem;
    }
    .model-placeholder {
        height: 180px;
    }
    .contact-method {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 25px 10px;
    }
    .logo-section {
        margin-bottom: 30px;
    }
    .navigation {
        gap: 6px;
        padding: 0 5px;
    }
    .nav-btn {
        padding: 11px 18px;
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    .panel-content {
        padding: 70px 15px 30px;
    }
    .panel-content h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    .content-text {
        font-size: 0.95rem;
    }
    .feature-item {
        padding: 18px;
    }
    .feature-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    .feature-item h3 {
        font-size: 1rem;
    }
    .feature-item p {
        font-size: 0.85rem;
    }
    .service-card {
        padding: 18px;
    }
    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    .service-card h3 {
        font-size: 1.05rem;
    }
    .service-card p {
        font-size: 0.85rem;
    }
    .model-placeholder {
        height: 150px;
    }
    .model-icon {
        font-size: 2.5rem;
    }
    .model-card {
        padding: 20px;
    }
    .model-card h3 {
        font-size: 1.2rem;
    }
    .vip-item {
        padding: 18px;
    }
    .vip-item h3 {
        font-size: 1.05rem;
    }
    .contact-method {
        padding: 18px;
        gap: 15px;
    }
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    .contact-icon svg {
        width: 25px;
        height: 25px;
    }
    .contact-method h3 {
        font-size: 1.1rem;
    }
    .contacts {
        top: 10px;
        right: 10px;
        gap: 7px;
    }
    .contact-btn {
        width: 45px;
        height: 45px;
    }
    .contact-btn svg {
        width: 20px;
        height: 20px;
    }
    .close-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }
}

.about-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    z-index: 1;
    background: transparent;
}

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

.about-content {
    background: linear-gradient(135deg, rgba(30, 15, 25, 0.85) 0%, rgba(50, 20, 35, 0.75) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
    animation: fadeInUp 1s ease-out;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    opacity: 1;
    pointer-events: none;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 700;
    color: #d4af37;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    position: relative;
    word-wrap: break-word;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.4);
}

.about-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    white-space: pre-line;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 100%;
    margin: 0 auto 40px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0 10px;
}

.about-footer {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.contacts-section {
    background: linear-gradient(180deg,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(20, 15, 10, 0.98) 100%
    );
    padding: 30px 20px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.disclaimer-text {
    max-width: 100%;
    margin: 0 auto 30px;
    text-align: center;
}

.disclaimer-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9em;
    color: rgba(212, 175, 55, 0.9);
    line-height: 1.8;
    letter-spacing: 0.4px;
    font-weight: 400;
}

.contacts-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    max-width: 400px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b8 50%, #d4af37 100%);
    background-size: 200% 100%;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    padding: 16px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow:
        0 4px 20px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(212, 175, 55, 0.2);
    margin: 0 auto;
}

.contact-card:hover {
    background-position: 100% 0;
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow:
        0 8px 40px rgba(212, 175, 55, 0.5),
        0 0 80px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px) scale(1.02);
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: #1a0a0f;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon svg {
    transform: rotate(5deg) scale(1.15);
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #1a0a0f;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.contact-card:hover h3 {
    color: #1a0a0f;
}

.contact-card p {
    display: none;
}

.contact-link {
    display: none;
}

.footer-links {
    text-align: center;
    margin-top: 25px;
    padding: 0 10px;
}

.footer-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85em;
    color: rgba(212, 175, 55, 0.75);
    text-decoration: none;
    letter-spacing: 0.6px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: rgba(212, 175, 55, 1);
    text-decoration: underline;
}

.separator {
    color: rgba(212, 175, 55, 0.4);
    margin: 0 12px;
    font-size: 0.85em;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.copyright p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85em;
    color: rgba(212, 175, 55, 0.6);
    letter-spacing: 2px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 15px;
    }
    .about-content {
        padding: 40px 25px;
    }
    .about-title {
        font-size: 2rem;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }
    .about-text {
        font-size: 1rem;
        line-height: 1.8;
        padding: 0 5px;
    }
    .footer-links {
        margin-top: 15px;
    }
    .footer-link {
        font-size: 0.7em;
    }
    .separator {
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 50px 10px;
    }
    .about-content {
        padding: 30px 20px;
    }
    .about-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }
    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 0;
    }
    .footer-links {
        margin-top: 12px;
    }
    .footer-link {
        font-size: 0.65em;
        display: block;
        margin: 5px 0;
    }
    .separator {
        display: none;
    }
    .copyright {
        margin-top: 10px;
        padding-top: 10px;
    }
    .copyright p {
        font-size: 0.7em;
    }
}

@media (max-width: 768px) {
    .contacts-section {
        padding: 30px 15px;
    }
    .disclaimer-text {
        margin-bottom: 25px;
    }
    .disclaimer-text p {
        font-size: 0.8em;
        line-height: 1.7;
    }
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }
    .contact-card {
        padding: 25px 20px;
    }
    .contact-card h3 {
        font-size: 1.5em;
    }
    .contact-card p {
        font-size: 0.95em;
    }
    .contact-link {
        font-size: 1em;
        padding: 10px 25px;
    }
}

@media (max-width: 480px) {
    .contacts-section {
        padding: 25px 10px;
    }
    .disclaimer-text {
        margin-bottom: 20px;
    }
    .disclaimer-text p {
        font-size: 0.75em;
        line-height: 1.6;
    }
    .copyright {
        margin-top: 20px;
        padding-top: 15px;
    }
    .copyright p {
        font-size: 0.8em;
    }
    .contact-card {
        padding: 8px 14px;
        border-radius: 15px;
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
    .contact-icon {
        width: 16px;
        height: 16px;
        margin: 0;
    }
    .contact-icon svg {
        width: 15px;
        height: 15px;
    }
    .contact-card h3 {
        font-size: 0.85em;
        letter-spacing: 0.5px;
        margin: 0;
        line-height: 1;
        display: flex;
        align-items: center;
    }
    .contact-card p {
        font-size: 0.75em;
        margin-bottom: 8px;
    }
    .contact-link {
        font-size: 0.78em;
        padding: 6px 13px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInOut 2s ease-in-out infinite;
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}

.scroll-arrows svg {
    width: 24px;
    height: 24px;
    color: #d4af37;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

.scroll-arrows svg:first-child {
    animation: arrowBounce1 2s ease-in-out infinite;
}

.scroll-arrows svg:last-child {
    animation: arrowBounce2 2s ease-in-out infinite;
    margin-top: -12px;
}

@keyframes arrowBounce1 {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

@keyframes arrowBounce2 {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 50px;
    }
    .scroll-text {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    .scroll-arrows svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 40px;
    }
    .scroll-text {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    .scroll-arrows svg {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 481px) and (max-width: 1024px) {
    .age-modal-content {
        padding: 60px 50px;
        max-width: 600px;
    }
    .age-modal-content h2 {
        font-size: 2.2em;
    }
    .main-title {
        letter-spacing: 4px;
        margin-bottom: 15px;
    }
    .subtitle {
        letter-spacing: 8px;
        margin-bottom: 20px;
    }
    .about-container {
        padding: 60px 40px;
    }
    .about-title {
        font-size: 2.8em;
    }
    .about-text {
        font-size: 1.15rem;
    }
    .contact-card {
        padding: 10px 18px;
    }
    .contact-icon {
        width: 18px;
        height: 18px;
    }
    .contact-card h3 {
        font-size: 0.9em;
    }
}


@media (min-width: 1920px) {
    .age-modal-content {
        max-width: 650px;
        padding: 70px 60px;
    }
    .age-modal-content h2 {
        font-size: 2.5em;
    }
    .age-modal-content p {
        font-size: 1.2em;
    }
    .main-title {
        letter-spacing: 6px;
    }
    .subtitle {
        letter-spacing: 10px;
    }
    .crown-icon {
        width: 140px;
        height: 140px;
    }
    .about-container {
        max-width: 1400px;
        padding: 80px 60px;
    }
    .about-title {
        font-size: 3.5em;
    }
    .about-text {
        font-size: 1.25rem;
        line-height: 2;
    }
    .contact-card {
        padding: 12px 20px;
    }
    .contact-icon {
        width: 20px;
        height: 20px;
    }
    .disclaimer-text {
        font-size: 1.05em;
    }
    .footer-link {
        font-size: 1.05em;
    }
}


@media (min-width: 2560px) {
    .age-modal-content {
        max-width: 800px;
        padding: 90px 80px;
    }
    .main-title {
        letter-spacing: 6px;
    }
    .about-container {
        max-width: 1800px;
        padding: 100px 80px;
    }
    .about-title {
        font-size: 4em;
    }
    .about-text {
        font-size: 1.4rem;
    }
}


@media (max-height: 500px) and (orientation: landscape) {
    .age-modal-content {
        padding: 20px 30px;
        max-height: 90vh;
        overflow-y: auto;
    }
    .age-modal-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    .age-modal-content h2 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    .age-modal-content p {
        font-size: 0.9em;
        margin-bottom: 10px;
    }
    .age-modal-buttons {
        margin-top: 15px;
        gap: 10px;
    }
    .age-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .main-title {
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }
    .subtitle {
        letter-spacing: 2px;
    }
    .crown-icon {
        width: 60px;
        height: 60px;
    }
}

.banners-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    z-index: 1;
}

.banner-block {
    max-width: 1000px;
    margin: 0 auto 100px;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    filter: blur(8px);
    transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.banner-block.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.banner-content {
    background: linear-gradient(135deg, rgba(30, 15, 25, 0.95) 0%, rgba(50, 20, 35, 0.9) 100%);
    border-radius: 30px;
    padding: 35px 35px 30px 35px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.banner-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.banner-block:hover .banner-content::before {
    opacity: 1;
}

.banner-text-top,
.banner-text-bottom {
    opacity: 0;
    transform: translateY(-25px);
    filter: blur(4px);
    transition: all 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: 0.3s;
    max-width: 500px;
    width: 100%;
}

.banner-block.visible .banner-text-top,
.banner-block.visible .banner-text-bottom {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.banner-text-bottom {
    transition-delay: 0.5s;
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-align: center;
    text-shadow:
        0 2px 20px rgba(212, 175, 55, 0.6),
        0 0 40px rgba(212, 175, 55, 0.4);
    line-height: 1.1;
    text-transform: uppercase;
}

.banner-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    margin-bottom: 5px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.banner-description p {
    margin-bottom: 5px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
}

.banner-description p:last-child {
    margin-bottom: 0;
}

.banner-image-container {
    margin: 15px auto 10px auto;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(212, 175, 55, 0.3);
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    filter: blur(4px);
    transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: 0.5s;
    position: relative;
    width: 100%;
    max-width: 500px;
    flex-shrink: 0;
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.banner-block.visible .banner-image-container {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.banner-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%, rgba(212, 175, 55, 0.05) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.banner-block:hover .banner-image-container::after {
    opacity: 1;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.banner-block:hover .banner-image {
    transform: scale(1.03);
}

.banner-block[data-banner="mission"] .banner-text-top {
    margin-bottom: 20px;
}

.banner-block[data-banner="mission"] .banner-description {
    margin-bottom: 0;
}

.apply-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b8 50%, #d4af37 100%);
    background-size: 200% 100%;
    color: #1a0a0f;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow:
        0 4px 20px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(212, 175, 55, 0.2);
    overflow: hidden;
    width: auto;
    height: auto;
}

.apply-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
    transition: transform 0.4s ease;
}

.apply-btn:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow:
        0 6px 30px rgba(212, 175, 55, 0.5),
        0 0 60px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.8);
}

.apply-btn:hover svg {
    transform: rotate(5deg) scale(1.1);
}

.apply-btn:active {
    transform: translateY(0);
}

.apply-text {
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.apply-btn-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b8 50%, #d4af37 100%);
    background-size: 200% 100%;
    color: #1a0a0f;
    padding: 16px 40px;
    border-radius: 50px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow:
        0 4px 20px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(212, 175, 55, 0.2);
    margin: 30px auto;
    width: fit-content;
}

.apply-btn-footer svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    transition: transform 0.4s ease;
}

.apply-btn-footer:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 40px rgba(212, 175, 55, 0.5),
        0 0 80px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.8);
}

.apply-btn-footer:hover svg {
    transform: rotate(5deg) scale(1.15);
}

.apply-btn-footer:active {
    transform: translateY(-1px) scale(1);
}

.application-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.application-modal.active {
    opacity: 1;
    visibility: visible;
}

.application-modal-content {
    background: linear-gradient(135deg, rgba(30, 15, 25, 0.95) 0%, rgba(50, 20, 35, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow:
        0 20px 80px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(212, 175, 55, 0.3);
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    -webkit-overflow-scrolling: touch;
}

/* Скроллбар для модального окна */
.application-modal-content::-webkit-scrollbar {
    width: 8px;
}

.application-modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.application-modal-content::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 10px;
}

.application-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.6);
}

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

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.4);
    color: rgba(212, 175, 55, 0.9);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 20px;
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    color: rgba(212, 175, 55, 0.95);
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.modal-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 1.5px;
    line-height: 1.6;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #d4af37;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

/* Убираем стрелки у input type="number" */
.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-group input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(212, 175, 55, 0.7);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b8 50%, #d4af37 100%);
    background-size: 200% 100%;
    color: #1a0a0f;
    padding: 18px 40px;
    border-radius: 50px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow:
        0 4px 20px rgba(212, 175, 55, 0.4),
        0 0 40px rgba(212, 175, 55, 0.3);
    margin-top: 10px;
    letter-spacing: 0.5px;
	white-space: nowrap !important;
	overflow: hidden !important;
}

.submit-btn:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow:
        0 6px 30px rgba(212, 175, 55, 0.6),
        0 0 60px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.8);
}

.submit-btn:active {
    transform: translateY(0);
	white-space: nowrap !important;
	overflow: hidden !important;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spinner {
    width: 20px;
    height: 20px;
}

.application-modal-content::-webkit-scrollbar {
    width: 8px;
}

.application-modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.application-modal-content::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 10px;
}

.application-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.6);
}

@media (max-width: 1024px) {
    .banner-block {
        padding: 0 30px;
        margin-bottom: 80px;
    }
    .banner-content {
        padding: 25px 30px;
        gap: 18px;
    }
    .banner-title {
        font-size: 2em;
        margin-bottom: 12px;
    }
    .banner-description {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    .banner-image-container {
        max-width: 450px;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .banners-section {
        padding: 60px 0;
    }
    .banner-block {
        padding: 0 20px;
        margin-bottom: 60px;
    }
    .banner-content {
        padding: 15px 15px 12px 15px;
        border-radius: 20px;
        gap: 8px;
    }
    .banner-title {
        font-size: 1.5em;
        margin-bottom: 5px;
        letter-spacing: 2px;
    }
    .banner-description {
        font-size: 0.88rem;
        line-height: 1.35;
        margin-bottom: 3px;
    }
    .banner-description p {
        margin-bottom: 3px;
    }
    .banner-image-container {
        max-width: 90%;
        margin: 5px auto 5px auto;
        padding: 0;
    }
    .apply-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .apply-btn svg {
        width: 18px;
        height: 18px;
    }
    .apply-text {
        display: none;
    }
    .apply-btn-footer {
        padding: 14px 32px;
        font-size: 1rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .application-modal-content {
        padding: 40px 25px;
        max-height: 92vh;
    }
    .modal-header {
        margin-bottom: 35px;
    }
    .modal-header h2 {
        font-size: 1.8em;
        letter-spacing: 5px;
    }
    .modal-subtitle {
        font-size: 0.9em;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 13px 17px;
        font-size: 0.98rem;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.5em;
    }
    .banner-description {
        font-size: 0.88rem;
    }
    .banner-content {
        padding: 12px 12px 10px 12px;
        gap: 6px;
    }
    .banner-image-container {
        max-width: 92%;
        margin: 4px auto 4px auto;
        padding: 0;
    }
    .application-modal-content {
        padding: 30px 20px;
        max-height: 95vh;
    }
    .modal-header {
        margin-bottom: 30px;
        padding-top: 10px;
    }
    .modal-header h2 {
        font-size: 1.5em;
        letter-spacing: 4px;
    }
    .modal-subtitle {
        font-size: 0.85em;
    }
    .modal-close {
        width: 32px;
        height: 32px;
        top: 16px;
        right: 16px;
        font-size: 20px;
    }
    .application-form {
        gap: 18px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .form-group {
        gap: 6px;
    }
    .form-group label {
        font-size: 0.88rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    .form-group textarea {
        min-height: 90px;
    }
    .submit-btn {
        padding: 16px 32px;
        font-size: 1rem;
        margin-top: 5px;
    }
}

@media (max-width: 1024px) and (orientation: landscape) {
    .banner-image-container {
        max-width: 400px;
        padding: 0;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .banner-content {
        padding: 15px 20px;
        gap: 10px;
    }
    .banner-title {
        font-size: 1.4em;
        margin-bottom: 8px;
    }
    .banner-description {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    .banner-description p {
        margin-bottom: 4px;
    }
    .banner-image-container {
        max-width: 350px;
        margin: 10px auto 0 auto;
        padding: 0;
    }
}

/* Большие мониторы */
@media (min-width: 1440px) {
    .banner-image-container {
        max-width: 550px;
        padding: 0;
    }
}

/* Очень большие мониторы */
@media (min-width: 1920px) {
    .banner-image-container {
        max-width: 600px;
        padding: 0;
    }
}

/* ===== Кастомное уведомление ===== */
.custom-notification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.custom-notification.active {
    opacity: 1;
    visibility: visible;
}

.notification-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.notification-card {
    position: relative;
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.97), rgba(28, 28, 28, 0.97));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    padding: 50px 40px 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow:
        0 0 60px rgba(212, 175, 55, 0.08),
        0 25px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
    transform: scale(0.8) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.custom-notification.active .notification-card {
    transform: scale(1) translateY(0);
}

.notification-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.4s ease 0.3s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

.custom-notification.active .notification-icon {
    opacity: 1;
    transform: scale(1);
}

.notification-icon svg {
    width: 100%;
    height: 100%;
}

.checkmark-path {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    transition: stroke-dashoffset 0.6s ease 0.5s;
}

.custom-notification.active .checkmark-path {
    stroke-dashoffset: 0;
}

.notification-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em;
    font-weight: 700;
    color: #d4af37;
    margin: 0 0 12px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
}

.custom-notification.active .notification-title {
    opacity: 1;
    transform: translateY(0);
}

.notification-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 0 20px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
}

.custom-notification.active .notification-text {
    opacity: 1;
    transform: translateY(0);
}

.notification-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 0 auto 20px;
    opacity: 0;
    transition: opacity 0.4s ease 0.6s;
}

.custom-notification.active .notification-line {
    opacity: 1;
}

.notification-subtext {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05em;
    font-style: italic;
    color: rgba(212, 175, 55, 0.7);
    margin: 0 0 30px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.65s, transform 0.4s ease 0.65s;
}

.custom-notification.active .notification-subtext {
    opacity: 1;
    transform: translateY(0);
}

.notification-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #121212;
    background: linear-gradient(135deg, #d4af37, #f2d06b, #d4af37);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    padding: 14px 45px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.75s, transform 0.4s ease 0.75s, box-shadow 0.3s ease, background-position 0.5s ease;
}

.custom-notification.active .notification-btn {
    opacity: 1;
    transform: translateY(0);
}

.notification-btn:hover {
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.35);
    background-position: 100% 0;
}

.notification-btn:active {
    transform: scale(0.96) !important;
}

@media (max-width: 480px) {
    .notification-card {
        padding: 40px 25px 30px;
        border-radius: 20px;
    }
    .notification-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }
    .notification-title {
        font-size: 1.35em;
    }
    .notification-text {
        font-size: 0.88em;
    }
    .notification-btn {
        padding: 12px 35px;
        font-size: 0.85em;
    }
}

.custom-file-upload {
font-size: 0.8em !important;
padding: 10px 14px !important;
max-width: 200px !important;
white-space: nowrap !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
line-height: 1 !important;
}
.file-status {
font-size: 0.8em !important;
}
@media (max-width: 768px) {
.custom-file-upload {
font-size: 0.75em !important;
padding: 8px 12px !important;
max-width: 100% !important;
}
.file-status {
font-size: 0.75em !important;
}

.submit-btn {
display: flex !important;
align-items: center !important;
justify-content: center !important;
gap: 5px !important;
height: 45px !important;  
padding: 0 20px !important;
line-height: 1 !important;
overflow: hidden !important;
}
.btn-text {
display: inline !important;
margin: 0 !important;
}
.btn-loading {
display: none !important;
}
.btn-loading.active {
display: inline-flex !important;
align-items: center !important;
gap: 5px !important;
margin: 0 !important;
}
.spinner {
width: 16px !important;
height: 16px !important;
margin: 0 !important;
}
@media (max-width: 768px) {
.submit-btn {
height: 40px !important;
padding: 0 15px !important;
}
.spinner {
width: 14px !important;
height: 14px !important;
}
}