/* Базовые сбросы и настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background: linear-gradient(135deg, #0c1a2d 0%, #152642 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* Дисклеймер */
.disclaimer {
    background: linear-gradient(90deg, #8d8a8a 0%, #cc0000 100%);
    color: white;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
}

/* Анимации */
@keyframes scrollBanner {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Шапка и баннер */
.win-banner {
    background: linear-gradient(90deg, #ffcc00 0%, #ff9900 100%);
    color: #0c1a2d;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.win-banner-scroll {
    display: inline-flex;
    animation: scrollBanner 40s linear infinite;
}

.win-banner-scroll span {
    padding-right: 40px;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 20px;
    position: relative;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Кнопка бонуса для мобильных (видна только на маленьких экранах) */
.bonus-button-mobile {
    display: none;
    position: absolute;
    right: 20px;
    background: linear-gradient(90deg, #00c853, #64dd17);
    color: white;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(100, 221, 23, 0.4);
    transition: all 0.3s ease;
}

/* Основное содержание */
.main-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Герой-секция */
.hero {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffcc00;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    color: #b0b8d0;
    line-height: 1.7;
}

/* Секция промокода и бонуса */
.promo-section {
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 60px;
    border: 2px solid #3a6bc7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.promo-code-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.promo-label {
    font-weight: 600;
    color: #ffcc00;
    font-size: 1.3rem;
}

.promo-code-box {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
    border: 1px dashed #ffcc00;
}

.promo-code {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.8rem;
    padding: 15px 25px;
    color: #fff;
    background: transparent;
}

.copy-btn {
    background-color: #ffcc00;
    color: #0c1a2d;
    font-weight: 700;
    padding: 15px 30px;
    transition: background-color 0.3s;
    font-size: 1.1rem;
}

.copy-btn:hover,
.copy-btn.copied {
    background-color: #ff9900;
}

.bonus-offer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.bonus-amount {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
}

.bonus-plus {
    color: #ffcc00;
    font-size: 2rem;
    font-weight: 800;
}

.bonus-fs {
    color: #64dd17;
    font-size: 1.8rem;
    font-weight: 700;
}

.bonus-button {
    background: linear-gradient(90deg, #00c853, #64dd17);
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
    padding: 20px 50px;
    border-radius: 50px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(100, 221, 23, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-button:hover,
.bonus-button-mobile:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(100, 221, 23, 0.7);
}

/* Секции со слотами */
.slots-section {
    margin-bottom: 80px;
}

.slots-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4fc3f7;
    margin: 50px 0 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2a5298;
    position: relative;
    text-align: center;
}

.slots-section h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #ffcc00;
}

/* Сетка слотов - выровнена по центру */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
    justify-items: center; /* Центрирование карточек */
}

/* Карточка слота - улучшенная рамка */
.slot-card {
    background: linear-gradient(145deg, #1a2b4a, #22345c);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    border: 2px solid #3a6bc7;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.slot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: #4fc3f7;
}

.slot-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #152642;
}

.slot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slot-card:hover .slot-img {
    transform: scale(1.05);
}

/* Название слота другим цветом */
.slot-title-colored {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4fc3f7; /* Голубой цвет */
    padding: 20px 20px 10px;
    flex-grow: 1;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slot-info {
    padding: 0 20px 20px;
}

.slot-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 1rem;
}

.slot-info-label {
    color: #b0b8d0;
    font-weight: 500;
}

.slot-info-value {
    color: #ffcc00;
    font-weight: 700;
}

/* Ссылка на карточке */
.slot-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* Кнопка прокрутки вверх внизу сайта */
.bottom-scroll-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.bottom-scroll-top {
    background: linear-gradient(90deg, #2a5298, #3a6bc7);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 50px;
    border: 2px solid #4fc3f7;
    box-shadow: 0 6px 20px rgba(58, 107, 199, 0.4);
    transition: all 0.3s ease;
}

.bottom-scroll-top:hover {
    background: linear-gradient(90deg, #3a6bc7, #4fc3f7);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(58, 107, 199, 0.6);
}

/* Информационные секции */
.info-section {
    background-color: rgba(30, 40, 60, 0.7);
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 40px;
    border-left: 5px solid #2a5298;
}

.info-section h2 {
    color: #4fc3f7;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.info-section p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d9f0;
}

/* Футер */
.footer {
    text-align: center;
    padding: 25px;
    color: #8a9bb8;
    font-size: 0.9rem;
    border-top: 1px solid #2e3f6b;
    margin-top: 40px;
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    .promo-section {
        padding: 25px;
    }
    .promo-code {
        font-size: 1.6rem;
        padding: 12px 20px;
    }
    .bonus-amount {
        font-size: 1.8rem;
    }
    .slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .disclaimer {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .win-banner {
        font-size: 0.95rem;
        padding: 10px 0;
    }
    
    .header-container {
        padding: 20px 15px;
        justify-content: center;
    }
    
    .logo {
        height: 65px;
    }
    
    .bonus-button-mobile {
        display: block;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .bonus-button {
        display: none;
    }
    
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .promo-section {
        flex-direction: column;
        align-items: stretch;
        padding: 25px 20px;
        gap: 20px;
        text-align: center;
    }
    
    .promo-code-wrapper {
        justify-content: center;
    }
    
    .bonus-offer {
        justify-content: center;
    }
    
    .bonus-amount {
        font-size: 1.7rem;
    }
    
    .bonus-fs {
        font-size: 1.5rem;
    }
    
    .slots-section h2 {
        font-size: 1.8rem;
        margin: 40px 0 25px;
    }
    
    .slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .info-section {
        padding: 25px 20px;
    }
    
    .info-section h2 {
        font-size: 1.7rem;
    }
    
    .bottom-scroll-top {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .slots-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .promo-code {
        font-size: 1.4rem;
        padding: 10px 15px;
    }
    
    .copy-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .slot-title-colored {
        font-size: 1.3rem;
        padding: 15px 15px 8px;
    }
}
/* Стили для раскрывающегося блока описания */
.expandable-description {
    margin: 40px 0;
    background: linear-gradient(135deg, rgba(26, 35, 58, 0.8), rgba(32, 44, 73, 0.9));
    border-radius: 15px;
    padding: 5px;
    border: 1px solid #2e3f6b;
    transition: all 0.3s ease;
}

.expandable-description:hover {
    border-color: #4fc3f7;
    box-shadow: 0 5px 20px rgba(79, 195, 247, 0.2);
}

.expand-toggle {
    background: linear-gradient(90deg, #2a5298, #3a6bc7);
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 30px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expand-toggle:hover {
    background: linear-gradient(90deg, #3a6bc7, #4fc3f7);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 107, 199, 0.4);
}

.expand-toggle:active {
    transform: translateY(0);
}

.expand-toggle[aria-expanded="true"] {
    background: linear-gradient(90deg, #1e3c72, #2a5298);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.expand-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(90deg);
    color: #ffcc00;
}

.toggle-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.toggle-icon {
    font-weight: 900;
    font-size: 1.8rem;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-left: 10px;
    color: #ffcc00;
}

.description-content {
    background-color: rgba(22, 32, 55, 0.95);
    border-radius: 0 0 12px 12px;
    padding: 35px;
    line-height: 1.8;
    color: #d1d9f0;
    border-top: 2px solid #2a5298;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.description-content h2,
.description-content h3,
.description-content h4 {
    color: #4fc3f7;
    margin: 25px 0 15px;
    font-weight: 700;
}

.description-content h2 {
    font-size: 1.9rem;
    border-bottom: 2px solid #3a6bc7;
    padding-bottom: 10px;
}

.description-content h3 {
    font-size: 1.5rem;
    color: #ffcc00;
}

.description-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

.description-content ul,
.description-content ol {
    margin: 15px 0 20px 30px;
    color: #b0b8d0;
}

.description-content li {
    margin-bottom: 8px;
}

.description-content strong {
    color: #ffcc00;
    font-weight: 700;
}

.description-content em {
    color: #64dd17;
    font-style: italic;
}

/* Анимация раскрытия */
.description-content[hidden] {
    display: none;
}

/* Эффект при наведении на параграфы */
.description-content p:hover {
    background-color: rgba(42, 82, 152, 0.1);
    border-radius: 5px;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .expand-toggle {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    
    .toggle-text {
        font-size: 1.2rem;
    }
    
    .toggle-icon {
        font-size: 1.5rem;
    }
    
    .description-content {
        padding: 25px 20px;
    }
    
    .description-content h2 {
        font-size: 1.6rem;
    }
    
    .description-content h3 {
        font-size: 1.3rem;
    }
    
    .description-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .expand-toggle {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .toggle-text {
        font-size: 1.1rem;
    }
    
    .description-content {
        padding: 20px 15px;
    }
}
/* Стили для блока с информацией и картинкой */
.slot-info-table {
    position: relative;
    margin: 40px 0 60px;
    background: linear-gradient(135deg, rgba(26, 35, 58, 0.9), rgba(32, 44, 73, 0.95));
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #3a6bc7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.slot-info-table h2 {
    color: #4fc3f7;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}

.slot-info-table h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: #ffcc00;
    border-radius: 2px;
}

.info-image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.info-table-wrapper {
    flex: 1;
    min-width: 300px;
}

.slot-info-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(22, 32, 55, 0.7);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2e3f6b;
}

.slot-info-table th {
    background: linear-gradient(90deg, #2a5298, #3a6bc7);
    color: white;
    font-weight: 700;
    padding: 18px 20px;
    text-align: left;
    font-size: 1.1rem;
    border-right: 1px solid #3a6bc7;
    width: 40%;
}

.slot-info-table td {
    padding: 18px 20px;
    color: #ffcc00;
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(30, 40, 60, 0.5);
    border-bottom: 1px solid #2e3f6b;
}

.slot-info-table tr:last-child td {
    border-bottom: none;
}

.slot-info-table tr:hover td {
    background: rgba(42, 82, 152, 0.3);
}

/* Обновленные стили для контейнера картинки */
.slot-image-container {
    flex: 0 0 373px; /* 339px + padding 15px*2 + border 2px*2 = 373px */
    max-width: 373px;
    min-width: 339px;
    background: rgba(22, 32, 55, 0.7);
    border-radius: 16px;
    padding: 15px;
    border: 2px solid #3a6bc7;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    height: fit-content;
}

.slot-image-container:hover {
    border-color: #4fc3f7;
    box-shadow: 0 12px 35px rgba(79, 195, 247, 0.2);
    transform: translateY(-5px);
}

.main-slot-image {
    width: 339px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #2e3f6b;
}

.image-caption {
    text-align: center;
    color: #b0b8d0;
    font-size: 1rem;
    font-style: italic;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #2e3f6b;
    width: 100%;
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
    .slot-image-container {
        flex: 0 0 350px;
        min-width: 300px;
    }
    
    .main-slot-image {
        width: 100%;
        max-width: 320px;
        height: 170px;
    }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .slot-image-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        min-width: unset;
    }
    
    .main-slot-image {
        width: 100%;
        max-width: 339px;
        height: 180px;
    }
    
    .info-image-container {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .slot-image-container {
        padding: 12px;
    }
    
    .main-slot-image {
        height: 160px;
    }
}
/* Стили для связанных слотов */
.related-slots-section {
    margin: 60px 0 40px;
}

.related-slots-section h2 {
    font-size: 2rem;
    color: #4fc3f7;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.related-slots-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #ffcc00;
    border-radius: 2px;
}
/* Блок других слотов на странице слота */
.other-slots-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.other-slots-section h2 {
    font-size: 2.5rem;
    color: #1a2b4c;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.all-slots-button-container {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
}

.all-slots-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.all-slots-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Адаптивность */
@media (max-width: 768px) {
    .other-slots-section {
        padding: 40px 15px;
    }
    
    .other-slots-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .all-slots-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}
/* Ссылки в футере */
.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #764ba2;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}