body {
    background-color: #07182b;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding-top: 40px;
}

h1 {
    font-size: 36px;
    font-style: italic;
    margin-top: 1.2rem;
    text-align: left;
    margin-bottom: 1rem;
    line-height: 46px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 900;
}

li {
    color: #fff;
}

ul, ol {
    margin: 30px 0;
}

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); /* ще легший відтінок */
}

h2,h3,h4 {
    color: #fff;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 20px;
}

p {
    color: #fff;
}

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

.custom-table-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    gap: 30px;
}

.table-string {
    display: flex;
    gap: 10px;
    align-items: center;
}

.table-string p {
    margin: 5px 0;
}

.vorteil-title {
    color: #00ba00;
    font-weight: 600;
}

.nachteil-title {
    color: #f44336;
    font-weight: 600;
}

.main-content span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 300;
}

.main-content ul {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
}

.main-content img {
    max-width: 100%;
}

.container {
    margin: 35px 233px;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: 250px;
    height: 100%;
    background-color: #07182b;
    padding: 60px 20px 20px;
    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: translateX(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: 10px 65px;
    align-items: center;
    position: relative;
    justify-content: space-between;
}

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

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


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

.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: #fff;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid #36e6e5;
    padding: 7px 30px;
    border-radius: 10px;
    background-color: transparent;
    transition: all 0.3s ease;
}

.auth-button:hover {
    background-color: rgba(54, 230, 229, 0.1);
    box-shadow: 0 0 5px #36e6e5;
}

.register-button {
    color: #000;
    font-size: 13px;
    font-weight: 700;
    background: #1fe88a;
    text-decoration: none;
    border: 1px solid #1fe88a;
    padding: 7px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.register-button:hover {
    box-shadow: 0 0 5px #1fe88a;
}

.cta-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.cta-button {
    color: #000;
    font-size: 20px;
    font-weight: 800;
    background: #1fe88a;
    text-decoration: none;
    border: 1px solid #1fe88a;
    padding: 10px 45px;
    border-radius: 20px;
    transition: all 0.3s ease;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 255, 151, 0.5);
            transform: scale(0.95);
    }
    50% {
        box-shadow: 0 0 0 10px transparent;
            transform: scale(1);
    }
    100% {
        box-shadow: 0 0 0 0 transparent;
            transform: scale(0.95);
    }
}

.cta-button:hover {
    box-shadow: 0 0 5px #1fe88a;
}


.banner-container {
    background-image: url('../images/banner-bg.png');
    background-size: cover;
    background-position: center right;
    padding: 3rem;
    border-radius: 4px;
    position: relative;
}

.main-banner-text {
    display: flex;
    flex-direction: column;
    gap: 5px; 
}

.banner-title {
    font-size: 22px;
    line-height: 22px;
    color: #fff;
}

.banner-bonus {
    font-size: 40px;
    line-height: 40px;
    color: #fff;
    margin-top: 8px;
    font-weight: 900;
}

.banner-special-prize {
    background: -webkit-linear-gradient(-90deg, #00d1ff 0%, #0d9ef0 100%);
    font-size: 56px;
    line-height: 56px;
    font-weight: 900;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-cta {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
    margin-bottom: 32px;
    gap: 32px;
}

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

.feature {
    display: flex;
    gap: 5px;
    align-items: center;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.url {
    text-decoration: none;
}

.banner-button-container {
    display: flex;
    gap: 7px;
    font-weight: 700;
    color: #08121c;
    font-size: 14px;
    line-height: 20px;
    border-radius: 4px;
    border: 1px solid #8cffc9;
    background: linear-gradient(180deg, #1fe88a 0%, #1ac173 100%);
    border-radius: 4px;
    height: 48px;
    align-items: center;
    justify-content: center;
    max-width: 140px;
    cursor: pointer;
}

.sub-banner-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(25px);
    padding: 16px 0;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.banner-step {
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-num {
    font-size: 24px;
    background: linear-gradient(-90deg, #00d1ff 0%, #0d9ef0 100%);
    background: -webkit-linear-gradient(-90deg, #00d1ff 0%, #0d9ef0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.step-name {
    color: #f5f6f8;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.step-seperator {
    width: auto;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    flex-grow: 1;
}

.play-icon {
    width: 20px;
}

.partners-logo {
    width: 101px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    height: 25px;
}

.play-container {
    display: flex;
    flex-direction: column;
}

.play-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: -15px;
}

.play-title-text {
    font-size: 20px;
    color: #fff;
}

.partners-logo-container {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 40px;
}

.play-variation {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.play-variation::-webkit-scrollbar {
    display: none;
}
.variation-card {
    flex: 0 0 auto;
    width: 370px;
    border-radius: 10px;
}

.border-for-banner {
    border: 1px solid #36e6e526;
}

.variation-card-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.variation-card-text-title {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

.variation-card-text-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 300;
}

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
}

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

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

.footer-images img {
    width: 50%;
}

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


.image-align-center {
    display: flex;
    margin: 0 auto;
}

.img-text-right-container {
    display: flex;
    gap: 30px;
    align-items: center;
}







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

@media (max-width: 1200px) {
    .navigation {
        display: none;
    }
    .container {
        margin: 15px;
    }
    .banner-step {
        padding: 0 15px;
    }
    .partners-logo-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    .img-text-right-container {
        flex-direction: column;
        gap: 0;
    }
}

@media (min-width: 768px) {
    .variation-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 10px;
    }
    .register-button {
        display: none;
    }
    .logo-container img {
        width: 150px;
    }
    .auth-button {
        padding: 7px 15px;
    }
    .container {
        margin: 24px;
    }
    .banner-container {
        background-image: url('../images/banner-bg-mobile.png');
        background-position: center;
        padding: 52px 24px 160px;
    }
    .sub-banner-steps {
        display: none;
    }
    .banner-title {
        text-align: center;
        font-size: 16px;
        font-weight: 200;
    }
    .banner-bonus {
        text-align: center;
        font-size: 28px;
    }
    .banner-special-prize {
        text-align: center;
        font-size: 40px;
    }
    .feature {
        flex-direction: column;
    }
    .feature-text {
        font-size: 12px;
        font-weight: 400;
    }
    .banner-features {
        justify-content: space-between;
        gap: unset;
    }
    .banner-button-container {
        width: 100%;
        height: 40px;
        margin-top: 20px;
        max-width: unset;
    }
    .banner-cta {
        gap: unset;
        margin-top: 12px;
        margin-bottom: 0;
    }
    .footer-nav {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .custom-table-container {
        flex-direction: column;
    }
    .footer-images img {
        width: 100%;
    }
    .logo-container {
        flex: 3;
    }
}



