@import "assets/font/font.css";
@import "assets/css/normalize.css";
@import "assets/css/swiper-bundle.min.css";
@import "assets/css/flex.css";
@import "assets/css/home.css";
@import "assets/css/footer.css";
@import "assets/css/bouns.css";


.promo-conditions h1{
    font-size: 28px;
    color: white;
}

.promo-conditions p, .promo-conditions ul, .promo-conditions ol{
    margin-bottom: 15px;
}

.promo-conditions h2{
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
}


.promo-conditions h2{
    font-size: 18px;
    color: white;
    margin-bottom: 10px;
}

img.alignright {float:right; margin:0 0 1em 1em}
img.alignleft {float:left; margin:0 1em 1em 0}
img.aligncenter {display: block; margin-left: auto; margin-right: auto}
a img.alignright {float:right; margin:0 0 1em 1em}
a img.alignleft {float:left; margin:0 1em 1em 0}
a img.aligncenter {display: block; margin-left: auto; margin-right: auto}


#selectedLanguage{
    color: white;margin-left: 10px;
}
.language-dropdown img {
    width: 20px;
}
.language-dropdown {
    position: relative;
    display: inline-block;
}

.lang-button {
    background: #393939;
    border-radius: 7px;
    padding: 10px;
    cursor: pointer;
    display: flex
;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000000;
    border: 1px solid #595959;
    border-radius: 8px;
    z-index: 1;
    color: #ffffff;
    margin-top: 5px;
    width: 150px;
}

.lang-option {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 10px;
}

.lang-option img {
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

.lang-option:hover {
    background-color: #f0f0f0;
}

@media (max-width: 600px) {
    .dropdown-content {
        bottom: 100%;
        margin-bottom: 5px;
    }
}



.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff2400;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s;
}

.scroll-to-top:hover {
    background-color: #ff2400;
}

.arrow-up {
    font-size: 24px;
}

@media (max-width: 500px) {
    .scroll-to-top {
        bottom: 90px;
        right: 10px;
    }

    .legal-license-age {
       
        bottom: 47px;
    }

}

/* Общий контейнер текста */
.content-section {
  background-color: #031B1E; /* сохранить фирменный тёмный стиль */
  color: #ffffff;
  padding: 40px 20px;
  margin-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.03);
}

/* Заголовки секций */
.content-section h2,
.content-section h3 {
  color: #00ffc6; /* бирюзово-салатовый акцент */
  font-weight: 600;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 6px;
}

/* Абзацы */
.content-section p {
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 16px;
}

/* Списки */
.content-section ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.content-section ul li {
  list-style-type: disc;
  margin-bottom: 8px;
}

/* Отдельный акцентный блок (например, советы или предупреждения) */
.highlight-box {
  background-color: #072f30;
  border-left: 4px solid #00ffc6;
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 8px;
  color: #ffffff;
}

/* Основной стиль таблицы */
.table-custom {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 16px;
    color: #ffffff;
    background-color: #031B1E;
    border-radius: 10px;
    overflow: auto;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    display: block;
}

/* Заголовки */
.table-custom thead {
  background-color: #072f30;
  text-align: left;
}

.table-custom th {
  padding: 14px 20px;
  color: #00ffc6;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Тело таблицы */
.table-custom td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Чередование строк */
.table-custom tbody tr:nth-child(odd) {
  background-color: #052326;
}

/* Наведение */
.table-custom tbody tr:hover {
  background-color: #094547;
  transition: background-color 0.3s ease;
}

/* FAQ блок для Pinco Casino */
.faq-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 40px 20px;
    margin: 30px 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 64, 64, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #ff4040, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 64, 64, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    background: rgba(255, 64, 64, 0.1);
    border-color: #ff4040;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 64, 64, 0.2);
}

.faq-question {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question::before {
    content: "❓";
    font-size: 24px;
    color: #ff4040;
}

.faq-answer {
    color: #e0e0e0;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 34px;
    border-left: 3px solid #ff4040;
    margin-left: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: 8px;
}

.faq-additional {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.faq-additional h3 {
    color: #22c55e;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-additional ul {
    list-style: none;
    padding: 0;
}

.faq-additional li {
    color: #e0e0e0;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.faq-additional li::before {
    content: "✓";
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.faq-additional strong {
    color: #ffffff;
}

.faq-support-note {
    background: linear-gradient(45deg, #ff4040, #ff6b6b);
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .faq-section {
        padding: 25px 15px;
        margin: 20px 0;
    }
    
    .faq-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .faq-item {
        padding: 20px 15px;
    }
    
    .faq-question {
        font-size: 18px;
    }
    
    .faq-answer {
        font-size: 15px;
        padding-left: 15px;
        margin-left: 5px;
    }
}

/* Анимация при загрузке */
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

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

/* ----------------------------------------------------- */

/* Основные стили для изображений в статье */
.article-image {
    width: 100%;
    max-width: 600px;
    max-height: 320px;
    height: auto;
    object-fit: contain;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #2a4a3a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: #00ff88;
}

/* Контейнер для изображения с подписью */
.image-container {
    margin: 15px 0;
    text-align: center;
}

.image-caption {
    margin-top: 6px;
    font-size: 12px;
    color: #a0a0a0;
    font-style: italic;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .article-image {
        margin: 8px 0;
        border-radius: 4px;
        max-width: 500px;
        max-height: 240px;
    }
    
    .image-container {
        margin: 12px 0;
    }
    
    .image-caption {
        font-size: 11px;
        margin-top: 4px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .article-image {
        margin: 12px 0;
        border-radius: 4px;
    }
    
    .image-container {
        margin: 15px 0;
    }
}

/* Стили для изображений разных размеров */
.article-image--small {
    max-width: 400px;
    max-height: 200px;
}

.article-image--medium {
    max-width: 500px;
    max-height: 255px;
}

.article-image--large {
    max-width: 600px;
    max-height: 320px;
}





/* Стили для изображений с рамкой в стиле казино */
.article-image--casino {
    border: 2px solid #00ff88;
    box-shadow: 
        0 0 10px rgba(0, 255, 136, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.article-image--casino:hover {
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.4);
}


/* Стили хлебных крошек для казино (в строчку) */
.breadcrumbs {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    border-bottom: 2px solid #e74c3c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 12px 20px;
    margin: 0 0 20px 0;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

.breadcrumbs-nav {
    display: inline-block;
    line-height: 1.4;
}

.breadcrumbs-link {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.2s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.breadcrumbs-link:hover {
    color: #fff;
    text-shadow: 0 0 5px #ffd700;
    text-decoration: underline;
}

.breadcrumbs-link:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
    border-radius: 3px;
}

.breadcrumbs-separator {
    color: #ffd700;
    margin: 0 8px;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.breadcrumbs-current {
    color: #e74c3c;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Адаптивность */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .breadcrumbs-separator {
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .breadcrumbs {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .breadcrumbs-separator {
        margin: 0 3px;
    }
}