body {
    background-color: #1c1408;
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;
    background-image: url(../images/background-pattern.svg);
    background-repeat: repeat;
    background-size: contain;
}

footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 40px 20px;
    background: #150f04;
    border-top: 1px solid #ca9b60;
}

h1 {
    font-size: 40px;
    margin-top: 1.2rem;
    text-align: left;
    margin-bottom: 1rem;
    line-height: 46px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
}
h2,h3,h4,p {
    color: #fff;
}

h2 {
    font-size: 28px;
    padding-top: 20px;
}

h3 {
    font-size: 22px;
    padding-top: 20px;
}

span {
    color: #fff;
}

li {
    color: #fff;
}

ul, ol {
    margin: 30px 0;
}

.table-overflow {
    overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 30px 0;
}

table, th, td {
  border: 1px solid rgba(255, 255, 255, 0.7);
}

th, td {
  padding: 8px;
  text-align: left;
  color: #fff;
}

th {
  background-color: rgba(255, 255, 255, 0.1);
}

td {
  background-color: rgba(255, 255, 255, 0.05);
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    width: 100%;
    height: max-content;
    background-color: #150f04;
    padding: 60px 0;
    box-shadow: 2px 0 2px rgba(0, 0, 0, .2);
    transition: transform 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.offcanvas-menu.active {
    transform: translateY(0);
}


.offcanvas-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}


.close-btn {
    position: absolute;
    top: 15px;
    left: 7px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.close-btn .material-icons {
    font-size: 30px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 900;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.header-container {
    height: 41px;
    display: flex;
    padding: 15px;
    align-items: center;
    position: relative;
    justify-content: space-between;
    background: #150f04;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.home-url {
    display: inline-block;
}

.home-url img {
    display: flex;
}

img {
    max-width: 100%;
    display: flex;
    margin: 0 auto;
}


.nav-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger-bars {
    height: 30px;
    color: #fff;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.hamburger-bars .material-icons {
    font-size: 32px;
}

.navigation a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}

.button-container {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.auth-button {
    color: #fae39e;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid #d5b38d;
    padding: 10px 16px;
    border-radius: 7px;
    background-color: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
}

.auth-button:hover {
    box-shadow: inset 0 -10px 6px rgba(255, 255, 255, 0.2);
}

.register-button {
    color: #070707;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(180deg, #ad9e70 0, #baaa79 50%, #fae4a2 100%);
    text-decoration: none;
    border: 1px solid #d5b38d;
    padding: 10px 16px;
    border-radius: 7px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.register-button:hover {
    background: linear-gradient(360deg, #ad9e70 0, #baaa79 50%, #fae4a2 100%);
}


.banner-container {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #36301c, #efd595 50%, #fae4a2);
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.banner-image-container {
    background-image: url(../images/hero-casino-banner-tablet-not-logged.webp);
    background-size: cover;
    background-position: left;
    padding: 80px;
    align-items: flex-end;
    margin: 0 2px 2px 2px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.banner-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    padding: 100px 80px 100px 0;
    text-align: center;
}

.banner-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.banner-title {
    font-size: 32px;
    color: #d5b38d;
    font-weight: 500;
}

.banner-bonus {
    font-size: 48px;
    font-weight: 900;
}

.banner-button {
    font-size: 16px;
    padding: 14px 24px;
    color: #070707;
    text-decoration: none;
    width: 324px;
    background: linear-gradient(#f7f2d1, #fbf4c8, #f7aa44);
    font-weight: 600;
    display: flex;
    justify-content: center;
    border-radius: 7px;
}

.banner-button:hover {
    background: linear-gradient(#f8f2d3, #fbf4c8, #ac660b);
}


.url {
    text-decoration: none;
}

.main-content {
    padding: 32px 250px;
}

.main-content p, li, td, th {
    font-size: 20px;
}


.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
}

.footer-nav a:hover {
    color: #908c84;
}

.footer-images {
    display: flex;
    gap: 15px;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
}

.slider-container {
    background: #150f04;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 80px 0;
}

.slider-items {
    width: 80%;
    overflow: hidden;
    position: relative;
}

.slick-dots {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 0 0 0 20px;
}

.slick-dots li {
    font-size: 24px;
    cursor: pointer;
    color: #775d5d96;
}

li.slick-active::marker {
    color: #fff;
}

.slick-dots li button { 
   display: none; 
} 

.slider-main-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.slider-title {
    font-size: 30px;
    font-weight: 600;
    color: #fae4a2;
    text-transform: uppercase;
}

.slider-sub-title {
    font-size: 50px;
    font-weight: 600;
}

.slider-item {
    background-size: contain;
    background-position: center;
    height: 233px!important;
    position: relative;
    border-radius: 16px;
    margin-right: 20px;
}

.item-button {
    text-decoration: none;
    color: #000;
    background: linear-gradient(180deg, #ad9e70 0, #baaa79 50%, #fae4a2 100%);
    border: 1px solid #d5b38d;
    padding: 5px 8px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    position: absolute;
    top: 10px;
    left: 10px;
}

.item-button:hover {
    background: linear-gradient(360deg, #ad9e70 0, #baaa79 50%, #fae4a2 100%);
}

.item-bottom-text {
    font-size: 14px;
    background: linear-gradient(180deg, #403a30, #21190d);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 1;
}

.item-bottom-text::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    background: linear-gradient(180deg, #36301c, #efd595 50%, #fae4a2);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.slider-button {
    font-size: 16px;
    padding: 14px 24px;
    color: #070707;
    text-decoration: none;
    background: linear-gradient(#f7f2d1, #fbf4c8, #f7aa44);
    font-weight: 600;
    display: flex;
    justify-content: center;
    border-radius: 7px;
    text-transform: uppercase;
}

.slider-button:hover {
    background: linear-gradient(#f8f2d3, #fbf4c8, #ac660b);
}

.item-1 {
    background-image: url('../images/item-1.webp');
}

.item-2 {
    background-image: url('../images/item-2.webp');
}

.item-3 {
    background-image: url('../images/item-3.webp');
}

.item-4 {
    background-image: url('../images/item-4.webp');
}

.item-5 {
    background-image: url('../images/item-5.webp');
}

.item-6 {
    background-image: url('../images/item-6.webp');
}

.item-7 {
    background-image: url('../images/item-7.webp');
}

.item-8 {
    background-image: url('../images/item-8.webp');
}

.item-9 {
    background-image: url('../images/item-9.webp');
}

.item-10 {
    background-image: url('../images/item-10.webp');
}


@media (min-width: 1500px) {
    .slider-items {
        width: 50%;
    }
}

@media (min-width: 2000px) {
    .slider-items {
        width: 40%;
    }
    .banner-image-container {
        justify-content: center;
    }
    .banner-content {
        margin-left: 40%;
    }
}


@media (max-width: 1400px) {
    .nav-container {
        gap: 10px;
    }
    .navigation {
        gap: 10px;
    }
    .navigation a {
        font-size: 14px;
    }
    .main-content {
        padding: 32px 150px;
    }
}

@media (max-width: 1200px) {
    .navigation {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px;
    }
    .register-button {
        display: none;
    }
    .logo-container img {
        width: 150px;
    }
    .auth-button {
        padding: 7px 15px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
    }
    .banner-content {
        padding: 0;
        z-index: 1;
    }
    .banner-image-container {
        padding: 20px;
    }
    .banner-button {
        width: 224px;
    }
    .banner-image-container::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Змінюйте прозорість (0.5 = 50% затемнення) */
        border-bottom-left-radius: 7px;
        border-bottom-right-radius: 7px;
        pointer-events: none; /* Щоб затемнення не заважало клікам по контенту */
    }
    .slider-items {
        width: 50%;
    }
    .slider-item {
        margin-right: 0;
    }
    .main-content {
        padding: 32px;
    }
}



