
@font-face {
    font-family: 'Neuzeit Grotesk';
    src: url('../fonts/NeuzeitGro-Bol.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neuzeit Grotesk';
    src: url('../fonts/NeuzeitGro-Reg.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Neuzeit Grotesk', Arial, sans-serif;
    background-color: #0A0313;
    color: #FFFFFF;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.landing-page {
    max-width: 1920px;
    margin: 0 auto;
    background-color: #0A0313;
}

.banner-section {
    width: 100%;
}

.banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.content-section {
    padding: 151px 20px;
    background-color: #0A0313;
}

.content-container {
    max-width: 1563px;
    margin: 0 auto;
}

.title-primary {
    font-family: 'Neuzeit Grotesk', Arial, sans-serif;
    font-weight: 700;
    font-size: 47px;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #FB4617;
    margin-bottom: 22px;
}

.title-secondary {
    font-family: 'Neuzeit Grotesk', Arial, sans-serif;
    font-weight: 400;
    font-size: 39px;
    line-height: 36px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 60px;
}

.content-container p {
    font-family: 'Neuzeit Grotesk', Arial, sans-serif;
    font-weight: 400;
    font-size: 29px;
    line-height: 36px;
    color: #FFFFFF;
    text-align: justify;
    margin-bottom: 32px;
}

.content-container p:last-child {
    margin-bottom: 0;
}

.expect-section {
    width: 100%;
    background-image: url('../img/live-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 100px;
}

.expect-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

.expect-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 10;
    margin-bottom: -80px;
}

.player-image {
    height: auto;
    max-width: none;
    width: auto;
    position: relative;
    transform: translateY(-80px);
}

.expect-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expect-title {
    font-family: 'Neuzeit Grotesk', Arial, sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 36px;
    letter-spacing: 0.02em;
    color: #FB4617;
    margin-bottom: 30px;
}

.expect-text {
    font-family: 'Neuzeit Grotesk', Arial, sans-serif;
    font-weight: 400;
    font-size: 29px;
    line-height: 36px;
    letter-spacing: 0;
    color: #A9A7AA;
}

.gallery-section {
    padding: 170px 0 146px 0;
    background-color: #0A0313;
}

.gallery-title {
    font-family: 'Neuzeit Grotesk', Arial, sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #FB4617;
    margin-bottom: 60px;
    padding: 0 20px;
}

.gallery-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-container {
    width: 100%;
    overflow: hidden;
    user-select: none;
}

.gallery-track {
    display: flex;
    gap: 45px;
    will-change: transform;
    padding-left: 22px;
    align-items: flex-end;
}

.gallery-item {
    flex-shrink: 0;
    width: 400px;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.03);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 66px;
}

.carousel-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #523575;
    transition: all 0.3s ease;
    padding: 0;
    border: none;
    outline: none;
}

.carousel-dot:hover {
    background-color: #6b4895;
}

.carousel-dot:focus {
    outline: none;
}

.carousel-dot.active {
    width: 26px;
    height: 26px;
    background-color: #F74425;
}

@media screen and (max-width: 1600px) {
    .expect-image {
        margin-bottom: -60px;
    }

    .player-image {
        transform: translateY(-60px);
    }

    .player-image {
        max-width: 100%;
    }
}

@media screen and (max-width: 1400px) {
    .expect-image {
        margin-bottom: -40px;
    }

    .player-image {
        transform: translateY(-40px);
    }
}

@media screen and (max-width: 1200px) {
    .expect-image {
        margin-bottom: -20px;
    }

    .player-image {
        transform: translateY(-20px);
    }
}

@media screen and (max-width: 1024px) {
    .title-primary {
        font-size: 38px;
        line-height: 44px;
    }

    .title-secondary {
        font-size: 32px;
        line-height: 40px;
    }

    .content-container p {
        font-size: 24px;
        line-height: 32px;
    }

    .expect-section {
        padding: 0 16px 60px 16px;
    }

    .expect-container {
        flex-direction: column;
        gap: 40px;
    }

    .expect-title {
        font-size: 36px;
        line-height: 42px;
    }

    .expect-text {
        font-size: 20px;
        line-height: 28px;
    }

    .gallery-item {
        width: 350px;
        height: auto;
        display: flex;
    }

    .gallery-title {
        font-size: 42px;
    }

    .gallery-track {
        padding-left: 10px;
        gap: 35px;
    }
}

@media screen and (max-width: 768px) {
    .content-section {
        padding: 60px 16px;
    }

    .title-primary {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 30px;
    }

    .title-secondary {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 40px;
    }

    .content-container p {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 24px;
    }

    .expect-image {
        width: 100%;
    }

    .player-image {
        max-width: 100%;
    }

    .expect-content {
        text-align: center;
    }

    .expect-title {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 20px;
    }

    .expect-text {
        font-size: 20px;
        line-height: 28px;
    }

    .gallery-section {
        padding: 60px 0;
    }

    .gallery-title {
        font-size: 36px;
        line-height: 42px;
        margin-bottom: 40px;
        padding: 0 16px;
    }

    .gallery-item {
        width: calc(100vw - 80px);
        height: auto;
        display: flex;
    }

    .gallery-track {
        padding-left: 15px;
        gap: 30px;
    }

    .carousel-dot {
        width: 16px;
        height: 16px;
    }

    .carousel-dot.active {
        width: 22px;
        height: 22px;
    }
}

@media screen and (max-width: 480px) {
    .title-primary {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 24px;
    }

    .title-secondary {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 32px;
    }

    .content-container p {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .expect-section {
        padding: 40px 12px;
    }

    .expect-title {
        font-size: 28px;
        line-height: 36px;
    }

    .expect-text {
        font-size: 18px;
        line-height: 26px;
    }

    .gallery-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 32px;
        padding: 0 12px;
    }

    .gallery-item {
        width: calc(100vw - 60px);
        height: auto;
        display: flex;
    }

    .gallery-track {
        padding-left: 8px;
        gap: 20px;
    }

    .carousel-nav {
        gap: 12px;
        margin-top: 40px;
    }

    .carousel-dot {
        width: 14px;
        height: 14px;
    }

    .carousel-dot.active {
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 360px) {
    .title-primary {
        font-size: 22px;
        line-height: 28px;
    }

    .title-secondary {
        font-size: 18px;
        line-height: 24px;
    }

    .content-container p {
        font-size: 16px;
        line-height: 24px;
    }

    .expect-title {
        font-size: 24px;
        line-height: 32px;
    }

    .expect-text {
        font-size: 16px;
        line-height: 24px;
    }

    .gallery-title {
        font-size: 24px;
        line-height: 32px;
    }

    .gallery-item {
        width: calc(100vw - 50px);
        height: auto;
        display: flex;
    }

    .gallery-track {
        padding-left: 9px;
        gap: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
