.utournament-category-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 40px 0;
    background-color: #131D39;
    border-radius: 10px;
}

.utournament-category-group>div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48%;
    height: 52px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    font-weight: 400;
}

.utournament-category-group>div>div {
    border-bottom: 4px solid transparent;
    cursor: pointer;
}

.utournament-category-group>div.active>div {
    width: auto;
    height: 52px;
    padding: 0px 20px;
    color: #FDBB2C;
    font-weight: 700;
    border-bottom: 4px solid;
    display: flex;
    justify-content: center;
    align-items: center;
}

.option-indicator {
    width: 16px;
    height: 16px;
    font-size: 9px;
    font-weight: 400;
    line-height: 14px;
    color: #FFFFFF;
    background: #D32F2F;
    text-align: center;
    border-radius: 100%;
}

.utournament-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    gap: 20px;
}

.tournament-container>div {
    margin-bottom: 20px;
}

.animate-zoom {
    animation: animatezoom 0.4s;
}

@keyframes animatezoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.tournament-container>div:nth-child(odd) {
    padding-left: 0px;
    padding-right: 10px;
}

.tournament-container>div:nth-child(even) {
    padding-left: 10px;
    padding-right: 0px;
}

.utournament-card {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(0deg, #FDBB2C -65.1%, #131D39 75.87%);
    border-radius: 10px;
    flex-basis: 49%;
    height: 288px;
    padding: 20px 30px;
    position: relative;
    cursor: pointer;
}

.utournament-card .utcard-detail-wrap {
    width: 60%;
    margin-right: 10px;
}

.utournament-card .cat-row {
    display: flex;
    flex-direction: row;
    margin-top: 25px;
}

.utournament-card .cat-row .cat-wrap {
    border-radius: 4px;
    border: 1px solid rgba(253, 187, 44, 1);
    padding: 6px 12px;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.25;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.utournament-card .cat-row .cat-wrap img {
    height: 16px;
    width: auto;
    object-fit: contain;
    margin-left: 4px;
}

.utournament-card .utcard-title {
    font-weight: 700;
    font-size: 25px;
    line-height: 1.1;
    margin: 10px 0px;
}

.utournament-card .utcard-desc {
    font-weight: 400;
    font-size: 12px;
}

.utournament-card .stick-to-bottom {
    position: absolute;
    bottom: 20px;
    width: 40%;
}

.utournament-card .countdown-wrap {
    display: flex;
    flex-direction: row;
    font-weight: 700;
    color: #fff;
    font-size: 12px;
    margin-bottom: 8px;
}

.utournament-card .countdown-wrap img {
    height: 17px;
    width: 17px;
    object-fit: contain;
    margin-right: 5px;
}

.utournament-card .utcard-show-more {
    outline: none;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    line-height: 2;
    font-weight: 700;
    width: 100%;
    max-width: 100%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.utournament-card .utcard-img-wrap {
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 1px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 11px 19.6px 0px rgba(7, 16, 41, 0.35);
}

.utournament-card .utcard-img-wrap img {
    width: 226px;
    height: 239px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.utournament-card .utcard-overlay {
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 125%);
}

.utournament-card .prize-pool-wrap {
    width: 90%;
    height: 72px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    backdrop-filter: blur(29px);
    -webkit-backdrop-filter: blur(29px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.utournament-card .prize-pool-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    /* control the border thickness */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.utournament-card .prize-pool-wrap .pp-title {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.utournament-card .prize-pool-wrap .pp-amount {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    margin-top: 2px;
}

.tournament-details-container {
    display: none;
}

.tournament-details-back-btn {
    cursor: pointer;
    position: absolute;
    top: 20px;
    left: 35px;
    z-index: 9;
    border-radius: 100px;
    height: 40px;
    width: 40px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tournament-details-back-btn img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.tournament-details-container .detail-summary-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: rgba(19, 29, 57, 1);
    border-radius: 10px;
    padding: 15px;
    padding-top: 60px;
    column-gap: 20px;
    background-image:
        radial-gradient(ellipse at top right, rgba(24, 16, 152, 0.45) 0%, transparent 50%),
        radial-gradient(ellipse at 140% 45%, rgba(25, 66, 132, 0.75) 0%, transparent 33%);
    background-size: 100% 100%;
    flex-wrap: wrap;
}

.tournament-details-container .detail-summary-wrap img {
    width: 45%;
    object-fit: cover;
    max-width: 329px;
    height: 367px;
}

.tournament-details-container .detail-summary-wrap .detail-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 15px;
}

.tournament-details-container .detail-summary-wrap .detail-text {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
}

.tournament-details-container .detail-summary-wrap .cta-row {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.tournament-details-container .detail-summary-wrap .cta-btn {
    outline: none;
    border: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.25;
    border-radius: 4px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tournament-details-container .detail-summary-wrap .primary-btn {
    background: #FDBB2C;
    color: #000000;
    box-shadow: 0px 0px 12.6px 0px rgba(255, 255, 255, 0.2);
    margin-right: 15px;
    padding: 2px 32px;
}

.tournament-details-container .detail-summary-wrap .secondary-btn {
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.6);
    padding: 2px 24px;
}

.tournament-details-container .participating-game-section {
    padding: 40px 0px;
}

.tournament-details-container .participating-game-section .section-title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.6);
}

.tournament-details-container .game-row {
    gap: 15px;
    margin: 0px;
}

.tournament-details-container .game-wrap {
    background: #131D39;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
}

.tournament-details-container .game-wrap img {
    width: 109px;
    height: 109px;
    object-fit: contain;
}

.tournament-details-container .game-name {
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    font-size: 12px;
}

.tournament-details-container .prize-pool-section {
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 1px;
    overflow: hidden;
    position: relative;
}

.tournament-details-container .prize-pool-inner-wrap {
    background: linear-gradient(0deg, #181098 -65.1%, #131D39 75.87%);
    border-radius: 10px;
    position: relative;
}

.tournament-details-container .prize-pool-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    height: 258px;
    position: relative;
}

.tournament-details-container .prize-pool-bg .pp-title {
    position: absolute;
    bottom: 29%;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    width: max-content;
}

.tournament-details-container .prize-pool-bg .pp-amount {
    position: absolute;
    bottom: 9%;
    left: 50%;
    transform: translateX(-50%);
    color: #FDBB2C;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.36;
    width: max-content;
}

.tournament-details-container .countdown-box {
    background: #131D39;
    color: #fff;
    padding: 16px 20px;
    margin-top: 30px;
    border-radius: 10px;
}

.tournament-details-container .cd-title {
    background: #131D39;
    color: #fff;
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 10px;
}

.tournament-details-container .timer-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.tournament-details-container .timer-wrap {
    text-align: center;
}

.tournament-details-container .timer-wrap span {
    margin-top: 2px;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.33;
    color: rgba(255, 255, 255, 0.6);
}

.tournament-details-container .timer-divider {
    padding: 10px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    margin-top: -18px;
}

.tournament-details-container .timer-box {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    height: 40px;
    width: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
}


#utournament-tnc-modal .modal-dialog {
    max-width: 600px;
}

#utournament-tnc-modal .modal-body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#utournament-tnc-modal .modal-body::-webkit-scrollbar {
    display: none;
}

.utournament-tnc-title {
    color: #FDBB2C;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
}

#utournament-tnc-modal .modal-dialog .text {
    max-width: 600px;
}

.option-indicator {
    position: absolute;
    right: 0px;
    width: 16px;
    height: 16px;
    font-size: 9px;
    font-weight: 400;
    line-height: 14px;
    color: #FFFFFF;
    background: #D32F2F;
    text-align: center;
    border-radius: 100%;
}

#utournament-tnc-modal.modal.alert .modal-dialog .modal-content .modal-body .text span {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    color: inherit;
}