/*Tournament lines color = tournament text color = maincolor*/

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    user-select: none;
    -webkit-user-drag:none;
}
/**/
:root {
  --main-color: rgb(188, 123, 26);
  --blue-color: #04328e;/*#102c64*/
}

body {
    background-image:url(Images/Background-1.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    height: 100vh;
    font-family: 'Lilita One', 'sans-serif';
    color: #fff;
    overflow-y:hidden;
}

.tournamentContainer {
    display:flex;
    justify-content: center;   
    align-items:center;
    padding-block:96px;
    height: 760px;
    overflow-y:hidden;
}

.tournamentTemplate {
    flex: 0 0 375px;
    position: relative;
    height:100%;
    background: linear-gradient(0deg,rgb(7, 82, 231) 0%, var(--blue-color) 100%);
    -webkit-text-stroke: 0.5px black;
    display:flex;
    flex-direction: column;
    row-gap:30px;
    align-items: center;
    border-radius: 10px;
    max-height:568px;
    min-height: 568px;
    max-width: 375px;
    min-width: 375px;
    text-shadow: 1.25px 1.25px 2px black;
}

.timeBox {
    background-color:#100c44;
    border-bottom-left-radius:2px;
    border-bottom-right-radius:2px;
    width:50%;
    padding-block: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap:7.5px;
    span {
        font-size:24px
    }
    img {
        width: 28px;
    }
}

.tournamentTemplate h2[class='tournamentText'] {
    font-size:32px;
    text-align: center;
    padding-inline:16px;
    color: var(--main-color);
    font-weight:200;
}

.tournamentTemplate img[alt='Tournament Image'] {
    width: 160px;
    aspect-ratio: 1;
}


.tournamentTemplate p[class='prizepoolText'] {
    font-size:24px;
    text-shadow: 1.25px 1.25px 2px black;
}


.prizeBox {
    background-color:#100c44;
    border-radius:2.75px;
    width:120px;
    padding-block: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    span {
        font-size:24px;
        position: relative;
        left:5%;
    }
    img {
        width: 36px;
        position: absolute;
        left:0;
        transform: translateX(-50%);
    }
}

.tourLine {
    position:absolute;
}

.line1 {
    background-color: var(--main-color);
    width:100%;
    height:15px;
    bottom:0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.line2 {
    background: linear-gradient(0deg, var(--main-color)  0%, var(--blue-color) 100%);
    width: 15px;
    height: 100%;
    left: 0;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
}

.line3 {
    background: linear-gradient(0deg, var(--main-color)  0%, var(--blue-color) 100%);
    width:15px;
    height:100%;
    right:0;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.personalizedBox {
    position: absolute;
    font-size: 24px;
    top:0;
    transform: translateY(-100%);
    width:50%;
    height: 38px;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    span {
        display: block;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        -webkit-text-stroke: 1px solid;
    }
}

.Box1 {
    background: radial-gradient(circle,rgba(34, 82, 179, 1) 0%, rgb(24, 59, 130) 100%);
}

.Box2 {
    background: radial-gradient(circle,rgba(247, 255, 92, 1) 0%, rgba(255, 147, 23, 1) 100%);
}

