:root {
    --primary: #000000;
    --secondary: #6c757d;
    --gray: #adb5bd;
    --background: #ffffff;
    --card-background: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --error: #dc3545;
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
}

:root {
    --font-family: Montserrat, sans-serif, Arial, sans-serif;
    --font-base: Montserrat, sans-serif;
    --font-fallback: Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    line-height: 1.5;
    color: var(--black);
    background-color: var(--background);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
}

html {
    scroll-behavior: smooth;
}

.topbar {
    background: var(--black);
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
    padding: 40px 0;
}
@media (max-width: 767px) {
    .topbar {
        padding: 20px 0;
    }
}
@media (max-width: 374px) {
    .topbar {
        padding: 15px 0;
    }
}
.topbar__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    min-height: 40px;
}
@media (max-width: 991px) {
    .topbar__wrapper {
        flex-wrap: nowrap;
    }
}
@media (max-width: 767px) {
    .topbar__wrapper {
        flex-wrap: nowrap;
        gap: 16px;
        min-height: auto;
    }
}
@media (max-width: 374px) {
    .topbar__wrapper {
        gap: 0;
        min-height: 41px;
        justify-content: space-between;
    }
}
.topbar__menu-toggler {
    width: 42px;
    height: 41px;
    padding: 0;
    border: none;
    background: transparent;
    flex-shrink: 0;
    align-items: center;
    color: var(--white);
    opacity: 1;
}
.topbar__menu-toggler:focus {
    box-shadow: none;
    outline: none;
}
.topbar__menu-toggler i {
    font-size: 20px;
    color: var(--white);
}
@media (max-width: 374px) {
    .topbar__menu-toggler {
        width: 42px;
        height: 41px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.topbar__logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 992px) {
    .topbar__logo {
        flex: 0;
        justify-content: flex-start;
    }
}
.topbar__logo-link {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
    line-height: normal;
    white-space: nowrap;
}
@media (min-width: 992px) {
    .topbar__logo-link {
        font-size: 15px;
    }
}
@media (max-width: 374px) {
    .topbar__logo-link {
        font-size: 20px;
    }
}
@media (max-width: 374px) {
    .topbar__logo {
        flex: 1;
        justify-content: center;
    }
}
.topbar__search {
    max-width: 250px;
    width: 100%;
}
@media (max-width: 991px) {
    .topbar__search {
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width: 767px) {
    .topbar__search {
        order: 3;
        width: 100%;
        max-width: 100%;
    }
}
.topbar__search-form {
    width: 100%;
    max-width: 500px;
}
@media (max-width: 991px) {
    .topbar__search-form {
        max-width: 100%;
        width: 100%;
    }
}
.topbar__search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 35px;
    padding: 10px 20px;
    border: 1px solid var(--white);
    border-radius: 8px;
    background: transparent;
    box-sizing: border-box;
    gap: 7px;
}
.topbar__search-icon {
    flex-shrink: 0;
    color: var(--white);
    font-size: 16px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.topbar__search-text {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    line-height: normal;
    white-space: nowrap;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.topbar__search-input {
    width: 100%;
    padding: 10px 20px 10px 0px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s ease;
}
.topbar__search-input:focus {
    outline: none;
}
.topbar__search-input::-moz-placeholder {
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
}
.topbar__search-input::placeholder {
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
}
.topbar__search-input::-webkit-search-cancel-button, .topbar__search-input::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}
.topbar__search-input::-ms-clear, .topbar__search-input::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}
.topbar__search-input::-moz-search-clear {
    display: none;
}
.topbar__search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    opacity: 1;
    transition: 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}
.topbar__search-clear i {
    font-size: 14px;
    line-height: 1;
}
.topbar__search-clear:hover {
    opacity: 1;
    color: var(--white);
}
.topbar__search-clear:active {
    opacity: 0.9;
}
.topbar__search-clear:focus {
    outline: none;
    opacity: 1;
}
@supports selector(:has(*)) {
    .topbar__search-wrapper:has(.topbar__search-input:not(:-moz-placeholder)) .topbar__search-clear {
        display: flex;
    }
    .topbar__search-wrapper:has(.topbar__search-input:not(:placeholder-shown)) .topbar__search-clear {
        display: flex;
    }
}
.topbar__actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
    height: 40px;
}
.topbar__auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    height: 40px;
}
@media (max-width: 767px) {
    .topbar__auth-buttons {
        gap: 12px;
    }
}
@media (max-width: 374px) {
    .topbar__auth-buttons {
        display: none;
    }
}

.topbar__auth-buttons .btn--auth-sm {
    font-size: 1rem;
    padding: 0.25rem 0.75rem;
    line-height: 1.2;
    min-width: auto;
}

.topbar__login--mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    font-size: 20px;
    color: var(--white);
    transition: 0.3s ease;
    text-decoration: none;
}
.topbar__login--mobile:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}
.topbar__dropdown {
    position: relative;
}
@media (max-width: 374px) {
    .topbar__dropdown {
        display: none;
    }
}
.topbar__user-toggle {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
}
.topbar__user-toggle:focus {
    box-shadow: none;
    outline: none;
}
.topbar__user-toggle:hover {
    background: transparent;
}
.topbar__user-toggle::after {
    display: none;
}
.topbar__user-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    height: 40px;
}
@media (max-width: 767px) {
    .topbar__user-content {
        width: auto;
        min-width: 200px;
    }
}
.topbar__user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 35px;
}
.topbar__user-avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
.topbar__user-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}
.topbar__user-mobile:hover {
    opacity: 0.8;
}
.topbar__user-mobile .topbar__user-avatar {
    margin-left: 0;
}
@media (max-width: 374px) {
    .topbar__user-mobile {
        width: 40px;
        height: 40px;
    }
}
.topbar__user-name {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    line-height: normal;
    white-space: nowrap;
    margin-left: 15px;
    flex: 1;
}
@media (max-width: 767px) {
    .topbar__user-name {
        font-size: 14px;
        margin-left: 12px;
    }
}
.topbar__dropdown-icon {
    color: var(--white);
    font-size: 10px;
    margin-left: auto;
    margin-right: 0;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.topbar__dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 8px;
    padding: 0;
    min-width: 200px;
    overflow: hidden;
}
.topbar__dropdown-menu.show {
    transform: translate(0, 52px) !important;
}
.topbar__dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--black);
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    font-weight: 400;
    border-radius: 0;
    transition: 0.3s ease;
}
.topbar__dropdown-item i {
    font-size: 14px;
    width: 16px;
    text-align: center;
    color: var(--gray);
    transition: 0.3s ease;
}
.topbar__dropdown-item:hover {
    background: var(--black);
    color: var(--white);
    transition: 0.3s ease;
}
.topbar__dropdown-item:hover i {
    color: var(--white);
}
.topbar__dropdown-item:active {
    background: rgba(255, 255, 255, 0.15);
}
.topbar .show .topbar__dropdown-icon {
    transform: rotate(180deg);
}
@media (max-width: 767px) {
    .topbar__container {
        padding: 0 30px;
    }
}
@media (max-width: 374px) {
    .topbar__container {
        padding: 0 16px;
    }
}
.topbar #mobileMenu.offcanvas {
    background: var(--white);
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}
.topbar #mobileMenu.offcanvas.offcanvas-start {
    left: 0;
    transform: translateX(-100%);
}
.topbar #mobileMenu.offcanvas.offcanvas-start.show {
    transform: translateX(0);
}
.topbar__offcanvas-header {
    padding: 43px 16px 0;
    border-bottom: none;
    position: relative;
    min-height: 106px;
    background: var(--white);
    flex-shrink: 0;
}
.topbar__close-btn {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}
.topbar__close-btn:focus {
    outline: none;
    box-shadow: none;
}
.topbar__close-btn:hover {
    opacity: 0.7;
}
.topbar__close-btn i {
    font-size: 20px;
    color: var(--black);
}
.topbar__offcanvas-title {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    white-space: nowrap;
}
.topbar__offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    overflow-y: auto;
    flex: 0 0 auto;
    min-height: 0;
    justify-content: flex-start;
    margin-top: 0;
    height: 100%;
    max-height: 60vh;
    overflow-y: auto;
}
.topbar__mobile-nav {
    width: 343px;
    max-width: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-top: 0;
}
.topbar__mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 16px;
    border-bottom: 1px solid #f3f3f3;
    text-decoration: none;
    color: var(--black);
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
    box-sizing: border-box;
}
.topbar__mobile-nav-item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--black);
}
.topbar__mobile-nav-item:last-child {
    border-bottom: none;
}
.topbar__mobile-nav-item span {
    display: block;
}
.topbar__offcanvas-footer {
    padding: 40px 0 20px;
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    margin-bottom: auto;
    flex-shrink: 0;
}
.topbar__auth-buttons-mobile {
    display: flex;
    gap: 25px;
    align-items: center;
    height: 40px;
    width: 100%;
    justify-content: center;
}

.navbar {
    /*background: var(--card-background);*/
    background: #0a0a0a;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    z-index: 1030;
    transition: 0.3s ease;
    /*margin-bottom: 5px;*/
}
.navbar.fixed-top {
    transition: 0.3s ease;
}
.navbar .navbar-nav {
    gap: 50px;
}
@media (max-width: 991px) {
    .navbar .navbar-collapse {
        margin-top: 20px;
        padding: 20px;
        background: var(--white);
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}
.navbar .nav-link {
    color: #fff !important;
    padding: 0px 16px;
    color: var(--black);
    font-weight: 500;
    font-size: 1rem;
    transition: 0.3s ease;
    position: relative;
    border-radius: 4px;
}
.navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s ease;
}
.navbar .nav-link:hover {
    color: var(--primary);
}
.navbar .nav-link:hover::after {
    width: calc(100% - 15px);
}
.navbar .nav-link.active {
    color: var(--primary);
}
.navbar .nav-link.active::after {
    width: calc(100% - 15px);
}
@media (max-width: 991px) {
    .navbar .nav-link {
        padding: 12px 16px;
        border-radius: 0;
        border-bottom: 1px solid rgba(173, 181, 189, 0.2);
    }
    .navbar .nav-link::after {
        display: none;
    }
}
.navbar .navbar-toggler {
    border: none;
    padding: 4px 8px;
}
.navbar .navbar-toggler:focus {
    box-shadow: none;
}
.navbar__search {
    max-width: 500px;
    width: 100%;
}
@media (max-width: 991px) {
    .navbar__search {
        max-width: 100%;
        width: 100%;
    }
}
.navbar__search-form {
    width: 100%;
    max-width: 500px;
}
@media (max-width: 991px) {
    .navbar__search-form {
        max-width: 100%;
        width: 100%;
    }
}
.navbar__search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    padding: 10px 20px;
    border: 1px solid var(--white);
    border-radius: 8px;
    background: var(--white);
    box-sizing: border-box;
    gap: 10px;
}
.navbar__search-icon {
    flex-shrink: 0;
    color: var(--gray);
    font-size: 16px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar__search-text {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--gray);
    line-height: normal;
    white-space: nowrap;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.navbar__search-input {
    width: 100%;
    padding: 10px 20px 10px 0px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--gray);
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}
.navbar__search-input:focus {
    outline: none;
}
.navbar__search-input::-moz-placeholder {
    color: var(--gray);
    font-weight: 500;
    font-size: 16px;
}
.navbar__search-input::placeholder {
    color: var(--gray);
    font-weight: 500;
    font-size: 16px;
}
.navbar__search-input::-webkit-search-cancel-button, .navbar__search-input::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}
.navbar__search-input::-ms-clear, .navbar__search-input::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}
.navbar__search-input::-moz-search-clear {
    display: none;
}
.navbar__search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gray);
    opacity: 1;
    transition: 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}
.navbar__search-clear i {
    font-size: 14px;
    line-height: 1;
}
.navbar__search-clear:hover {
    opacity: 1;
    color: var(--gray);
}
.navbar__search-clear:focus {
    outline: none;
}
@supports selector(:has(*)) {
    .navbar__search-wrapper:has(.navbar__search-input:not(:-moz-placeholder)) .navbar__search-clear {
        display: flex;
    }
    .navbar__search-wrapper:has(.navbar__search-input:not(:placeholder-shown)) .navbar__search-clear {
        display: flex;
    }
}

.footer {
    background: #f3f3f3;
    color: var(--black);
    padding: 50px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
@media (max-width: 767px) {
    .footer {
        padding: 20px 0;
        gap: 24px;
    }
}
.footer__content {
    gap: 25px;
}
@media (max-width: 767px) {
    .footer__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}
.footer__card {
    display: flex;
    align-items: center;
}
@media (max-width: 767px) {
    .footer__card {
        align-items: flex-start;
        width: 100%;
    }
    .footer__card--logo {
        width: 270px;
        align-items: flex-start;
        text-align: left;
    }
    .footer__card--category {
        width: 107px;
    }
    .footer__card--page {
        width: 65px;
    }
    .footer__card--auth {
        width: 135px;
    }
}
.footer__logo {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 26px;
    font-weight: 800;
    line-height: normal;
    color: var(--black);
    margin: 0;
    white-space: nowrap;
    width: 100%;
}
@media (max-width: 767px) {
    .footer__logo {
        text-align: center;
        font-size: 22px;
    }
}
@media (max-width: 374px) {
    .footer__logo {
        font-size: 20px;
    }
}
.footer__social {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: var(--black);
    text-decoration: none;
    transition: 0.3s ease;
}
.footer__social-link:hover {
    opacity: 0.7;
}
.footer__social-link i {
    font-size: 25px;
}
.footer__title {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 20px;
    font-weight: 800;
    line-height: normal;
    color: var(--black);
    margin: 0 0 10px 0;
}
.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__link {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: var(--black);
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s ease;
}
.footer__link:hover {
    opacity: 0.7;
}
.footer__auth-buttons {
    display: flex;
    gap: 25px;
    align-items: center;
    height: 40px;
}
@media (max-width: 767px) {
    .footer__auth-buttons {
        gap: 16px;
        height: auto;
        align-items: flex-start;
    }
}
.footer__divider {
    height: 1px;
    width: 100%;
    background: var(--white);
    margin: 25px 0;
}
@media (max-width: 767px) {
    .footer__divider {
        width: 343px;
        max-width: 100%;
    }
}
.footer__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-top: 25px;
}
@media (max-width: 767px) {
    .footer__bottom {
        justify-content: center;
        padding: 0 16px;
    }
}
.footer__copyright {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}
@media (max-width: 767px) {
    .footer__copyright {
        flex-wrap: wrap;
        justify-content: center;
    }
}
.footer__separator {
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--white);
    transform: rotate(90deg);
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .footer__container {
        padding: 0 16px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    line-height: normal;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    white-space: nowrap;
    box-sizing: border-box;
    text-align: center;
    outline: none;
}
.btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.btn--default {
    height: 40px;
    padding: 10px 30px;
    font-weight: 500;
}
.btn--large {
    height: 54px;
    padding: 10px 20px;
    font-weight: 600;
}
.btn--social {
    height: 48px;
    padding: 10px 20px;
    width: 110px;
    font-weight: 500;
}
.btn--primary {
    background-color: var(--black);
    color: var(--white);
    border: 1px solid transparent;
}
.btn--primary:hover:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--white);
}
.btn--primary:active:not(:disabled) {
    border-color: none;
    background-color: rgba(0, 0, 0, 0.8);
}
.btn--secondary {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid transparent;
}
.btn--secondary:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--black);
}
.btn--secondary:active:not(:disabled) {
    border-color: none;
    background-color: rgba(255, 255, 255, 0.9);
}
.btn--outline {
    background-color: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}
.btn--outline:hover:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: var(--black);
    color: var(--black);
}
.btn--outline:active:not(:disabled) {
    border-color: none;
    background-color: rgba(0, 0, 0, 0.1);
}
.btn--outline-white {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}
.btn--outline-white:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}
.btn--outline-white:active:not(:disabled) {
    border-color: none;
    background-color: rgba(255, 255, 255, 0.15);
}
.btn--social {
    background-color: var(--white);
    border: 1px solid #f3f3f3;
    color: var(--black);
    padding: 10px 20px;
}
.btn--social:hover:not(:disabled) {
    border-color: var(--black);
    background-color: #fafafa;
}
.btn--social:active:not(:disabled) {
    border-color: none;
}
.btn--social img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain;
}
.btn--social i {
    font-size: 24px;
    color: var(--black);
}
.btn--hero {
    width: 100%;
    max-width: 413px;
    height: auto;
    padding: 14px 0;
    background: rgba(0, 224, 234, 0.1);
    border: 3px solid #00e0ea;
    border-radius: 8px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0px 0px 10px 0px inset rgba(0, 224, 234, 0.25);
    transition: 0.3s ease;
}
.btn--hero:hover:not(:disabled) {
    background: rgba(0, 224, 234, 0.2);
    box-shadow: 0px 0px 15px 0px inset rgba(0, 224, 234, 0.35);
    border-color: #00e0ea;
    color: var(--white);
}
.btn--hero:active:not(:disabled) {
    background: rgba(0, 224, 234, 0.15);
    box-shadow: 0px 0px 8px 0px inset rgba(0, 224, 234, 0.2);
}
.btn--hero:focus {
    outline: none;
    box-shadow: 0px 0px 15px 0px inset rgba(0, 224, 234, 0.35), 0 0 0 2px rgba(0, 224, 234, 0.3);
}
.btn--w-110 {
    width: 110px;
}
.btn--w-135 {
    width: 135px;
}
.btn--w-100 {
    width: 100%;
}
@media (max-width: 767px) {
    .btn--default {
        padding: 10px 20px;
        width: auto;
        min-width: 100px;
    }
}
@media (max-width: 374px) {
    .btn--social {
        flex: 1;
        min-width: calc(33.333% - 7px);
    }
}

.artwork__card {
    cursor: pointer;
    border: none;
    text-align: center;
    color: var(--white);
    height: 100%;
    --width: 93px;
    --height: 93px;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: var(--width)/var(--height);
    transition: 0.3s ease;
}
.artwork__card .card-title {
    margin: 0;
    line-height: 1.4;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: 0.3s ease;
}
.artwork__card--add {
    background-color: var(--black);
}
.artwork__card--add .card-body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 13px;
}
.artwork__card--add .card-body i {
    font-size: 20px;
}
.artwork__card--hasimage .card-img-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 13px;
    background-color: rgba(0, 0, 0, 0);
    transition: 0.3s ease;
}
.artwork__card--hasimage .card-img-overlay .card-title {
    display: none;
    transition: 0.3s ease;
}
.artwork__card--hasimage:hover .card-img-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.3s ease;
}
.artwork__card--hasimage:hover .card-img-overlay .card-title {
    display: block;
    transition: 0.3s ease;
}
.artwork__card--noimage .card-body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 13px;
}

.artist-modal-content {
    background: var(--black);
    border: none;
    border-radius: 8px;
    padding: 10px;
}
@media (max-width: 767px) {
    .artist-modal-content {
        padding: 50px;
    }
}
@media (max-width: 575px) {
    .artist-modal-content {
        padding: 32px 16px;
    }
}

.modal-body::-webkit-scrollbar {
    border-radius: 10px;
    width: 5px;
}
.modal-body::-webkit-scrollbar-track {
    background-color: #ffffff;
    width: 5px;
    border-radius: 10px;
}
.modal-body::-webkit-scrollbar-thumb {
    background-color: #aaaaaa;
    border-radius: 10px;
}

.modal-header {
    position: relative;
    width: 100%;
    padding: 0 0 20px;
}

.artist-modal__close {
    position: relative;
    width: 20px;
    height: 20px;
    font-size: 20px;
    background: transparent;
    border: none;
    padding: 0;
    margin-left: auto;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: fadeInRotate 0.3s ease-out;
}
.artist-modal__close:hover {
    opacity: 0.7;
    transform: rotate(90deg);
}
.artist-modal__close:active {
    transform: rotate(90deg) scale(0.9);
}
.artist-modal__close:focus {
    outline: none;
    box-shadow: none;
}
.artist-modal__close i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

@keyframes fadeInRotate {
    0% {
        opacity: 0;
        transform: rotate(-90deg);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg);
    }
}
.artist-modal__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    /*padding: 20px 0;*/
    justify-content: flex-start;
    /*flex-shrink: 0;*/
}

.artist-modal__avatar-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
@media (max-width: 374px) {
    .artist-modal__avatar-wrapper {
        width: 200px;
        height: 200px;
    }
}

.artist-modal__avatar {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.artist-modal__name {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    color: var(--white);
    margin: 0;
    text-align: center;
    /*white-space: nowrap;*/
    flex-shrink: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--white);
}

.artist-modal__social {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto;
}
.artist-modal__social li:not(:last-child) {
    margin-right: 12px;
    margin-left: 12px;
}
.artist-modal__social li:first-child {
    margin-left: 0;
    margin-right: 12px;
}
.artist-modal__social li:last-child {
    margin-right: 0;
    margin-left: 12px;
}
.artist-modal__social li a {
    text-decoration: none;
    font-size: 25px;
    color: var(--white);
    transition: 0.3s ease;
}
.artist-modal__social li a:hover {
    opacity: 0.7;
}

.artist-modal__share {
    display: flex;
    gap: 25px;
    align-items: center;
    width: 100%;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .artist-modal__share {
        width: auto;
    }
}
.artist-modal__share-label {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: var(--white);
    margin: 0;
    flex-shrink: 0;
}
.artist-modal__share-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}
.artist-modal__share-icons li:not(:last-child) {
    margin-right: 12px;
    margin-left: 12px;
}
.artist-modal__share-icons li:first-child {
    margin-left: 0;
    margin-right: 12px;
}
.artist-modal__share-icons li:last-child {
    margin-right: 0;
    margin-left: 12px;
}
.artist-modal__share-icons li a {
    text-decoration: none;
    transition: 0.3s ease;
}
.artist-modal__share-icons li a i.fa-facebook {
    width: 22px;
    height: 22px;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    transition: 0.3s ease;
    color: var(--white);
    background-color: #0070f3;
}
.artist-modal__share-icons li a i.fa-whatsapp {
    width: 22px;
    height: 22px;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    transition: 0.3s ease;
    color: var(--white);
    background-color: #01b41f;
}
.artist-modal__share-icons li a i.fa-telegram-plane {
    width: 22px;
    height: 22px;
    font-size: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    transition: 0.3s ease;
    color: #00c3ff;
    background-color: var(--white);
}
.artist-modal__share-icons li a i.fa-x-twitter {
    width: 22px;
    height: 22px;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    transition: 0.3s ease;
    color: var(--white);
    background-color: #00c3ff;
}

.artist-modal__category {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
    color: var(--white);
    margin-bottom: 0;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .artist-modal__category {
        width: auto;
        height: auto;
    }
}
@media (max-width: 374px) {
    .artist-modal__category {
        font-size: 26px;
        font-weight: 700;
        line-height: 32px;
        width: 100%;
        height: auto;
    }
}

.artist-modal__gallery {
    border-left: 1px solid var(--white);
    border-radius: 0;
    margin-left: auto;
    height: auto;
    padding: 0 0 0 50px;
}
@media (max-width: 991px) {
    .artist-modal__gallery {
        border-left: none;
        border-top: 1px solid var(--white);
        padding: 25px 0 0;
    }
}
@media (max-width: 374px) {
    .artist-modal__gallery {
        border-left: none;
        padding: 0;
    }
}
.artist-modal__gallery .card-body {
    padding: 25px 0;
}
.artist-modal__gallery .artist-modal__gallery-item {
    position: relative;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
}
.artist-modal__gallery .artist-modal__gallery-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.artist-modal__description {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    flex-shrink: 0;
    padding-top: 25px;
}
@media (max-width: 991px) {
    .artist-modal__description {
        padding-top: 5px;
        padding-bottom: 25px;
    }
}

.modal-xl .modal-content {
    border-radius: 8px;
}

.auth-required-modal-content {
    background: var(--black);
    border: none;
    border-radius: 8px;
    color: var(--white);
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    position: relative;
}
@media (max-width: 575px) {
    .auth-required-modal-content {
        padding: 32px 16px;
        gap: 16px;
    }
}

.auth-required-modal__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: transparent;
    border: none;
    padding: 0;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.auth-required-modal__close:hover {
    opacity: 0.7;
    transform: rotate(90deg);
}
.auth-required-modal__close:active {
    transform: rotate(90deg) scale(0.9);
}
.auth-required-modal__close:focus {
    outline: none;
    box-shadow: none;
}
.auth-required-modal__close i {
    font-size: 20px;
}

.auth-required-modal-content .modal-header {
    position: relative;
    width: 100%;
    padding: 0;
    margin-bottom: 0;
}

.auth-required-modal-content .modal-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    width: 100%;
}
@media (max-width: 575px) {
    .auth-required-modal-content .modal-body {
        gap: 16px;
    }
}

.auth-required-modal__icon-wrapper {
    max-width: 263px;
    max-height: 264px;
    height: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 575px) {
    .auth-required-modal__icon-wrapper {
        max-width: 263px;
        max-height: 264px;
        height: 100%;
        width: 100%;
    }
}

.auth-required-modal__icon {
    width: 100%;
    height: 100%;
    display: block;
}

.auth-required-modal__text {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
    width: 100%;
}
@media (max-width: 575px) {
    .auth-required-modal__text {
        gap: 16px;
    }
}

.auth-required-modal__title {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 52px;
    font-weight: 800;
    line-height: 100%;
    color: var(--white);
    margin: 0;
    width: 100%;
    height: auto;
}
@media (max-width: 575px) {
    .auth-required-modal__title {
        font-size: 26px;
        font-weight: 800;
        line-height: 100%;
    }
}

.auth-required-modal__subtitle {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 100%;
    color: var(--white);
    margin-bottom: 25px;
    width: 100%;
}

.auth-required-modal__buttons {
    display: inline-flex;
    gap: 20px;
    width: 100%;
    flex-wrap: nowrap;
    padding: 25px 0;
}
@media (max-width: 575px) {
    .auth-required-modal__buttons {
        flex-wrap: nowrap;
    }
}
@media (max-width: 479px) {
    .auth-required-modal__buttons {
        flex-wrap: wrap;
    }
}
@media (max-width: 374px) {
    .auth-required-modal__buttons {
        flex-wrap: wrap;
    }
}

.artist-modal-dialog {
    max-width: 1340px;
}

.auth-required-modal-dialog {
    max-width: 846px;
}

.music-modal-content {
    background: var(--black);
    border: none;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
}
@media (max-width: 575px) {
    .music-modal-content {
        padding: 0;
    }
}

.music-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    background: transparent;
    border: none;
    padding: 0;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.music-modal__close:hover {
    opacity: 0.7;
    transform: rotate(90deg);
}
.music-modal__close:active {
    transform: rotate(90deg) scale(0.9);
}
.music-modal__close:focus {
    outline: none;
    box-shadow: none;
}
.music-modal__close i {
    font-size: 20px;
}

.music-modal__wrapper {
    display: flex;
    flex-direction: column;
    /*padding: 50px;*/
    gap: 20px;
}
@media (max-width: 575px) {
    .music-modal__wrapper {
        padding: 32px 16px;
        gap: 20px;
    }
}
@media (max-width: 374px) {
    .music-modal__wrapper {
        padding: 24px 16px;
        gap: 16px;
    }
}

.music-modal__portrait-wrapper {
    width: 100%;
    max-width: 100%;
    max-height: 530px;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

.music-modal__portrait {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.music-modal__info {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.music-modal__name {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 52px;
    font-weight: 600;
    line-height: normal;
    color: var(--white);
    margin: -150px auto 0;
}
@media (max-width: 575px) {
    .music-modal__name {
        font-size: 28px;
        margin: -55px auto 0;
    }
}
@media (max-width: 374px) {
    .music-modal__name {
        font-size: 24px;
    }
}

.music-modal__location {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 26px;
    font-weight: 400;
    line-height: normal;
    color: var(--white);
    margin: 0;
    opacity: 0.9;
}
@media (max-width: 575px) {
    .music-modal__location {
        font-size: 16px;
    }
}
@media (max-width: 374px) {
    .music-modal__location {
        font-size: 14px;
    }
}

.music-modal__youtube {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
}
@media (max-width: 575px) {
    .music-modal__youtube {
        padding: 10px 0;
    }
}
@media (max-width: 374px) {
    .music-modal__youtube {
        padding: 10px 0;
    }
}

.music-modal__youtube-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    transition: 0.3s ease;
}
.music-modal__youtube-link:hover {
    opacity: 0.8;
}

.music-modal__youtube-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.music-modal__youtube-text {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
}
@media (max-width: 374px) {
    .music-modal__youtube-text {
        font-size: 14px;
    }
}

.music-modal__youtube-iframe {
    width: 100%;
    height: 100%;
    max-height: 200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

.music-modal__youtube-iframe iframe {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: 8px;
}

.music-modal__player {
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}
@media (max-width: 374px) {
    .music-modal__player {
        padding: 12px;
        gap: 12px;
    }
}

.music-modal__player-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.music-modal__player-thumbnail img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.music-modal__player-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.music-modal__player-title {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 374px) {
    .music-modal__player-title {
        font-size: 14px;
    }
}

.music-modal__player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.music-modal__player-pause {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s ease;
}
.music-modal__player-pause:hover {
    opacity: 0.7;
}
.music-modal__player-pause:focus {
    outline: none;
}
.music-modal__player-pause i {
    font-size: 14px;
}
.music-modal__player-pause i.fa-play {
    margin-left: 2px;
}

.music-modal__player-progress {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.music-modal__player-progress-bar {
    height: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.music-modal__player-volume {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s ease;
}
.music-modal__player-volume:hover {
    opacity: 0.7;
}
.music-modal__player-volume:focus {
    outline: none;
}
.music-modal__player-volume i {
    font-size: 14px;
}

.music-modal__player-volume-slider {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.music-modal__player-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
}
.music-modal__player-volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.music-modal__description {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--white);
    margin: 0;
}
.music-modal__description p {
    margin: 0;
}
@media (max-width: 374px) {
    .music-modal__description {
        font-size: 14px;
    }
}

.music-modal__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 10px;
}

.music-modal__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.music-modal__contact-icon {
    font-size: 18px;
    color: var(--white);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.music-modal__contact-link {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s ease;
}
.music-modal__contact-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}
@media (max-width: 374px) {
    .music-modal__contact-link {
        font-size: 14px;
    }
}

.music-modal__footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.music-modal__footer-text {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    margin: 0;
    opacity: 0.8;
}
@media (max-width: 374px) {
    .music-modal__footer-text {
        font-size: 12px;
    }
}

.music-modal-dialog {
    max-width: 600px;
}
@media (max-width: 575px) {
    .music-modal-dialog {
        max-width: 100%;
    }
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    color: var(--black);
    margin-bottom: 8px;
    display: block;
}

.form-input-wrapper {
    position: relative;
    width: 100%;
}

.form-control {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid #f3f3f3;
    border-radius: 8px;
    padding: 8px 20px;
    height: 48px;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-control::-moz-placeholder {
    color: #adb1b5;
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 12px;
    font-weight: 400;
}
.form-control::placeholder {
    color: #adb1b5;
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 12px;
    font-weight: 400;
}
.form-control:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.form-control:disabled {
    background-color: #f3f3f3;
    cursor: not-allowed;
    opacity: 0.6;
}
.form-control:not(:-moz-placeholder) {
    border-color: rgba(0, 0, 0, 0.5);
}
.form-control:not(:placeholder-shown) {
    border-color: rgba(0, 0, 0, 0.5);
}

.form-password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #adb1b5;
    transition: color 0.3s ease;
}
.form-password-toggle:hover {
    color: var(--black);
}
.form-password-toggle:focus {
    outline: none;
}
.form-password-toggle i {
    font-size: 16px;
}

.form-select-wrapper {
    position: relative;
    width: 100%;
}
.form-select-wrapper::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 5px;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.form-select {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid #f3f3f3;
    border-radius: 8px;
    padding: 8px 40px 8px 20px;
    height: 48px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-select:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.form-select:disabled {
    background-color: #f3f3f3;
    cursor: not-allowed;
    opacity: 0.6;
}
.form-select option {
    color: var(--black);
    background-color: var(--white);
    padding: 8px;
}
.form-select option:disabled {
    color: #adb1b5;
}
.form-select:invalid {
    color: #adb1b5;
}
.form-select:not(:invalid) {
    border-color: rgba(0, 0, 0, 0.5);
}

.form-textarea {
    min-height: 140px;
    height: auto;
    padding: 20px;
    resize: vertical;
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}
.form-textarea::-moz-placeholder {
    color: #adb1b5;
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 12px;
    font-weight: 400;
}
.form-textarea::placeholder {
    color: #adb1b5;
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 12px;
    font-weight: 400;
}

.image-upload__wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.image-upload__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    border: none;
}

.image-upload__edit {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: 0.3s ease;
    z-index: 10;
}
.image-upload__edit.gallery--edit {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--white);
    transition: 0.3s ease;
}
.image-upload__edit.gallery--edit i {
    font-size: 18px;
    color: var(--black);
    transition: 0.3s ease;
}
.image-upload__edit.gallery--edit:hover {
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s ease;
}
.image-upload__edit.gallery--edit:hover i {
    color: var(--white);
    transition: 0.3s ease;
}
.image-upload__edit:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}
.image-upload__edit i {
    font-size: 12px;
    color: var(--white);
}

.image-upload__empty {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    background: var(--black);
    border-radius: 8px;
    height: 100%;
    cursor: pointer;
    transition: 0.3s ease;
}
.image-upload__empty:hover {
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s ease;
}
.image-upload__empty:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

.image-upload__empty-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.image-upload__empty i {
    width: 40px;
    height: 40px;
    font-size: 40px;
    color: #adb1b5;
    transform: scale(1);
    transition: 0.3s ease;
}
.image-upload__empty:hover i {
    color: var(--white);
    transform: scale(1.1);
    transition: 0.3s ease;
}

.image-upload__input {
    display: none;
}

.avatar-upload {
    position: relative;
    display: inline-block;
}
.avatar-upload .image-upload__wrapper {
    position: relative;
    display: inline-block;
}
.avatar-upload .image-upload__image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.gallery-upload-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}
.gallery-upload-item .image-upload__image {
    border-radius: 8px;
}
.gallery-upload-item .image-upload__edit {
    bottom: 8px;
    right: 8px;
}
.gallery-upload-item .image-upload__edit.gallery--edit {
    bottom: 20px;
    right: 20px;
}

.home-hero {
    background: var(--black);
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
}
@media (max-width: 767px) {
    .home-hero {
        min-height: calc(100vh - 130px);
        padding: 60px 0;
    }
}
@media (max-width: 374px) {
    .home-hero {
        min-height: calc(100vh - 110px);
        padding: 40px 0;
    }
}
.home-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    text-align: center;
    width: 100%;
}
@media (max-width: 767px) {
    .home-hero__content {
        max-width: 100%;
        padding: 0 20px;
    }
}
.home-hero__title {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 52px;
    font-weight: 800;
    line-height: normal;
    color: var(--white);
    margin: 0;
    text-align: center;
}
@media (max-width: 767px) {
    .home-hero__title {
        font-size: 42px;
    }
}
@media (max-width: 575px) {
    .home-hero__title {
        font-size: 36px;
    }
}
@media (max-width: 374px) {
    .home-hero__title {
        font-size: 28px;
    }
}
.home-hero__subtitle {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 30px;
    font-weight: 500;
    line-height: normal;
    color: var(--white);
    margin: 0;
    text-align: center;
}
@media (max-width: 767px) {
    .home-hero__subtitle {
        font-size: 24px;
    }
}
@media (max-width: 575px) {
    .home-hero__subtitle {
        font-size: 20px;
    }
}
@media (max-width: 374px) {
    .home-hero__subtitle {
        font-size: 18px;
    }
}
.home-hero__button-wrapper {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
}
@media (max-width: 374px) {
    .home-hero__button-wrapper {
        max-width: 100%;
        padding: 0 20px;
    }
}
.home-hero__button {
    width: 100%;
    height: auto;
    padding: 28px 0;
    background: rgba(0, 224, 234, 0.1);
    border: 3px solid #00e0ea;
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0px 0px 10px 0px inset rgba(0, 224, 234, 0.25);
    transition: 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.home-hero__button:hover {
    background: rgba(0, 224, 234, 0.2);
    box-shadow: 0px 0px 15px 0px inset rgba(0, 224, 234, 0.35);
    border-color: #00e0ea;
    color: var(--white);
}
.home-hero__button:active {
    background: rgba(0, 224, 234, 0.15);
    box-shadow: 0px 0px 8px 0px inset rgba(0, 224, 234, 0.2);
}
.home-hero__button:focus {
    outline: none;
    box-shadow: 0px 0px 15px 0px inset rgba(0, 224, 234, 0.35), 0 0 0 2px rgba(0, 224, 234, 0.3);
}
@media (max-width: 374px) {
    .home-hero__button {
        font-size: 14px;
        padding: 12px 0;
    }
}

.categories-section {
    background: var(--black);
    padding: 100px 0 80px;
    min-height: calc(100vh - 150px);
}
@media (max-width: 767px) {
    .categories-section {
        padding: 80px 0 60px;
    }
}
@media (max-width: 374px) {
    .categories-section {
        padding: 60px 0 40px;
    }
}
.categories-section__grid {
    width: 100%;
}

.category-card {
    border-radius: 30px;
    padding: 50px 20px;
    min-height: 293px;
    aspect-ratio: 433px/293px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-decoration: none;
    transition: 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}
@media (max-width: 767px) {
    .category-card {
        padding: 40px 15px;
    }
}
@media (max-width: 575px) {
    .category-card {
        padding: 35px 10px;
        gap: 15px;
    }
}
@media (max-width: 374px) {
    .category-card {
        padding: 30px 5px;
        gap: 15px;
    }
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
}
.category-card:active {
    transform: translateY(-2px);
    transition: 0.15s ease;
}
.category-card__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    flex-shrink: 0;
}
@media (max-width: 575px) {
    .category-card__icon-wrapper {
        height: 70px;
    }
}
@media (max-width: 374px) {
    .category-card__icon-wrapper {
        height: 60px;
    }
}
.category-card__icon {
    width: auto;
    height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.category-card__title {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 42px;
    font-weight: 600;
    line-height: normal;
    color: var(--white);
    text-align: center;
    margin: 0;
    width: 100%;
}
.category-card__title p {
    margin: 0;
    line-height: 1.2;
}
.category-card__title p:not(:last-child) {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .category-card__title {
        font-size: 36px;
    }
}
@media (max-width: 575px) {
    .category-card__title {
        font-size: 32px;
    }
}
@media (max-width: 374px) {
    .category-card__title {
        font-size: 28px;
    }
}

.register-section {
    padding: 50px 0 100px;
}
@media (max-width: 575px) {
    .register-section {
        padding: 50px 0 100px;
    }
}

.register-title {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 25px;
    font-weight: 800;
    line-height: 100%;
    color: var(--black);
    text-align: center;
    margin-bottom: 113px;
    white-space: nowrap;
}
@media (max-width: 575px) {
    .register-title {
        font-size: 19px;
        margin-bottom: 50px;
    }
}
@media (max-width: 374px) {
    .register-title {
        font-size: 19px;
        margin-bottom: 30px;
    }
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.forgot-password-link {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    color: #adb1b5;
    text-decoration: none;
    transition: color 0.3s ease;
}
.forgot-password-link:hover {
    color: var(--black);
    text-decoration: underline;
}

.register-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 10px 0;
}

.register-divider-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    width: 50%;
    margin: 0 auto;
    height: 1px;
    background: #f3f3f3;
    transform: translateY(-50%);
    z-index: 0;
}

.register-divider-text {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 0;
    color: #adb1b5;
    background: var(--white);
    padding: 5px 12px;
    position: relative;
    z-index: 1;
}

.register-social {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
@media (max-width: 374px) {
    .register-social {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.register-login-link {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
    color: #adb1b5;
    text-align: center;
    margin: 0;
    padding-top: 0;
}
.register-login-link a {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}
.register-login-link a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.contacts-section {
    padding: 50px 0 100px;
    background: var(--white);
}
@media (max-width: 575px) {
    .contacts-section {
        padding: 24px 0 32px;
    }
}

.contacts-title {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 25px;
    font-weight: 700;
    line-height: 100%;
    color: var(--black);
    text-align: center;
    margin-bottom: 72px;
    white-space: nowrap;
}
@media (max-width: 575px) {
    .contacts-title {
        font-size: 60px;
        margin-bottom: 50px;
    }
}
@media (max-width: 374px) {
    .contacts-title {
        font-size: 40px;
        margin-bottom: 30px;
    }
}

.contacts-cards {
    margin-bottom: 100px;
}
@media (max-width: 575px) {
    .contacts-cards {
        margin-bottom: 50px;
    }
}

.contact-card {
    background: #f3f3f3;
    border-radius: 8px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    width: 100%;
}
@media (max-width: 575px) {
    .contact-card {
        height: auto;
        min-height: 232px;
        padding: 30px 20px;
    }
}
@media (max-width: 374px) {
    .contact-card {
        padding: 30px 20px;
    }
}

.contact-card__icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--black);
    border-radius: 50%;
}
.contact-card__icon i {
    font-size: 14px;
    color: var(--white);
    line-height: 1;
}

.contact-card__title {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 20px;
    font-weight: 700;
    line-height: 100%;
    color: var(--black);
    margin: 0;
    white-space: nowrap;
}

.contact-card__text {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    color: #adb1b5;
    margin: 0;
    max-width: 310px;
    width: 100%;
}

.contacts-map {
    width: 100%;
    max-width: 1440px;
    height: 500px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
@media (max-width: 575px) {
    .contacts-map {
        height: 400px;
        margin-bottom: 50px;
    }
}
@media (max-width: 374px) {
    .contacts-map {
        height: 300px;
        margin-bottom: 30px;
    }
}

.contacts-map__wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contacts-map__iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(100%);
    mix-blend-mode: luminosity;
}

.contacts-form-wrapper {
    position: relative;
}
.contacts-form {
    background: #f3f3f3;
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    margin: 0 auto;
}
@media (max-width: 575px) {
    .contacts-form {
        padding: 30px 20px;
        max-width: 100%;
    }
}
@media (max-width: 374px) {
    .contacts-form {
        padding: 20px 16px;
    }
}

.contacts-form__fields {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.profile-section {
    padding: 50px 0 100px;
    background: var(--white);
}
@media (max-width: 575px) {
    .profile-section {
        padding: 30px 0 50px;
    }
}

.profile-sidebar {
    background: #f3f3f3;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 0px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 767px) {
    .profile-sidebar {
        margin-bottom: 30px;
        min-height: auto;
    }
}

.profile-sidebar__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
    border-bottom: none;
    margin-bottom: 20px;
}
@media (max-width: 575px) {
    .profile-sidebar__header {
        flex-direction: column;
        text-align: center;
    }
}

.profile-sidebar__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.profile-sidebar__avatar img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.profile-sidebar__name {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

.profile-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}
@media (max-width: 575px) {
    .profile-sidebar__nav {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
    }
    .profile-sidebar__nav::-webkit-scrollbar {
        width: 5px;
        height: 5px;
        border-radius: 10px;
    }
    .profile-sidebar__nav::-webkit-scrollbar-track {
        background: #f3f3f3;
    }
    .profile-sidebar__nav::-webkit-scrollbar-thumb {
        background: #adb1b5;
    }
}

.profile-sidebar__nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    text-decoration: none;
    color: #adb1b5;
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    border-radius: 8px;
    transition: 0.3s ease;
}
.profile-sidebar__nav-item:first-child {
    border-radius: 8px;
}
.profile-sidebar__nav-item:last-child {
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}
.profile-sidebar__nav-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    background: transparent;
    border-radius: 8px;
    transition: 0.3s ease;
}
.profile-sidebar__nav-item:hover {
    color: var(--black);
    background: rgba(0, 0, 0, 0.05);
}
.profile-sidebar__nav-item:hover i {
    background: #F3F3F3;
    transition: 0.3s ease;
}
.profile-sidebar__nav-item.active {
    background: var(--white);
    color: var(--black);
}
.profile-sidebar__nav-item.active i {
    background: #F3F3F3;
    transition: 0.3s ease;
}

.profile-content {
    background: #f3f3f3;
    border-radius: 8px;
    padding: 20px;
}
@media (max-width: 575px) {
    .profile-content {
        padding: 20px 16px;
    }
}

.profile-content__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 45px;
    position: relative;
}
@media (max-width: 575px) {
    .profile-content__header {
        flex-direction: column;
        text-align: center;
    }
}

.profile-content__avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.profile-content__title {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
    color: var(--black);
    margin: 0;
}

.about-section {
    padding: 50px 0 100px;
    background: var(--white);
}
@media (max-width: 575px) {
    .about-section {
        padding: 30px 0 50px;
    }
}
@media (max-width: 374px) {
    .about-section {
        padding: 24px 0 40px;
    }
}

.about-title {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 25px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 71px;
    white-space: nowrap;
}
@media (max-width: 575px) {
    .about-title {
        font-size: 60px;
        margin-bottom: 50px;
    }
}
@media (max-width: 374px) {
    .about-title {
        font-size: 40px;
        margin-bottom: 30px;
        white-space: normal;
    }
}

.about-image {
    width: 100%;
    margin-bottom: 48px;
    border-radius: 8px;
    overflow: hidden;
    max-height: 424px;
    position: relative;
}
@media (max-width: 575px) {
    .about-image {
        margin-bottom: 40px;
        border-radius: 0;
    }
}
@media (max-width: 374px) {
    .about-image {
        margin-bottom: 30px;
        border-radius: 0;
        max-height: 424px;
        min-height: 424px;
        height: 100%;
    }
}
.about-image img {
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
@media (max-width: 374px) {
    .about-image img {
        min-height: 424px;
        height: 100%;
    }
}

.about-subtitle {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 52px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 33px;
}
@media (max-width: 575px) {
    .about-subtitle {
        font-size: 40px;
        margin-bottom: 25px;
    }
}
@media (max-width: 374px) {
    .about-subtitle {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

.about-description {
    width: 100%;
    margin-bottom: 50px;
}
@media (max-width: 575px) {
    .about-description {
        margin-bottom: 40px;
    }
}
@media (max-width: 374px) {
    .about-description {
        margin-bottom: 30px;
    }
}

.about-description__text {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--black);
    margin: 0;
}
@media (max-width: 575px) {
    .about-description__text {
        font-size: 22px;
    }
}
@media (max-width: 374px) {
    .about-description__text {
        font-size: 18px;
    }
}

.notification-section {
    padding: 50px 0 100px;
    display: flex;
    align-items: center;
}
@media (max-width: 575px) {
    .notification-section {
        padding: 50px 0;
    }
}
@media (max-width: 374px) {
    .notification-section {
        padding: 30px 0;
    }
}

.notification-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
}
@media (max-width: 575px) {
    .notification-content {
        padding: 0 20px;
        gap: 40px;
    }
}
@media (max-width: 374px) {
    .notification-content {
        gap: 30px;
    }
}

.notification-icon {
    max-width: 190px;
    max-height: 138px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
@media (max-width: 374px) {
    .notification-icon {
        max-width: 150px;
        max-height: 138px;
    }
}
.notification-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}
.notification-icon.not-found {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}

.notification-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
}
@media (max-width: 374px) {
    .notification-text {
        gap: 20px;
    }
}

.notification-title {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 52px;
    font-weight: 800;
    color: var(--black);
    margin: 0;
    width: 100%;
}
@media (max-width: 575px) {
    .notification-title {
        font-size: 42px;
    }
}
@media (max-width: 374px) {
    .notification-title {
        font-size: 32px;
    }
}

.notification-message {
    font-family: var(--font-family, "Montserrat", sans-serif, Arial, sans-serif);
    font-size: 16px;
    font-weight: 500;
    padding: 0 80px;
    color: #adb1b5;
    margin: 0;
    width: 100%;
}
@media (max-width: 575px) {
    .notification-message {
        padding: 0;
    }
}
@media (max-width: 374px) {
    .notification-message {
        font-size: 16px;
        padding: 0;
    }
}

.notification-button {
    width: 100%;
}
.notification-button .btn {
    height: 58px;
    font-weight: 600;
    font-size: 16px;
}
@media (max-width: 374px) {
    .notification-button .btn {
        height: 50px;
        font-size: 14px;
    }
}
/*# sourceMappingURL=main.css.map */

/* ================================
   AUTH DEMO MODAL – ARTIST DEMO
   ================================ */

.artist-demo-modal .artist-modal-content {
    background-color: #050608;
    border-radius: 24px;
    border: none;
    padding-bottom: 24px;
}

.artist-demo__title {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
}

.artist-demo__wrapper {
    padding-bottom: 8px;
}

.artist-demo__meta {
    font-size: 16px;
    font-weight: 400;
    color: #ececec;
    opacity: 0.85;
}

/* Profile Picture Square */
.artist-demo__square {
    width: 100%;
    min-height: 260px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.artist-demo__square-text {
    display: block;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
}

/* Artwork cards row */
.artist-demo__artworks {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Single artwork card */
.artist-demo__art-card {
    flex: 1 1 0;
    min-width: 180px;
    min-height: 140px;
    border-radius: 18px;
    background-color: #15171c;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
}

.artist-demo__art-card span {
    display: block;
    font-size: 16px;
    line-height: 1.4;
    color: #e1e1e1;
    opacity: 0.9;
}

/* Description */
.artist-modal__description p {
    font-size: 15px;
    line-height: 1.6;
    color: #d8d8d8;
    margin-top: 8px;
    word-break: break-word;
}

/* Auth buttons (Login / Register) */
.artist-demo__auth {
    margin-top: 16px;
    gap: 8px;
}

/* Demo auth buttons */
.btn--demo-auth {
    padding-inline: 22px;
    padding-block: 10px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
}

/* Close icon */
.artist-modal__close {
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 20px;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 992px) {
    .artist-demo__title {
        font-size: 22px;
    }

    .artist-demo__square {
        min-height: 220px;
        margin-bottom: 12px;
    }
}

@media (max-width: 576px) {
    .artist-demo-modal .modal-dialog {
        margin: 0 12px;
    }

    /* Başlıq və meta mərkəzdə */
    .artist-demo__meta,
    .artist-demo__title {
        text-align: center;
    }

    /* Kartları tək sütun + tam mərkəz */
    .artist-demo__artworks {
        flex-direction: column;
        align-items: center;
    }

    .artist-demo__art-card {
        min-width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Description mərkəzdə */
    .artist-modal__description p {
        text-align: center;
    }

    /* Düymələri mərkəzləşdir + full width (istəsən width-i silə bilərsən) */
    .artist-demo__auth {
        justify-content: center !important;
    }

    .btn--demo-auth {
        width: 100%;
        text-align: center;
    }
}


/* Gallery boş olanda – demo artwork kartları */
.artist-demo__artworks--empty {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.artist-demo__art-card {
    flex: 0 0 30%;
    min-height: 130px;
    border-radius: 12px;
    background: #181920;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #a1a1a8;
}

@media (max-width: 767.98px) {
    .artist-demo__artworks--empty {
        flex-wrap: wrap;
    }

    .artist-demo__art-card {
        flex: 0 0 48%;
    }
}

/* === Demo modal: artworks cards should be SQUARE === */
.artist-demo__artworks{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px; /* istəsən artırıb-azalda bilərsən */
}

.artist-demo__art-card{
    /* square shape */
    aspect-ratio: 1 / 1;

    /* center text */
    display: flex;
    align-items: center;
    justify-content: center;

    /* current style (adjust to your theme) */
    border-radius: 14px;
    padding: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.artist-demo__art-card span{
    opacity: .85;
    line-height: 1.25;
}

/* Responsive: on small screens stack them nicely */
@media (max-width: 991.98px){
    .artist-demo__artworks{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px){
    .artist-demo__artworks{
        grid-template-columns: 1fr;
    }
}


.password-live-check__strength {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    opacity: .9;
}

.password-live-check__list {
    list-style: none;
    padding-left: 0;
    margin-top: 6px;
    font-size: 13px;
}

.password-live-check__list li {
    padding-left: 18px;
    position: relative;
    margin: 4px 0;
    opacity: .9;
}

.password-live-check__list li.is-valid::before {
    content: "✓";
    position: absolute;
    left: 0;
}

.password-live-check__list li.is-invalid::before {
    content: "✕";
    position: absolute;
    left: 0;
}


/* Mobile logout on profile card */
.profile-sidebar__header {
    position: relative;
}

.profile-sidebar__logout {
    position: absolute;
    top: 12px;
    right: 12px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    text-decoration: none;

    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.08);
}

.profile-sidebar__logout i {
    font-size: 18px;
}

.form-input-wrapper {
    position: relative;
}

.form-input-wrapper .form-control {
    padding-right: 48px; /* icon üçün yer */
}

.form-password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;

    background: transparent;
    border: 0;
    padding: 0;
    line-height: 1;
    cursor: pointer;
}

.invalid-feedback {
    margin-top: 6px;
    line-height: 1.2;
}

/* Remove Bootstrap invalid icon (exclamation) */
.form-control.is-invalid,
.was-validated .form-control:invalid {
    background-image: none !important;
    padding-right: 48px; /* eye icon üçün yer qalsın */
}

.topbar__logo{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
}

.topbar__logo-link{
    color:#fff;
    text-decoration:none;
    font-weight:800;
    font-size:clamp(26px, 3.2vw, 36px);
    line-height:1.05;
    letter-spacing:-0.02em;
    text-transform:none;
    text-shadow:0 2px 18px rgba(0,0,0,.35);
}

.topbar__logo-link:hover{
    opacity:.92;
}

.topbar__logo-tagline{
    color:rgba(255,255,255,.85);
    font-style:italic;
    font-weight:400;
    font-size:clamp(14px, 1.4vw, 18px);
    line-height:1.15;
    margin:0;
    margin-left: -15px;
    margin-top: 5px;
    text-shadow:0 2px 14px rgba(0,0,0,.25);
}

.topbar__container {
    padding: 0 30px;
}


/* =========================
   Header main link look
   ========================= */

.header-nav .header-nav__item {
    position: relative;
}

.header-nav .header-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px; /* 14px -> 6px : + ikonunu soze yaxin edir */
    padding: 14px 16px;
    color: #fff !important;
    text-decoration: none !important;
    letter-spacing: 0.2px;
}

/* Bootstrap dropdown arrow OFF */
.header-nav .dropdown-toggle::after {
    display: none !important;
}

/* "Categories +": plus (ince + yaxin) */
.header-nav .header-nav__plus {
    font-size: 20px;     /* 22px -> 20px */
    font-weight: 400;    /* 700 -> 400 : daha ince */
    line-height: 1;
    opacity: 0.9;
    transform: translateY(-1px);
    margin-right: 2px;   /* text-e daha yaxin */
}

/* underline bar */
.header-nav .header-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 4px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
    box-shadow: 0 2px 0 rgba(255,255,255,0.15);
}

/* underline show on hover/active */
.header-nav .header-nav__item:hover > .header-nav__link::after,
.header-nav .header-nav__link.active::after {
    transform: scaleX(1);
}

/* =========================
   Dropdown menu (DARK)
   ========================= */

.header-nav .header-nav__menu.dropdown-menu {
    display: none;
    position: absolute;

    /* GAP-i azaldiriq (dropdown daha yaxin olur) */
    top: calc(100% + 4px); /* istesen 0px da ede bilersen */
    left: 0;

    min-width: 260px;
    padding: 10px 0;
    margin: 0;

    background: rgba(10, 10, 10, 0.96) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.55);

    z-index: 2000;
}

/* Hover open (desktop) */
.header-nav .header-nav__dropdown:hover > .header-nav__menu {
    display: block;
}

/* --- Hover bridge: aradaki bosluqa gelende baglanmasin --- */
.header-nav .header-nav__dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 6px; /* top gap (4px) + biraz ehtiyat */
}

/* Dropdown items style */
.header-nav .header-nav__menu .header-nav__link {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 10px 14px;
    color: #fff !important;
}

/* Remove underline in dropdown */
.header-nav .header-nav__menu .header-nav__link::after {
    display: none !important;
}

/* Hover state in dropdown */
.header-nav .header-nav__menu .header-nav__link:hover {
    background: rgba(255,255,255,0.08);
}

/* =========================
   Nested dropdown (sub-menu to the right)
   ========================= */

.header-nav .header-nav__menu .header-nav__dropdown {
    position: relative;
}

.header-nav .header-nav__menu .header-nav__dropdown > .header-nav__menu {
    top: 0;
    left: 100%;
    margin-left: 8px;
}

.header-nav .header-nav__menu .header-nav__dropdown:hover > .header-nav__menu {
    display: block;
}

/* Plus in submenu items smaller + ince */
.header-nav .header-nav__menu .header-nav__plus {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.8;
}

/* sentinel */
.squares-sentinel{
    grid-column: 1 / -1;
    min-height: 1px;
}
