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

body {
    font-family: Arial, sans-serif; /*стили */
    line-height: 1.6; /*выс. шр */
    color: #fafafa;
    text-align: center;
    font-weight: bold;
    background-color: #333;
    overflow-x: hidden;
}

h1 {
    text-align: center;
    color: rgb(255, 255, 255);
    padding-block: 20px;

}
/* Контейнер */
.general {
    height: 70px;
    margin: -20px;
    font-weight: bold;
}

.bonus {
    color: white;
    width: 90%;
    max-width: 1400px;
    margin: auto; /*внешн. отступ */
    font-weight: bold;
    padding: 40px
}

.site {
    height: 20px;
    margin: 20px;
    font-weight: bold;
}

.photo img {
    width: 600px;
    margin-top: 25px;
    align-items: center;
}

.casino img {
    width: 1300px;
    margin-top: 25px;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto; /*внешн. отступ */
    font-weight: bold;
    padding: 15px;
}

/* Шапка */
.header {
    width: 100%;
    background-color: #3a2e2e;
    padding: 10px -100px; /*внутр. отступ */
}


.header .logo img {
    width: 100px;
    height: 100px;
}

.nav ul {
    list-style: none; 
    display: flex; 
    justify-content: flex-end;
}

.nav ul li {
    margin-left: 20px;
}

.nav ul li a {
    text-decoration: none; /*убр. подче. */
    color: #ffffff;
    font-weight: bold;
}

.menu-toggle {
    display: none;
    flex-direction: column; /*сетка */
    cursor: pointer;
    color: white;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: #ffffff;
    margin: 4px 0;
    transition: 0.4s;
}

/* Основные секции */
.section {
    padding: 20px 0;
}

.slot img {
    width: 699px;
}

.logo {
    color: #333;
}

.home {
    background-color: #252424;
    text-align: center;
    color: white;
}

/* Футер */
.footer {
    background-color: #694816;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}


.menu {
    display:flex; 
    justify-content: space-between;
    align-items: center;
}

.menu .close-button{
    display: none;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px;
}
.card {
    background-color: #c0a235;
    border-radius: 10px;
    width: 350px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    font-weight: bold;
    text-align: center;
    gap: 10px;
}

.cta {
    text-align: center;
}

.cta a {
    background-color: #ff77a9;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Адаптивность */
@media (max-width: 768px) {

    .close-button{
        font-size: 25px;
        font-weight: bold;
    } 
    body {
        padding:0 10px;
    }
    .nav ul {
        flex-direction: column;
        display: none;
        align-items: center;
    }
    .menu.open .menu-toggle span{
        display: none;
    }


    .nav ul.active {
        display: flex;
    }

    .menu.open .close-button{
        display: block;
    }

    .menu-toggle {
        display: flex;
    }
    .section-table th, .section-table td {
        padding: 10px;
    }
    .game-card-container {
        flex-wrap: wrap;
    }
    .game-card {
        width: 100px !important;
    }

    .casino img {
        width: 300px !important;
    }
    
    .slot img {
        width: 300px !important; 
    }
    
    .photo img {
        width: 300px !important;
    }
    
}

.section-table {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #3a2e2e;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: white;
    border: none;
}
.section-table th, .section-table td {
    padding: 15px;
    text-align: left;
}
.section-title {
    background-color: #704444;
    font-weight: bold;
}
.game-card-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.game-card {
    width: 150px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: all 0.3s;
}

.game-card img {
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.game-card h3 {
    font-size: 16px;
    margin: 10px 0;
}

.game-card a {
    text-decoration: none;
    display: block;
    padding: 10px;
    color: #333;
    font-size: 14px;
    
}

.game-card:hover {
    background-color: #6d6565;
    cursor: pointer;

}

.game-card:hover img {
    filter: blur(5px);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    opacity: 0.8;
    display: none;
    transition: all .3s ease-in;
    z-index: 100;
}

.play-icon a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #fff;
    opacity: 2;
    transition: all .3s ease-in;
    z-index: 100;
}

.game-card:hover .play-icon {
display: block;

}
.play-game-card {
    position: relative;
}
.license_img {
    width: 300px;
    margin-top: 20px;
}
.button-container {
    text-align: center;
    margin-top: 50px;
}
.download-btn {
    font-size: 16px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none; 
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.faq-container {
    max-width: 600px;
    margin: 50px auto;
}

.faq-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.faq-item {
    background-color: #e0e0e0; /* Серый фон */
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    color: #ffffff; /* Оранжевый цвет для текста */
    background-color: #1d517c; /* Темный серо-зеленый для фона */
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #94d1c9; /* Цвет при наведении */
}

.faq-answer {
    padding: 0 15px; /* Уменьшенный padding по умолчанию */
    font-size: 16px;
    background-color: rgb(41, 33, 33);
    max-height: 0; 
    transition: max-height 0.6s ease, padding 0.6s ease;
}

/* Когда ответ активен */
.active .faq-answer {
    padding: 15px; /* Появление внутреннего отступа */
}