* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: var(--default-link-color);
}

p, h1, h2, h3 {
    margin: 30px;
    padding: 0;
}

ul, li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

body, html {
    padding: 0;
    margin: 0;
}

.footer-content ul {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

body {
    background: var(--bg-color);
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

h1 {
    font-size: 80px;
    font-weight: bold;
    line-height: 100%;
    color: var(--main-title-color);
    margin-bottom: 40px;
    text-align: center;
}

.sub-title {
    font-size: 38px;
    font-weight: 400;
    color: var(--main-title-color);
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    z-index: 10;
}

h2 {
    font-size: 70px;
    font-weight: bold;
    color: var(--second-text-color);
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    margin-bottom: 30px;
    font-size: 50px;
    color: var(--main-text-color);
    font-weight: bold;
    text-align: center;
}

.second-color {
    color: var(--second-text-color);
}

.section-block {
    margin: 50px 0;
}

.list {
    margin: 5px 0;
}

.list li {
    color: var(--main-text-color);
    padding: 4px 0;
    font-size: 22px;
    list-style-type: disc;
    margin-left: 30px;
}


p, table {
    line-height: 150%;
    text-align: justify;
    margin: 20px 0;
    font-size: 18px;
    color: var(--main-text-color);
}

p {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
}

table {
    font-size: 20px;
}

.header {
    background: var(--bg-footer);
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.btn {
    padding: 15px 40px;
    border: none;
    color: var(--btn-text-color);
    text-decoration: none;
    font-size: 18px;
    border-radius: 10px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: filter 0.2s;
}

.btn:hover {
    filter: brightness(85%);
}

.btn-signup {
    background: var(--btn-bg-signup-colr);
    margin-right: 5px;
}

.btn-login {
    background: var(--btn-bg-login-color);
    color: var(--btn-bg-signup-colr);
}

.btn-signup-transparent {
    background: transparent;
    border: 1px solid var(--btn-bg-signup-colr);
    color: var(--btn-bg-signup-colr);
}

.btn-container {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.center-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 160px;
}
.logo img {
    width: 100%;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    background: url("../assets/tenbet-casino-banner.webp") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
}

/* Темне накладання (затемнення) */
.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Ступінь прозорості */
}

.hero-section h1, h2, button {
    position: relative;
    z-index: 20;
}

footer {
    background: var(--bg-footer);
    margin-top: auto;
    width: 100%;
}

.footer-margin {
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 50px 0;
    flex-direction: column;
}

.footer-content ul li a {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 20px;
}

.banners-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    gap: 20px;
}

.footer-small {
    font-size: 14px;
    font-weight: 300;
    color: #b8b8b8;
    margin-bottom: 5px;
    margin-top: 0;
    text-align: center;
}

.table-container {
    width: 100%;
    margin: 0 auto;
    overflow-x: auto;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background-color: transparent;
    border-right: 1px solid var(--table-color-border);
    border-left: 1px solid var(--table-color-border);
}

.info-table thead th {
    color: var(--main-text-color);
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--table-color-border);
    border-right: 1px solid var(--table-color-border);
    font-weight: 400;
}

.info-table tbody tr:nth-child(even) {
    background-color: var(--table-color); /* Чередування кольорів */
}

.info-table td {
    padding: 20px;
    text-align: left;
    border-top: 1px solid var(--table-color-border);
    border-right: 1px solid var(--table-color-border);
}

.info-table tr td:last-child {
    border-right: none;
}

.two-col-table tr td:last-child {
    width: 75%;
}

.info-table tr:last-child td {
    border-bottom: 1px solid var(--table-color-border);
}

.review {
    background-color: var(--review-color);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.review-title {
    font-size: 30px;
    font-weight: bold;
}

.review-text-color {
    color: var(--review-text-color);
}

.review-image {
    width: 146px;
    height: 146px;
    border-radius: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-image img {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1150px) {
    .hero-banner {
        height: 400px;
    }
}

@media screen and (max-width: 1000px) {
    .banners-block {
        display: none;
    }
    .banners-block-mobile{
        display: flex;
    }
}

@media screen and (max-width: 800px) {
    .footer-content {
        padding: 30px 0;
    }
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 46px
    }
    .sub-title {
        font-size: 22px
    }
    h2 {
        font-size: 32px
    }
    h3 {
        font-size: 28px
    }
    p {
        font-size: 14px;
    }
    .list li {
        font-size: 14px;
    }
    .hero-banner {
        height: 350px;
    }
    .header-content {
        padding: 24px 0;
    }
    .btn-container {
        flex-direction: column;
    }
    .btn-signup, .btn-login {
        width: 100%;
    }
    .hero-banner-content {
        padding: 40px;
        width: 100%;
    }
    .info-table thead th {
        font-size: 16px;
        padding: 15px;
    }
    .info-table td {
        font-size: 16px;
        padding: 15px;
    }
    .review {
        flex-direction: column;
    }
    .footer-content ul {
    display: block;
    column-count: 2;      /* дві колонки */
    column-gap: 10px;     /* відстань між ними */
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    margin-left: -30px;
    }

}

@media screen and (max-width: 500px) {
    .nav-list li {
        width: 100%;
    }
}

