@font-face {
    font-family: 'BigNoodleTitling';
    src: url('../fonts/big_noodle_titling.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BigNoodleTitling';
    src: url('../fonts/big_noodle_titling_oblique.ttf') format('truetype');
    font-weight: normal;
    font-style: oblique;
}

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    background-color: #1A1A1A;
}
a {
    text-decoration: none;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background-color: #2f006b;
    position: fixed;
    width: 100%;
    top: 0;
    transition: height 0.3s, padding 0.3s;
    z-index: 1000;
}
.cont {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 40px;
    align-items: center;
}

.container.shrink {
    height: 60px;
}

.logo {
    height: 40px;
}

.join-btn {
    background: url('../img/btn.svg') no-repeat center center;
    background-size: contain;
    border: none;
    width: 160px;
    height: 48px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.join-btn:hover {
    transform: scale(1.05); /* Увеличиваем размер кнопки при наведении */
}

.hero-section {
    background: url('../img/hero.jpg') no-repeat center center;
    background-size: cover;
    height: 620px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:70px;
}

.overlay {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1920px;
    z-index: 3;
}

.player-left, .player-right {
    position: absolute;
    bottom: 0;
    max-height: 510px;
    height: 27vw;
}

.player-left {
    left: 50px;
}

.player-right {
    right: 50px;
}

.player-left::after, .player-right::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 7px;
    background-color: #FFFFFF;
    z-index: -1;
}

.player-left::after {
    right: -7px; /* Обводка справа */
}

.player-right::after {
    left: -7px; /* Обводка слева */
}

.hero-content {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    bottom: 35px;
}

.championship-logo {
    margin-bottom: 20px;
}

.date {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 32px;
}

.main-title {
    font-family: 'BigNoodleTitling', sans-serif;
    font-weight: 400;
    font-size: 102px;
    line-height: 91px;
    text-transform: uppercase;
    margin: 0;
}

.subtitle {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-btn {
    background: url('../img/btn.svg') no-repeat center center;
    background-size: contain;
    border: none;
    width: 200px;
    height: 56px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease; /* Добавляем плавный переход */
}
.hero-btn:hover {
    transform: scale(1.05); /* Увеличиваем размер кнопки при наведении */
}

.divider {
    width: 100%;
    display: block;
    position: absolute;
    bottom: -11px;
    left: 0;
    z-index: 3;
}

.today-playing-section {
    position: relative;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    background: #1A1A1A;
    z-index: 2;
}

.section-title {
    font-family: 'BigNoodleTitling', sans-serif;
    font-weight: 400;
    font-size: 48px;
    margin: 0 0 20px;
}

.game-info {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;
    gap: 4px;
    max-width: 380px;
    width: auto;
    height: 32px;
    background: #545D64;
    border-radius: 8px;
    margin: 0 auto 20px;
}

.game-info-content {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.game-block {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Уменьшено расстояние между элементами */
    margin-bottom: 25px;
    z-index: 2;
}

.team {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.team-left {
    justify-content: flex-end;
}

.team-right {
    justify-content: flex-start;
}

.team-name {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    min-width: 190px;
    z-index: 2;
}

.team-logo {
    height: 180px;
    z-index: 2;
}

.team-odds {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0);
    border: 1px solid #FF7C1E;
    width: 100px;
    height: 42px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.vs {
    font-family: 'BigNoodleTitling', sans-serif;
    font-weight: 400;
    font-size: 48px;
    margin: 0 25px;
    z-index: 2;
}

.bet-btn {
    background: url('../img/btn.svg') no-repeat center center;
    background-size: contain;
    border: none;
    width: 200px;
    height: 50px;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}


.bet-btn:hover {
    transform: scale(1.05); /* Увеличиваем размер кнопки при наведении */
}


.left-decor {
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
    max-height: 1000px;
    height: 52vw;
    z-index: 0;
    pointer-events: none;
}

.right-decor {
    position: absolute;
    right: 0;
    top: 112%;
    transform: translateY(-50%);
    max-height: 820px;
    height: 42vw;
    z-index: 0;
    pointer-events: none;
}
.double-deposit-section {
    padding: 50px 40px;
    text-align: center;
    color: #fff;
}

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

.benefit-block {
    background: url('../img/bgm.svg') no-repeat center center;
    background-size: contain;
    padding: 20px;
    width: 280px;
    height: 166px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 2;
}

.benefit-icon {
    width: 70px;
    height: 58px;
    margin-bottom: 20px;
}

.benefit-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
}
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-height: 72px;
}

.footer-logo {
    height: 32px;
}

.footer-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #79849B;
}

.game-block-smal {
    display: none;
}

@media (max-width: 1300px) {
    .player-left {
        left: 0px;
    }
    
    .player-right {
        right: 0px;
    }
    .vs {
        font-family: 'BigNoodleTitling', sans-serif;
        font-weight: 400;
        font-size: 42px;
        margin: 0px 16px;
        z-index: 2;
    }
    .team-odds {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 24px;
        padding: 8px 16px;
        background: rgba(255, 255, 255, 0);
        border: 1px solid #FF7C1E;
        width: 72px;
        height: 38px;
        border-radius: 8px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    .team-logo {
        height: 110px;
        z-index: 2;
    }
}

@media (max-width: 1000px) {
    .game-block {
        display: none;
    }
    .game-block-smal {
        display: block;
    }
    .game-block-smal {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px; /* Уменьшено расстояние между элементами */
        margin-bottom: 25px;
        z-index: 2;
    }
    
    .team-smal {
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 2;
        flex-direction: column;
    }
    
    .team-left-smal {
        justify-content: flex-end;
    }
    
    .team-right-smal {
        justify-content: flex-start;
    }
    
    .team-name-smal {
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-size: 24px;
        min-width: 190px;
        z-index: 2;
    }
    
    .team-logo-smal {
        height: 180px;
        z-index: 2;
    }
    
    .team-odds-smal {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 24px;
        padding: 8px 16px;
        background: rgba(255, 255, 255, 0);
        border: 1px solid #FF7C1E;
        width: 100px;
        height: 42px;
        border-radius: 8px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    
    .vs-smal {
        font-family: 'BigNoodleTitling', sans-serif;
        font-weight: 400;
        font-size: 48px;
        margin: 0 25px;
        z-index: 2;
    }
    .hero-section {
        height: 520px;   
    }
    .main-title {
        font-size: 80px;
        line-height: 70px;
    }
    .benefit-blocks {
        gap: 15px;
    }
    .benefit-text {
        font-size: 16px;
        margin-top: 6px;
    }
    .benefit-icon {
        width: 60px;
        height: auto;
        margin-bottom: 0px;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 470px;
    }
    .divider {
        display: none;
    }
    .player-left {
        content: url('../img/pl.png');
        height: 350px;
    }

    .player-right {
        content: url('../img/pr.png');
        height: auto;
    }

    .hero-section::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 300px;
        background: linear-gradient(0deg, #1A1A1A 0%, rgba(26, 26, 26, 0.79) 36.5%, rgba(26, 26, 26, 0) 100%);
        z-index: 1;
    }
    .hero-content {
        bottom: 0px;
    }
    .date {
        width: 215px;
        height: 25px;
        font-size: 14px;
        background: rgba(0, 0, 0, 0.3);
    }
    .main-title {
        font-size: 56px;
        line-height: 50px;
    }
    .championship-logo {
        margin-bottom: 10px;
    }
    .subtitle {
        font-size: 14px;
    }
    .hero-btn {
        font-size: 16px;
        width: 160px;
        height: 48px;
    }
    .today-playing-section {
        padding: 0px 40px;
    }
    .section-title {
        font-size: 32px;
    }
    .game-info-content {
        font-size: 14px;
    }
    .game-info {
        max-width: 280px;
        width: auto;
        height: 25px;
    }
    .team-logo-smal {
        height: 120px;
    }
    .team-name-smal {
        font-size: 16px;
        min-width: auto;
    }
    .team-odds-smal {
        font-size: 16px;
        width: 52px;
        height: 32px;
    }
    .vs {
        font-size: 36px;
    }
    .game-block-smal {  
        gap: 0px;
    }
    .bet-btn {
        width: 160px;
        height: 48px;
        z-index: 2;
    }
    .left-decor {
        top: 89%;
    }
    .double-deposit-section {
        padding: 25px 40px;
        z-index: 2;
    }
    .right-decor {
        content: url('../img/erm.png');
        position: absolute;
        right: 0;
        top: 53%;
        transform: translateY(-50%);
        height: 100vw;
        z-index: -1;
        pointer-events: none;
    }
    .benefit-blocks {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        flex-direction: column;
        align-items: center;
    }
    .benefit-block {
        background: url('../img/bgmm.svg') no-repeat center center;
        background-size: contain;
        padding: 15px;
        width: 266px;
        height: 46px;
        gap: 12px;
        text-align: left;
        display: flex;
        justify-content: flex-start;
        z-index: 2;
        flex-direction: row;
        align-items: center;
    }

    .benefit-icon {
        width: 60px;
        height: auto;
        margin-bottom: 0px;
        margin-top: 0px;
        margin-left: 0px;
    }
    .benefit-text {
        font-size: 16px;
        margin-top: 18px;
    }
    .footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 15px;
        max-height: 72px;
    }
    .footer-text { 
        font-size: 12px;
    }
    .footer-logo {
        height: 28px;
    }
    .logo {
        height: 28px;
    }
    .container {
        padding: 0 0px;
    }

}
