* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: strikeFighter;
    src: url(/font/strikefighter.ttf);
}
@font-face {
    font-family: roboto;
    src: url(/font/Roboto-Regular.ttf);
}

.primary-btn{
    background:#BE4C26;
    padding:4px 10px;
    border-radius:4px;
    border:0px;
    width:100%
}
    .primary-btn a {
        color: #ffff;
        font-family: roboto;
        letter-spacing: 0.4px;
        font-size: 16px;
        text-decoration:none;
    }

body{
    background : #101319
}

p{
    font-family:roboto;
    color:#ffff
}

img{
    max-height: 350px;
    max-width:600px;
}


.welcome {
    background: black;
    align-items: center;
    justify-content: center;
    color: #FFF;
    display:flex ;
    flex-direction:column;
    gap:12px
}

    .welcome h1 {
        opacity: 0;
        animation: fadeIn ease 2s;
        -webkit-animation: fadeIn all ease 2s;
        font-size:46px
    }

.welcome img{
    width:60px;
    height:60px
}

.logo{
    font-family:strikeFighter
}
.logo-span{
    color:#BE4C26
}

.header h1{
    font-family:strikeFighter
}

.invitationText{
    font-size:18px
}
.invitationText p {
    opacity :0.8
}

.info-container{
    display:flex;
    flex-direction:row;
    gap:12px;
    align-items:baseline
}

.info-subtitle {
    font-size: 18px;
    color: #BE4C26;
    min-width: 120px;
}
.verified {
    padding: 2px 6px;
    color: #fff;
    background: #039d03;
    border: 0;
    border-radius: 4px;
    font-size: 10px;
    font-weight:600;
    letter-spacing:0.4px;
    height: fit-content
}

#mainContent {
    display: none;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Media query for tablets */
@media (max-width: 1024px) {
   .welcome h1 {
        font-size: 46px;
    }
   .header h1 {
       font-size:40px
   }
}

/* Media query for mobile devices */
@media (max-width: 767px) {
   .welcome h1 {
        font-size: 32px;
    }
    .header h1 {
        font-size: 26px
    }
}


.overline {
    font-size: 10px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 1px;
}

.caption {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.5px;
}

.bodytext {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.5px;
}

.subHeading {
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.15px;
}

.heading {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.15px;
}

.gameImg{
    width:50px;
    height:50px;
}

.profile_card {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: radial-gradient(154.78% 120.16% at 21.62% -18.21%, rgba(217, 217, 217, 0.00) 0%, rgba(175, 173, 173, 0.15) 52.6%, rgba(77, 77, 77, 0.23) 100%);
    padding: 20px;
    border-radius: 8px;
}

.profile_card_image{
    width:100px;
    border-radius: 50%;
}

.textHeading {
    font-size: 24px;
    color: #c8c8c8;
    font-weight: 600;
}

.textHeading-sm {
    font-size: 20px;
    color: #c8c8c8;
    font-weight: 600;
}

.profile_card_bg {
    background: linear-gradient(239deg, #C96407 30.75%, rgba(175, 90, 12, 0.57) 61.18%, rgba(163, 97, 37, 0.30) 91.43%);
    height:300px;
    position: relative;
}


.profile_card_bg p {
   letter-spacing:0.40px
}

.username{
    letter-spacing:1px;
}

.subHeading{
    font-size:24px;
    color:#c8c8c8;
    letter-spacing:1.25px;
    font-weight:600;
    line-height:18px;
}

.CardsScrollContainer {
    overflow-x: auto;
    white-space: nowrap;
    padding: 1rem 0;
    margin: auto;
}

    .CardsScrollContainer .ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: row;
    }

    .CardsScrollContainer .li {
        display: inline-block;
        text-align: center;
        padding-right: 1rem; /* This is the space between cards */
        flex: 0 0 auto; /* This ensures that the <li> elements do not stretch and are centered */
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    .CardsScrollContainer::-webkit-scrollbar {
        display: none;
    }

/* Hide scrollbar for IE, Edge and Firefox */
.CardsScrollContainer {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.CardsScrollContainer .card{
    width:120px;

}