* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Protest Revolution', Arial, sans-serif;
    overflow-x: hidden;
    background-color: #511f76 !important; /* AUTO_GENERATED_COLOR */
}

body.main-page {
    background-color: #511f76 !important; /* AUTO_GENERATED_COLOR */
}

.page {
    height: 100vh;
    position: relative;
}

.container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.clickable-regions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.clickable-regions svg {
    width: 100%;
    height: 100%;
}

.clickable-path {
    fill: transparent;
    cursor: pointer;
    transition: fill 0.3s ease;
}

.clickable-path:hover {
    fill: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 767px) {
    .desktop-regions {
        display: none !important;
    }
    
    .mobile-regions {
        display: block !important;
    }
    
    .background {
        background-image: url('../assets/images/main/bg-main-mob.png') !important;
    }
}

.main-page {
    height: 100vh;
    position: relative;
}

.main-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.main-container .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/main/bg-main-pc.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}




