/* Стили для страницы деталей кейса */

/* Case Detail styles */

.spinner-container {
    position: relative;
    width: 100%; /* Ширина контейнера спиннера */
    height: 120px; /* Высота контейнера спиннера */
    overflow: hidden;
    margin: 20px auto;
    border-radius: 10px;
}

/* Треугольники-указатели */
.spinner-container::before,
.spinner-container::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    z-index: 11;
}

.spinner-container::before {
    top: -15px; /* Позиционируем над контейнером */
    border-bottom: 15px solid #007bff; /* Синий треугольник, указывающий вниз */
    border-radius: 0 0 5px 5px; /* Закругление нижних углов */
}

.spinner-container::after {
    bottom: -15px; /* Позиционируем под контейнером */
    border-top: 15px solid #007bff; /* Синий треугольник, указывающий вверх */
    border-radius: 5px 5px 0 0; /* Закругление верхних углов */
}

.drop-indicator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    z-index: 10;
}

.drop-indicator-top {
    top: -10px; /* Располагаем над спиннером */
    border-bottom: 10px solid #fff; /* Белый треугольник, указывающий вниз */
}

.drop-indicator-bottom {
    bottom: -10px; /* Располагаем под спиннером */
    border-top: 10px solid #fff; /* Белый треугольник, указывающий вверх */
}

/* Стили для эффекта тумана */
.spinner-container .fog-left,
.spinner-container .fog-right {
    content: '';
    position: absolute;
    top: 0;
    width: 100px; /* Ширина зоны размытия */
    height: 100%;
    background: linear-gradient(to right, rgba(23, 23, 23, 1), rgba(26, 26, 26, 0)); /* Градиент для эффекта тумана */
    pointer-events: none; /* Чтобы не блокировать события мыши */
    z-index: 10;
}

.spinner-container .fog-left {
    left: 0;
}

.spinner-container .fog-right {
    right: 0;
    transform: scaleX(-1); /* Зеркальное отображение для правой стороны */
}

.spinner-track {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    position: absolute;
    left: 0;
}

.spinner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px; /* Ширина каждого элемента */
    height: 100px; /* Делаем высоту равной ширине для квадратных элементов */
    border: none; /* Убираем рамку */
    box-sizing: border-box;
    flex-shrink: 0;
    background-color: #282828; /* Возвращаем исходный фон */
    border-radius: 15px; /* Увеличиваем скругление углов */
    margin: 0 5px; /* Добавляем отступы между элементами */
}

.spinner-item img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Стили для выпавшего элемента */
.spinner-item.is-dropped {
    background-color: #444; /* Серый фон */
    border: none; /* Полностью убираем рамку */
    transform: scale(1.05);
    transition: background-color 0.3s ease, border 0.3s ease, transform 0.3s ease;
}

/* Стили для невыпавших элементов */
.spinner-item.is-not-dropped {
    opacity: 0.5; /* Делаем остальные элементы полупрозрачными */
    transition: opacity 0.3s ease-in-out; /* Плавный переход */
}

.case-detail-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
}

.case-detail-container img {
    max-width: 250px;
    height: auto;
    margin-bottom: 3px;
    border-radius: 4px;
}

.case-detail-container button {
    margin-top: 15px;
    width: 100%;
    padding: 10px 25px;
    font-size: 1em;
}

.case-detail-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.case-nfts-container {
    margin-top: 20px;
    text-align: center;
}

.case-nfts-container h3 {
    text-align: left;
    font-weight: 500;
    margin-left: 10px; /* Добавляем небольшой отступ слева */
}

.nfts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1px; /* Уменьшаем отступ до 1px */
    margin-top: 10px;
}

.nft-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 10px 10px 20px 10px;
}

.nft-item {
    background-color: #282828;
    border-radius: 15px;
    border: none;
    outline: none;
    padding: 0px;
    overflow: hidden;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nft-content-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.nft-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateY(-1px);
}

.nft-name {
    margin-top: 0px;
    text-align: left;
    font-weight: 400;
    color: white;
}

.nft-rarity {
    margin-top: 0px;
    color: #aaa;
    text-align: left;
}

.nft-price-overlay {
    margin-top: 0px;
    background-color: #232323;
    border-radius: 9999px;
    padding: 3px 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.8em;
    box-sizing: border-box;
    transform: translateY(30px);
}

.ton-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nft-price-ton-icon {
    transform: translateY(1px);
}

.case-detail-price-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.opened-drop-display h3 {
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.opened-drop-image {
    max-width: 100px;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}
.opened-drop-display p {
    color: var(--secondary-text-color);
}

button.save-button {
    background-color: #232323 !important;
    color: white !important;
}

/* button.save-button:hover {
    background-color: #232323 !important;
} */


.opened-nft-display {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #28a745;
    border-radius: 8px;
    background-color: #e9f7ef;
    color: #155724;
}

.opened-nft-display h3 {
    color: #28a745;
    margin-top: 0;
}

.nft-drop-chance {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 999px; /* Make it pill-shaped */
    color: white; /* White text */
    font-weight: normal;
    font-size: 0.9em;
    z-index: 2;
    backdrop-filter: blur(5px); /* Blur content under it */
}

.drop-chance-item p {
    margin: 0;
    color: #333;
    font-weight: bold;
}

.case-name-title {
    font-weight: 400;
    text-align: left;
    margin-left: 10px;
    color: white;
    font-size: 1.2em;
    margin-bottom: -10px;
}

.open-case-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0098EA; /* Пример цвета */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 20px;
}


.open-case-button .price-icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    vertical-align: middle;
}

.open-button-icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    vertical-align: middle;
}

.demo-button {
    background-color: #232323; /* Grey color for demo-spin button */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 20px;
}

/* .demo-button:hover {
    background-color: #232323;
} */