:root {
    --primaryBg: linear-gradient(135deg, #211e15, #0a0a08);
    --accentColor: #ff214f;
    --footerBg: #000;
    --headingColor: #efefef;
    --textColor: #efefef;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Barlow', sans-serif;
}

body {
    background: var(--primaryBg);
    color: var(--textColor);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.mainHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    position: relative;
}

.header-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logoWrap a{
    line-height: 0;
    gap: 5px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logoWrap span{
    color: #fff;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 700;
}

.logoImage {
    height: 40px;
}

.navMenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navList {
    display: flex;
    list-style: none;
}

.navItem {
    margin-left: 30px;
}

.navLink {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.navLink:hover {
    color: var(--accentColor);
}

.authButtons {
    display: flex;
    margin-left: 30px;
}

.authBtn {
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 10px;
}

.loginBtn {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.loginBtn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.signupBtn {
    background: var(--accentColor);
    border: 1px solid var(--accentColor);
    color: var(--white);
}

.signupBtn:hover {
    background: #e61e4a;
}

.mobileMenuBtn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}


.heroBanner {
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: url('../img/banner.jpg') right center no-repeat;
    background-size: cover;
}

.bannerContent {
    flex: 1;
    padding-right: 50px;
    max-width: 700px;
    width: 100%;
}

.bannerSubtitle {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.bannerTitle {
    color: var(--white);
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
}

.bannerText {
    color: #fff;
    margin-bottom: 30px;
    font-size: 16px;
}

.bannerBtn {
    background: var(--accentColor);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

.bannerBtn:hover {
    background: #e61e4a;
}

.bannerImage {
    flex: 1;
    text-align: center;
}

.bannerImg {
    max-width: 100%;
    height: auto;
}


.aboutSection {
    padding: 80px 0 50px 0;
    display: flex;
    align-items: center;
}

.aboutImage {
    flex: 1;
    padding-right: 50px;
}

.aboutImg {
    max-width: 100%;
    border-radius: 10px;
}

.aboutContent {
    flex: 1;
}

.sectionTitle {
    color: var(--headingColor);
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

.accentTitle {
    color: var(--accentColor);
    text-transform: uppercase;
}

.aboutText {
    margin-bottom: 20px;
    font-size: 16px;
}


.whyOzlotto {
    padding: 50px 0;
}

.sectionHeader {
    margin-bottom: 50px;
}

.featuresGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.featureBlock {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.featureBlock:hover {
    transform: translateY(-5px);
}

.featureTitle {
    color: var(--white);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.featureIcon {
    color: var(--accentColor);
    margin-right: 10px;
    font-size: 24px;
}

.featureText {
    font-size: 16px;
}


.responsibleGaming {
    padding: 50px 0;
}



.rgList {
    text-align: left;
    margin-top: 30px;
    list-style-position: inside;
}

.rgItem {
    margin-bottom: 10px;
}


.helpCenter {
    padding: 50px 0;
    background: rgba(0, 0, 0, 0.3);
}
.hcContent a{
    color: var(--accentColor);
}


.contactInfo {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contactItem {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 40px;
}

.contactIcon {
    color: var(--accentColor);
    margin-right: 10px;
    font-size: 20px;
}


.mainFooter {
    background: var(--footerBg);
    padding: 60px 0 30px;
}

.footerContent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footerLogo {
    margin-bottom: 20px;
}

.footerLinksTitle {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footerList {
    list-style: none;
}

.footerItem {
    margin-bottom: 10px;
}

.footerLink {
    color: var(--textColor);
    text-decoration: none;
    transition: color 0.3s;
}

.footerLink:hover {
    color: var(--accentColor);
}

.supportServices {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.supportLogo {
    max-height: 50px;
    height: auto;
    max-width: 250px;
    width: auto;

    transition: opacity 0.3s;
}

.supportLogo:hover {
    opacity: 1;
}

.ageRestriction {
    display: flex;
    align-items: center;
    color: var(--textColor);
    font-size: 18px;
    margin-top: 20px;
}

.ageIcon {
    margin-right: 5px;
    color: var(--accentColor);
    font-size: 20px;
}

.footerBottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--textColor);
    font-size: 14px;
}


.modalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modalOverlay.active {
    opacity: 1;
    visibility: visible;
}

.modalContainer {
    background: var(--primaryBg);
    border-radius: 10px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.closeModal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.modalTitle {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.formGroup {
    margin-bottom: 20px;
}

.formInput {
    width: 100%;
    padding: 15px 20px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 16px;
    transition: border 0.3s;
}

.formInput:focus {
    outline: none;
    border-color: var(--accentColor);
}

.checkboxGroup {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.formCheckbox {
    margin-right: 10px;
}

.checkboxLabel {
    color: var(--textColor);
    font-size: 14px;
}

.submitBtn {
    width: 100%;
    padding: 15px;
    border-radius: 40px;
    background: var(--accentColor);
    color: var(--white);
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    transition: background 0.3s;
}

.submitBtn:hover {
    background: #e61e4a;
}

.modalMessage {
    text-align: center;
    color: var(--white);
    font-size: 18px;
    margin-top: 20px;
    display: none;
}

.successMessage {
    color: #4caf50;
}

.errorMessage {
    color: var(--accentColor);
}


.contentPage {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
    min-height: calc(100vh - 200px);
}


.breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--textColor);
}

.breadcrumbs a {
    color: var(--accentColor);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #e61e4a;
}

.breadcrumbs span {
    color: var(--white);
}


.pageHeader {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.pageTitle {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pageSubtitle {
    color: var(--textColor);
    font-size: 16px;
}


.contentSection {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 8px;
}

.contentTitle {
    color: var(--accentColor);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contentSubtitle {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    margin: 25px 0 15px;
}

.contentText {
    color: var(--textColor);
    font-size: 16px;
    line-height: 1.7;
}

.contentText p {
    margin-bottom: 15px;
}


.contentList {
    margin: 15px 0 15px 20px;
    color: var(--textColor);
}

.contentList li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.contentList li:before {
    content: "•";
    color: var(--accentColor);
    position: absolute;
    left: 0;
}


.contactDetails {
    list-style: none;
    margin: 20px 0;
}

.contactDetails li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contactDetails strong {
    min-width: 80px;
    display: inline-block;
    color: var(--white);
}


.tableWrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookiesTable {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
}

.cookiesTable th, 
.cookiesTable td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookiesTable th {
    background: rgba(255, 33, 79, 0.2);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.cookiesTable tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.cookiesTable tr:hover {
    background: rgba(255, 33, 79, 0.05);
}


.contentText a {
    color: var(--accentColor);
    text-decoration: none;
    transition: color 0.3s;
}

.contentText a:hover {
    color: #e61e4a;
    text-decoration: underline;
}


.cookieConsent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    background: rgba(10, 10, 8, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookieConsent.active {
    transform: translateY(0);
    opacity: 1;
}

.cookieContent {
    color: var(--white);
}

.cookieTitle {
    color: var(--accentColor);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cookieText {
    color: var(--textColor);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.cookieButtons {
    display: flex;
    gap: 10px;
}

.cookieBtn {
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.acceptAll {
    background: var(--accentColor);
    color: var(--white);
}

.acceptAll:hover {
    background: #e61e4a;
}

.rejectAll {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.rejectAll:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 480px) {
    .cookieConsent {
        max-width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }
    
    .cookieButtons {
        flex-direction: column;
    }
    
    .cookieBtn {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .contentPage {
        padding: 40px 0;
    }
    
    .pageTitle {
        font-size: 28px;
    }
    
    .contentSection {
        padding: 20px;
    }
    
    .contentTitle {
        font-size: 22px;
    }
    
    .cookiesTable th, 
    .cookiesTable td {
        padding: 8px 10px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .contentPage {
        padding: 30px 0;
    }
    
    .pageHeader {
        margin-bottom: 30px;
    }
    
    .contentSection {
        padding: 15px;
    }
    
    .contactDetails li {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contactDetails strong {
        margin-bottom: 5px;
    }
}


@media (max-width: 992px) {
    .heroBanner, .aboutSection {
        flex-direction: column;
    }

    .bannerContent, .aboutImage, .aboutContent {
        padding-right: 0;
      
        margin-bottom: 30px;
    }

    .featuresGrid {
        grid-template-columns: 1fr;
    }

    .footerContent {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navMenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--footerBg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s;
        z-index: 100;
    }

    .navMenu.active {
        right: 0;
    }

    .navList {
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    .navItem {
        margin: 15px 0;
    }

    .authButtons {
        flex-direction: column;
        margin-left: 0;
    }

    .authBtn {
        margin: 10px 0;
    }

    .mobileMenuBtn {
        display: block;
        z-index: 101;
    }

    .bannerTitle {
        font-size: 36px;
    }

    .sectionTitle {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .footerContent {
        grid-template-columns: 1fr;
    }

    .modalContainer {
        padding: 30px 20px;
    }
    .heroBanner{
        background-position: left center;
    }
    .heroBanner{
        padding: 70px 0 40px 0;
    }
}