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


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

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



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

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

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-text-color);
    margin-bottom: 40px;
    text-align: center;
}

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

h2 {
    font-size: 48px;
    font-weight: 400;
    color: var(--main-text-color);
    margin-bottom: 30px;
    margin-top: 30px;
}

h3 {
    font-size: 32px;
    font-weight: 400;
    color: var(--main-text-color);
    margin-bottom: 15px;
    margin-top: 15px;
}

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



.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: 160%;
    text-align: justify;
    margin: 10px 0;
    font-size: 18px;
    color: var(--main-text-color);
}

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

table {
    font-size: 24px;
    font-weight: bold;
}

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

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

.btn {
    padding: 12px 20px;
    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);
}

.btn-get-bonus {
    background: var(--btn-bg-get-bonus-colr);
    font-size: 26px;
}

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

.nav-header ul {
    display: flex;
    gap: 30px;
}

.nav-header ul li a {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
}

.side-panel {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 0;
    background: var(--bg-color);
    overflow: hidden;
    transition: width 0.4s;
    z-index: 100;
}

.side-panel ul {
    padding: 80px 0;
}

.side-panel li {
    font-size: 18px;
    white-space: nowrap;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.side-panel li:first-child {
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.side-panel-open {
    display: none;
    border: none;
    background: transparent;
    color: var(--main-text-color);
    font-size: 38px;
    font-weight: bold;
    cursor: pointer;
}

.side-panel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    background: transparent;
    color: var(--main-text-color);
    font-size: 38px;
    width: 40px;
    height: 40px;
    font-weight: bold;
    cursor: pointer;
}

.nav-list {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
}

.nav-list li {
    width: 50%;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 17px;
    text-transform: uppercase;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    background: url("../assets/vegashero-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;
}

.features {
    display: flex;
}

.features ol {
    margin-left: 20px;
    padding-left: 0;
    columns: 2;
    column-gap: 20vw;
}

.features ol li {
    list-style-type: decimal;
    color: var(--main-text-color);
    font-size: 18px;
    padding: 10px;
}

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

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

.footer-content {
    display: flex;
    margin-bottom: 50px;
    justify-content: space-between;
    gap: 20px;
}

.footer-content ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.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: left;
}

.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-left: 1px solid var(--table-color);
}

.info-table thead th {
    background-color: var(--table-color);
    color: var(--main-text-color);
    text-align: center;
    padding: 20px;
    font-size: 32px;
    font-weight: 400;
    border: none;
}

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

}

.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);
}

.gallery {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-title {
    color: var(--main-text-color);
    font-size: 70px;
    text-align: center;
    margin: 0 0 40px 0;
}

.gallery-item {
    transition: transform 0.3s ease;
}
.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.gallery-item p {
    font-size: 18px;
    margin: 10px;
    font-weight: bold;
    color: var(--second-text-color);
}

.faq-block {
    border: 1px solid var(--faq-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.faq-block-title {
    line-height: 150%;
    color: var(--main-text-color);
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.faq-block-text {
    margin: 0;
}

.faq-block-fill {
    background-color: var(--faq-color-bg);
}

@media screen and (max-width: 1150px) {
    .hero-banner {
        height: 400px;
    }
    .nav-header {
        display: none;
    }
    .nav-footer ul {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .side-panel-open {
        display: block;
    }
    .btn-container {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        padding: 0 40px;
    }
}

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

@media screen and (max-width: 800px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 46px
    }
    .sub-title {
        font-size: 22px
    }
    h2 {
        font-size: 32px
    }
    p {
        font-size: 14px;
    }
    .list li {
        font-size: 14px;
    }
    .hero-banner {
        height: 350px;
    }
    header {
        margin-bottom: 60px;
    }
    .header-content {
        padding: 24px 0 35px;
    }
    .btn-container {
        display: flex;
        position: absolute;
        width: calc(100% - 40px);
        top: 90px;
        padding: 0;
    }
    .btn-signup, .btn-login {
        width: 100%;
    }
    .hero-banner-content {
        padding: 40px;
        width: 100%;
    }
    .info-table thead th {
        font-size: 18px;
        padding: 15px;
    }
    .info-table td {
        font-size: 14px;
        padding: 8px;
    }
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(calc(50% - 10px), 1fr));
    }
    .gallery-title {
        font-size: 32px;
    }
    .features ol {
        columns: 1;
        column-gap: 0;
    }
    .features ol li {
        font-size: 16px;
    }
    .faq-block-title {
        font-size: 14px;
    }
}

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



img {
    width: 100%;
    height: auto;
    display: block; /* щоб прибрати зайвий відступ під зображенням */
}
