:root {
    --black: #000;
    --white: #fff;
    --dark-grey: #141414;
    --dark-grey2: #222;
    --green: #a8f03c;
    --main-red: #c81a1a;
    --dark-red: #931213;
    --accent: #ac182c;
    --light: #e0e2e4;

    --main-font: 'DrukCyr', 'Arial', sans-serif;
    --second-font: 'Headliner', 'Arial', sans-serif;
    --third-font: 'FuelProFixed', 'Arial', sans-serif;
}

/* Fonts */

@font-face {
    font-family: DrukCyr;
    src:
        impact,
        url(../fonts/DrukCyr-Medium.woff2) format('woff2'),
        url(../fonts/DrukCyr-Medium.woff) format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: DrukCyr;
    src:
        impact,
        url(../fonts/DrukCyr-Bold.woff2) format('woff2'),
        url(../fonts/DrukCyr-Bold.woff) format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: Headliner;
    src:
        impact,
        url(../fonts/Headliner.woff2) format('woff2'),
        url(../fonts/Headliner.woff) format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: FuelProFixed;
    src:
        impact,
        url(../fonts/Fuelprofixed.woff2) format('woff2'),
        url(../fonts/Fuelprofixed.woff) format('woff');
    font-weight: 400;
    font-style: normal;
}

*,
::after,
::before {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: var(--third-font);
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    background-color: var(--black);
}

img {
    display: block;
    height: auto;
    width: 100%;
    object-fit: cover;
}

.visually-hidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.wrapper {
    max-width: 1440px;
    padding: 0 40px;
    margin: 0 auto;
}
@media (max-width: 600px) {
    .wrapper {
        padding: 0 15px;
    }
}

.margin-bottom {
    margin-bottom: 120px;
}
@media (max-width: 1024px) {
    .margin-bottom {
        margin-bottom: 80px;
    }
}
@media (max-width: 768px) {
    .margin-bottom {
        margin-bottom: 40px;
    }
}

h2 {
    font-family: var(--second-font);
    font-size: 100px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 70px;
}
@media (max-width: 1024px) {
    h2 {
        font-size: 70px;
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    h2 {
        font-size: 40px;
    }
}
@media (max-width: 600px) {
    h2 {
        margin-bottom: 20px;
    }
}

/* Arrow to top */

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--green);
    color: var(--dark-grey);
    border: 1px solid rgba(0, 0, 0, 0.143);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    opacity: 0;
    visibility: hidden;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.3);
    transition: 0.3s;
    z-index: 10000;
}
.scroll-to-top:hover {
    transform: scale(1.1);
}
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Main banner */

.main-banner {
    position: relative;
}

/* Link ticket */

.link-ticket {
    font-family: var(--main-font);
    font-size: 40px;
    color: var(--white);
    background-color: var(--main-red);
    text-transform: uppercase;
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 16px 24px;
}
.link-ticket:hover {
    background-color: var(--dark-red);
}
.link-ticket:active,
.link-ticket:focus {
    background-color: var(--accent);
}
@media (max-width: 1024px) {
    .link-ticket {
        font-size: 30px;
        padding: 12px 20px;
    }
}
@media (max-width: 768px) {
    .link-ticket {
        font-size: 22px;
    }
}
@media (max-width: 390px) {
    .link-ticket {
        font-size: 18px;
        padding: 8px 15px;
    }
}
/* Header */

.header {
    background-color: var(--black);
    position: relative;
    transition:
        transform 0.3s ease-in-out,
        background-color 0.3s ease-in-out;
    transform: translateY(0);
    z-index: 10000;
}
.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.header__nav-wrapper {
    width: 100%;
}
.header__logo-wrap {
    max-width: 100px;
}
.header__logo {
    display: block;
    width: 100%;
}
.header__menu-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}
@-webkit-keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
@media (max-width: 1440px) {
    .header__logo-wrap {
        max-width: 60px;
    }
}
@media (max-width: 1024px) {
    .header__menu-wrap .link-ticket {
        font-size: 28px;
        padding: 12px 20px;
    }
}
@media (max-width: 768px) {
    .header__menu-wrap {
        padding: 16px 0;
    }
    .header__logo-wrap {
        max-width: 50px;
    }
    .header__menu-wrap .link-ticket {
        font-size: 20px;
        padding: 8px 15px;
    }
}
@media (max-width: 425px) {
    .header__logo-wrap {
        max-width: 30px;
    }
    .header__wrapper {
        gap: 10px;
    }
}

/* Burger */

.burger {
    display: none;
    width: 40px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    background: 0 0;
    border: none;
    cursor: pointer;
}
@media (max-width: 768px) {
    .burger {
        display: flex;
        width: 50px;
        order: 2;
        z-index: 99999;
    }
    .burger span {
        display: flex;
        gap: 4px;
        height: 4px;
        width: 100%;
        background-color: var(--white);
        border-radius: 2px;
        transition: 0.3s;
    }
    .burger.open span:nth-child(1) {
        transform: translateY(20px) rotate(45deg);
    }
    .burger.open span:nth-child(2) {
        opacity: 0;
    }
    .burger.open span:nth-child(3) {
        transform: translateY(6px) rotate(-45deg);
    }
}
@media (max-width: 425px) {
    .container {
        padding: 0 10px;
    }
    .burger {
        width: 40px;
    }
}

/* Nav */

.nav__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.nav__link {
    font-size: 40px;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 2.2px;
    transition: all 0.5s ease;
    padding: 50px 20px;
}
.nav__link:hover {
    color: var(--green);
}
@media (max-width: 1024px) {
    .nav__list {
        gap: 5px;
    }
    .nav__link {
        font-size: 28px;
        padding: 20px 10px;
    }
}
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 40%;
        background-color: var(--black);
        transition: right 0.3s;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
        margin-right: 0;
        border-bottom-left-radius: 40px;
    }
    .nav.active {
        right: 0;
    }
    .nav__wrapper {
        width: 100%;
    }
    .nav__list {
        display: flex;
        flex-direction: column;
        gap: 0;
        text-align: right;
        padding-right: 110px;
    }
    .nav__link {
        font-size: 24px;
        display: block;
        text-align: left;
        padding: 20px 0;
    }
}
@media (max-width: 425px) {
    .nav {
        width: 50%;
    }
    .nav__list {
        padding-right: 0;
        width: 80%;
    }
    .nav__link {
        font-size: 18px;
    }
}
@media (max-width: 320px) {
    .nav {
        width: 60%;
    }
}

/* Tour */

.tour__list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.tour__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tour__item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding-bottom: 25px;
}
.tour__block {
    display: flex;
    align-items: center;
    gap: 40px;
}
.tour__date-wrap {
    display: flex;
    flex-direction: column;
    color: var(--main-red);
    font-size: 40px;
}
.tour__place {
    display: flex;
    flex-direction: column;
}
.tour__city,
.tour__date {
    font-size: 70px;
}
.tour__club {
    font-size: 40px;
    color: var(--green);
}
.tour__link-social {
    max-width: 83px;
    transition: all 0.3s ease;
}
.tour__link-social:hover {
    transform: scale(1.05);
}
.tour__item.past-concert {
    opacity: 0.5;
    pointer-events: none;
}
@media (max-width: 1024px) {
    .tour__city,
    .tour__date {
        font-size: 50px;
    }
    .tour__date-wrap,
    .tour__club {
        font-size: 30px;
    }
    .tour__link-social {
        max-width: 62px;
    }
    .tour__block {
        gap: 24px;
    }
}
@media (max-width: 768px) {
    .tour__city,
    .tour__date {
        font-size: 30px;
    }
    .tour__date-wrap,
    .tour__club {
        font-size: 24px;
    }
    .tour__link-social {
        max-width: 52px;
    }
    .tour__item:not(:last-child) {
        padding-bottom: 16px;
    }
    .tour__list {
        gap: 16px;
    }
}
@media (max-width: 500px) {
    .tour__item {
        flex-direction: column;
        gap: 16px;
    }
    .tour__date-wrap,
    .tour__place {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    .tour__city,
    .tour__date {
        font-size: 24px;
    }
    .tour__block {
        gap: 12px;
    }
}
@media (max-width: 390px) {
    .tour__date-wrap,
    .tour__club,
    .tour__date,
    .tour__city {
        font-size: 18px;
    }

    .tour__link-social {
        max-width: 32px;
    }
}
@media (max-width: 375px) {
    .tour__block:first-child {
        flex-direction: column;
        gap: 16px;
    }
}

/* Info-links */

.info-links {
    position: relative;
}
.info-links__blocks-music {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 50px;
}
.info-links__music {
    transition: transform 0.3s ease-in;
    max-width: 500px;
}
.info-links__music:hover {
    transform: scale(1.03);
}
.info-links__img {
    display: block;
    width: 100%;
}
@media (max-width: 1200px) {
    .info-links__blocks-music {
        gap: 30px;
    }
}
@media (max-width: 1024px) {
    .info-links__blocks-music {
        gap: 15px;
    }
}
@media (max-width: 500px) {
    .info-links__blocks-music {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 375px) {
    .info-links__blocks-music {
        grid-template-columns: 1fr;
    }
    .info-links__music {
        max-width: 240px;
    }
}

/* Socials-links */

.socials-links__blocks-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.socials-links__social {
    max-width: 100px;
    flex-shrink: 0;
}
@media (max-width: 1024px) {
    .socials-links__social {
        max-width: 80px;
    }
}
@media (max-width: 768px) {
    .socials-links__social {
        max-width: 60px;
    }
}
@media (max-width: 425px) {
    .socials-links__social {
        max-width: 40px;
    }
}

/* Booking */

.booking__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.booking__links {
    position: relative;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.booking__links::after,
.booking__links::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 20px;
    background-color: var(--white);
}
.booking__links::before {
    left: -100px;
}
.booking__links::after {
    right: -100px;
}
.booking__link {
    max-width: 120px;
    transition: transform 0.3s ease-in;
}
.booking__link:hover {
    transform: scale(1.05);
}
.booking__icon-link {
    width: 100%;
}
.booking__blocks {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.booking__email {
    font-size: 24px;
    color: var(--light);
    transition: 0.4s;
    letter-spacing: 2.2px;
}
.booking__email:hover {
    color: var(--main-red);
    text-decoration: underline;
}
.booking__email:active,
.booking__email:focus {
    color: var(--accent);
    text-decoration: underline;
}
@media (max-width: 1200px) {
    .booking__links {
        margin-bottom: 20px;
    }
    .booking__links::after,
    .booking__links::before {
        width: 60px;
        height: 10px;
    }
    .booking__links::before {
        left: -70px;
    }
    .booking__links::after {
        right: -70px;
    }
    .booking__link {
        max-width: 80px;
    }
}
@media (max-width: 1024px) {
    .booking__links {
        text-align: center;
        gap: 10px;
    }
    .booking__links::after,
    .booking__links::before {
        width: 34px;
        height: 6px;
    }
    .booking__links::before {
        left: -40px;
    }
    .booking__links::after {
        right: -40px;
    }
}
@media (max-width: 768px) {
    .booking__link {
        max-width: 60px;
    }
}
@media (max-width: 425px) {
    .booking__wrapper {
        gap: 10px;
        margin-bottom: 20px;
    }
    .booking__links {
        margin-bottom: 10px;
    }
    .booking__links::after,
    .booking__links::before {
        width: 22px;
        height: 4px;
    }
    .booking__links::before {
        left: -30px;
    }
    .booking__links::after {
        right: -30px;
    }
    .booking__link {
        max-width: 50px;
    }
    .booking__email {
        font-size: 18px;
    }
}

/* Footer */

.footer {
    background-color: var(--black);
    color: var(--light);
}
.footer__wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
}
.footer__content-block {
    display: flex;
    align-items: center;
    gap: 50px;
}
.footer__logo-wrap {
    flex: 1;
    max-width: 150px;
    justify-self: center;
}
.footer__title {
    font-size: 30px;
}
.footer__email-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__email-link {
    font-size: 26px;
    color: var(--main-red);
    letter-spacing: 2.2px;
}
.footer__email-link:hover {
    text-decoration: underline;
}
.footer__text {
    font-size: 16px;
    letter-spacing: 1.2px;
}
@media (max-width: 1440px) {
    .footer__wrapper {
        gap: 50px;
    }
}
@media (max-width: 1200px) {
    .footer__wrapper {
        gap: 30px;
    }
    .footer__text {
        font-size: 14px;
    }
}
@media (max-width: 1024px) {
    .footer__text {
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    .footer__wrapper {
        gap: 16px;
    }
}
@media (max-width: 425px) {
    .footer__wrapper {
        flex-direction: column;
        gap: 8px;
        padding-top: 15px;
        padding-bottom: 16px;
    }
    .footer__content-block {
        flex-direction: column;
        gap: 20px;
    }
}

/* Кнопка DOTA */
.dota-banner-btn {
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background-color: var(--main-red);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 18px 36px;
    font-family: var(--main-font), sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 30px rgba(200, 26, 26, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    white-space: nowrap;
}
.dota-banner-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 40px rgba(200, 26, 26, 0.8);
}
.dota-banner-btn .close-btn {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 30px;
    height: 30px;
    background: var(--dark-grey2);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.dota-banner-btn .close-btn:hover {
    background: #555;
}
.dota-banner-btn.hidden {
    display: none;
}

/* Контейнер баннера с относительным позиционированием */
.banner-wrapper {
    position: relative;
    width: 100%;
}

@media (max-width: 1024px) {
    .dota-banner-btn {
        right: 30px;
        padding: 14px 28px;
        font-size: 22px;
    }
}
@media (max-width: 768px) {
    .dota-banner-btn {
        right: 20px;
        padding: 12px 20px;
        font-size: 18px;
        border-radius: 10px;
    }
    .dota-banner-btn .close-btn {
        width: 26px;
        height: 26px;
        font-size: 16px;
        top: -10px;
        right: -10px;
    }
}
@media (max-width: 480px) {
    .dota-banner-btn {
        right: 10px;
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 8px;
    }
    .dota-banner-btn .close-btn {
        width: 22px;
        height: 22px;
        font-size: 12px;
        top: -8px;
        right: -8px;
    }
}