.hero {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% 10%;
    z-index: -1;
    filter: brightness(40%);
}

.title__hero {
    font-size: 40px;
    font-weight: 600;
}

.description__hero {
    margin-top: 30px;
    max-width: 70%;
    line-height: 1.5;
    margin: 0 auto;
}

.wrap {
    margin-top: 65px;
}

.description__section {
    margin-top: 25px;
    max-width: 650px;
    line-height: 1.5;
}

.offer__inner,
.for__artist__inner,
.advantages__iner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}

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

.offer__inner-item,
.for__artist__inner-item,
.advantages__iner-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    line-height: 1.5;
}

.description__text,
.text__section {
    margin-top: 25px;
    line-height: 1.5;
}

.gallery__artists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
    margin-top: 30px;
    max-width: 100%;
    padding: 0 10px;
}

.gallery__artists .artist {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    width: 100%;
    max-width: 200px;
    cursor: pointer;
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.gallery__artists .musician {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 40px;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery__artists .artist-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 900;
    font-size: 1.3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    writing-mode: vertical-lr;
    text-orientation: upright;
    text-align: center;
    white-space: nowrap;
}

.gallery__artists .artist:hover {
    z-index: 10;
}

.gallery__artists .artist:hover .musician {
    transform: translateY(-6px);
    filter: brightness(50%);
}

.gallery__artists .artist:hover .artist-name {
    opacity: 1;
}

.advantages h2 {
    text-align: center;
}

.description__section2 {
    text-align: center;
    margin: 0 auto;
    width: 50%;
    line-height: 1.5;
    margin-top: 25px;
}

.advantages__iner-text {
    text-align: left;
    margin: 0;
}

.subtitle__title {
    color: #00DDFF;
}

.advantages__iner {
    text-align: start;
}

.advantages__iner-item {
    margin-bottom: 30px;
}

.title__section2 {
    max-width: 50%;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto;
}

.btn {
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: 0.2s ease;
}

.btn--white {
    background: #fff;
    color: #000;
}

.btn--white:hover {
    opacity: 0.85;
}

.btn--blue {
    background: #00DDFF;
    color: #000;
}

.btn--blue:hover {
    background: #00c7e4;
}

.Btn {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.auth-modal {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
}

.auth-form input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 10px;
    background: #1f1f1f;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form input::placeholder {
    color: #9ca3af;
}

.auth-form input:focus {
    border-color: #00DDFF;
    box-shadow: 0 0 0 2px rgba(0, 221, 255, 0.15);
}

.auth-form .btn {
    margin-top: 8px;
    width: 100%;
}

.auth-switch {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #ccc;
}

.auth-switch button {
    background: none;
    border: none;
    color: #00DDFF;
    cursor: pointer;
    font-weight: 500;
    margin-left: 5px;
}

.auth-switch button:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .hero .description__hero {
        max-width: 90%;
        font-size: 16px;
    }

    .offer__inner,
    .for__artist__inner,
    .advantages__iner {
        flex-direction: column;
        gap: 30px;
    }

    .gallery__artists {
        flex-wrap: wrap;
        gap: 30px;
    }

    .gallery__artists .artist-name {
        font-size: 1rem;
    }

    .description__section,
    .description__section2,
    .title__section2 {
        max-width: 90%;
    }
}

@media (max-width: 992px) {
    .header__inner {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .menu-close {
        display: block;
    }

    .menu {
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100%;
        background: #191919;
        padding: 50px 20px;
        flex-direction: column;
        gap: 20px;
        transition: 0.3s;
        z-index: 999;
        overflow-y: auto;
    }

    .menu.active {
        left: 0;
    }

    .menu__list {
        flex-direction: column;
        gap: 20px;
    }

    .burger {
        display: flex;
    }

    .title__hero {
        font-size: 32px;
    }

    .Btn {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {

    .hero {
        height: 350px;
        padding: 40px 15px;
    }

    .title__hero {
        font-size: 28px;
    }

    .description__hero {
        font-size: 14px;
        max-width: 90%;
    }

    .gallery__artists {
        gap: 20px;
    }

    .gallery__artists .artist-name {
        font-size: 0.9rem;
    }

    .advantages__iner-item {
        gap: 10px;
    }

    footer {
        padding: 0 20px;
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .hero {
        height: 500px;
        padding: 30px 10px;
    }

    .title__hero {
        font-size: 24px;
    }

    .description__hero {
        font-size: 13px;
        line-height: 1.4;
        max-width: 95%;
    }

    .description__hero,
    .description__section,
    .description__section2,
    .title__section2 {
        font-size: 13px;
        line-height: 1.4;
    }

    .Btn {
        width: 100%;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .gallery__artists {
        flex-direction: column;
        align-items: center;
    }

    .gallery__artists {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }

    .gallery__artists .artist-name {
        font-size: 1rem;
    }

    .modal-content {
        padding: 18px;
        width: 95%;
    }

    .modal-title {
        font-size: 18px;
    }

    .modal-tracks li {
        font-size: 14px;
        padding: 10px;
    }
}