/* Основные цвета и шрифты */
:root {
    --bg-deep-blue: #0a0f1d;
    --card-bg: #111827;
    --dubai-gold: #c5a059;
    --dubai-orange: #f97316;
}


body {
    background-color: var(--bg-deep-blue);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* Золотая обводка для карточек */
.model-card-border {
    border: 1px solid var(--dubai-gold);
    transition: all 0.3s ease;
}

.model-card-border:hover {
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
    transform: translateY(-2px);
}

/* Шрифт для заголовков */
.serif-title {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.05em;
}

/* Стили для оранжевого фильтра */
.sidebar-filter {
    background-color: var(--dubai-orange);
    color: #000000;
}
/* Скрываем полосу прокрутки для контейнеров с классом no-scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.gold-border {
    border: 2px solid;
    border-image-source: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    border-image-slice: 1;
}
/* Класс для скрытия моделей */
.hidden-model {
    display: none !important;
}
.tex-center {
    text-align: center;
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text; /* Обрезает фон по контуру букв */
    -webkit-text-fill-color: transparent; /* Делает сам текст прозрачным, чтобы был виден фон-градиент */
    display: inline-block; /* Необходимо, чтобы градиент корректно лег на строку */
    width: 100%;
}
.elite-no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
}

.elite-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 29, 0.9);
    z-index: 999999; /* Ensure it's above everything */
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.elite-modal-overlay.elite-show {
    display: flex;
    opacity: 1;
}

.elite-modal-box {
    position: relative;
    width: 420px;
    height: 550px;
    background: #111827;
    border-radius: 24px;
    border: 1px solid #c5a059;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(197, 160, 89, 0.2);
    transform: scale(0.9) translateY(30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.elite-modal-overlay.elite-show .elite-modal-box {
    transform: scale(1) translateY(0);
}

.elite-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(197, 160, 89, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
}

.elite-bg-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
    padding: 10px;
    z-index: 1;
    filter: grayscale(0.5);
}

.elite-image-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: eliteFloatUp 25s linear infinite;
}

.elite-col-2 { animation-duration: 30s; animation-delay: -2s; }
.elite-col-3 { animation-duration: 22s; animation-delay: -5s; }
.elite-col-4 { animation-duration: 28s; animation-delay: -1s; }

@keyframes eliteFloatUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.elite-img-item {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    opacity: 0.3;
}

.elite-content-area {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, #111827 40%, #000);
    padding: 60px 30px 40px;
    text-align: center;
    z-index: 10;
}

.elite-main-title {
    font-family: 'Playfair Display', serif;
    color: #c5a059;
    font-size: 26px;
    margin-bottom: 10px;
}

.elite-divider {
    height: 1px;
    width: 50px;
    background: #c5a059;
    margin: 15px auto;
}

.elite-cta-button {
    display: block;
    margin-top: 20px;
    padding: 16px;
    background: #c5a059;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.3s;
}

.elite-cta-button:hover {
    background: #d4b475;
    transform: translateY(-2px);
}