:root {
    /*--primary-color: #0b4973;
    --secondary-color: #11FEFF;
    --border-color: #11FEFF;*/

    /* --primary-color: #0b4973;
    --secondary-color: #40E0D0;
    --border-color: #84171b; */

    --font-family: 'Roboto', sans-serif;

    --text-color-default: #e2e8f0;
    --text-color-primary: #FFC000;

    --main-bg-url: '/static/images/auction-screen-bg.jpg';

    --card-bg-default: rgba(56, 71, 102, 0.6);
    --card-bg-primary: rgba(255, 192, 0, 0.3);
    /*--card-bg-primary: rgba(11, 22, 41, 0.4);*/

    --player-image-size: 300px;



    /*background-color: rgba(56, 71, 102, 0.6);*/
    /*background-color: rgba(255, 192, 0, 0.3);*/
    /*background-color: rgba(11, 22, 41, 0.4);*/
}

html {
    font-size: 16px;
    font-weight: 400;
}

body{
    font-family: var(--font-family);
    color: var(--text-color-default);
    /*font-size: 12px;
    font-weight: 400;*/

    margin: 0;
    padding: 0;
    height: 100%;
}

@media (min-width: 64rem) {
    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.main-content{
    padding: 0;
    margin: 0;
}

.auction-screen-bg{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #1c1c1c url(/static/images/auction-screen-bg.jpg) center top repeat;
    background-size: contain;
    /*background-blend-mode: overlay;*/
}
.auction-screen-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.squad-screen-bg{
    background-color: black;
}

.popper-bg{
    background: url(/static/images/popper-3.gif) center top no-repeat;
}

.promo-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.container{
    /*width: 1140px;*/
    width: 90%;
    margin: 0 auto;
    /*padding-top: 80px;
    padding-bottom: 80px;*/

    position: relative;
    z-index: 9999;
}

.text-gold{
    color: #FFC000;
}

.row-auction-content{
    min-height: 500px;
    gap: 2%;
}
.col-bidinfo-box{
    width: 74%;
}
.col-wallet-box{
    width: 34%;
}

.bidinfo-box{
    /*gap: 4;*/
}
.bidinfo-box-left{
    width: 38%;
}
.bidinfo-box-right{
    width: 58%;
}

.auction-header{
    color: var(--text-color-default);
}
.auction-live-wrap .auction-header{
    margin-right: 50px;
    margin-top: 80px;
    margin-bottom: 30px;
}





.promo_banner_wrap{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #1c1c1c url(/static/images/promo-banner-bg.jpg) center top repeat;
    background-size: cover;
}
.team-officials-title{
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-top: 60px;
    margin-bottom: 40px;
}
.text-blue{
     color: #13B1E5;
}
.text-yellow{
     color: #FEBB1B;
}
.text-red{
     color: #EF3558;
}
.text-white{
     color: white;
}
.team-official-card{
    color: #202855;
    background-color: white;
    border-radius: 10px;
    width: 420px;
}
.official-img{
    height: 250px;
    width: 250px;
}
.team-logo{
    height: 180px;
    width: 180px;
    margin-top: 0px;
}
.official-name{
    color: #202855;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 40px;
}
.official-role{
    color: #5C5086;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
}



/* Player Image Box -START */
.player-image-box{
    width: var(--player-image-size);
}
.player-image-box .player-image{
    width: var(--player-image-size);
    height: var(--player-image-size);
}
.player-image-box .player-image img{
    width: 100%;
    height: 100%;
}

.player-image-box .bid-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 165px;
    text-align: center;
    border-radius: 10px;
    padding: 0rem 3rem;
    background-color: var(--card-bg-primary);
}
.player-image-box .bid-amount{
    color: var(--text-color-primary);
    font-weight: 700;
}
.player-image-box .bid-team{
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    margin-top: 0.5rem;
}
/* Player Image Box -END */



/* Player Stats -START */
.stats-box{
    margin-top: 120px;
}

.stat-title-card{
    width: 80px;
}
.stat-title-card .stat-type{
    font-size: 1.125rem;
    line-height: 1.55;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-color-primary);
}

.stat-card{
    color: white;
    background-color: var(--card-bg-primary);
    padding: 5px 10px;
    border-radius: 0px;
}
.stat-card .stat-name{
    font-size: 1.125rem;
    line-height: 1.55;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-slate-400);
}
.stat-card .stat-value{
    font-size: 1.5rem;
    line-height: 1.33;
    font-weight: 700;
}
/* Player Stats -END */


/* Team Wallet -START */
.team-wallet{
    padding-left: 20px;
    padding-right: 20px;
}
.team-card{
    color: white;
    min-width: 175px;
    max-width: 300px;
    padding: 5px 5px;
    border-radius: 0px;
    background-color: var(--card-bg-primary);
}
.team-card .logo{

}
.team-card .amount{
    font-size: 1.675rem;
    line-height: 1.2;
    color: var(--color-slate-200);
    font-weight: 700;
    white-space: nowrap;
}
/* Team Wallet -END */

/* Player Sold START */
.sold-info{
    margin-top: 80px;
    margin-bottom: 40px;
}
/* Player Sold -END */

/* Team Squad -START */
.auction-squad-wrap{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #1c1c1c url(/static/images/promo-banner-bg.jpg) center top repeat;
    background-size: cover;
}
.auction-squad-wrap .auction-header{
    margin-right: 50px;
    margin-top: 0px;
    margin-bottom: 20px;
}

.auction-squad-wrap .teams-squad-grid-item{
    background-color: #1C2956;
}
.auction-squad-wrap .team-info .name{
    color: #202855;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
}
.auction-squad-wrap .team-info .wallet-balance{
    color: #5C5086;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 5px;
}
.auction-squad-wrap .team-info .wallet-balance span{
    font-size: 16px;
}
.auction-squad-wrap .team-info .logo{
    height: 70px;
    width: 70px;
}

.team-squad .player-card{
    padding: 5px 8px;
    background-color: var(--card-bg-primary);
    border-radius: 5px;
    margin: 1px 0;
}
/* Team Squad -END */





.auction-squad-wrap .players-list{
    margin-right: 50px;
    margin-top: 0px;
    margin-bottom: 20px;
}


.promo_banner_wrap{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #1c1c1c url(/static/images/promo-banner-bg.jpg) center top repeat;
    background-size: cover;
}
.team-officials-title{
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 40px;
}
.text-yellow{
     color: #FEBB1B;
}
.text-red{
     color: #EF3558;
}
.team-official-card{
    color: #202855;
    background-color: white;
    border-radius: 10px;
    width: 320px;
}
.official-img{
    height: 250px;
    width: 250px;
}
.team-official-card .team-logo{
    height: 180px;
    width: 220;
    overflow: hidden;
    margin-top: 20px;
}
.team-official-card .team-logo img{
    /*height: auto;
    width: 100%;*/
    min-width: 100%;
    object-fit: contain;
    object-position: center;
}
.official-name{
    color: #202855;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 40px;
}
.official-role{
    color: #5C5086;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
}





.spin-text {
    font-size: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 
        1px 1px 0px #e63946, 
        2px 2px 0px #f77f00, 
        3px 3px 0px #fcbf49, 
        4px 4px 0px #a8dadc, 
        5px 5px 0px #457b9d;
    transform: rotateY(0deg);
    transform-style: preserve-3d;
    animation: spin-3d 4s infinite linear;
}
@keyframes spin-3d {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.neon-text {
    color: #fff;
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: glow 1.5s infinite alternate;
}
@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    }
    100% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
    }
}




/*.fade {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 1s ease-in-out;
    animation: fadeAnimation 25s infinite;
}

.fade:nth-child(1) { animation-delay: 0s; }
.fade:nth-child(2) { animation-delay: 5s; }
.fade:nth-child(3) { animation-delay: 10s; }
.fade:nth-child(4) { animation-delay: 15s; }
.fade:nth-child(5) { animation-delay: 20s; }

@keyframes fadeAnimation {
    0% { opacity: 0; }
    5% { opacity: 1; } 
    14% { opacity: 1; }
    20% { opacity: 0; }
    100% { opacity: 0; }
}*/

.fade {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 1s ease-in-out;
    animation: fadeAnimation 49s infinite; /* 7 slides × 7s each */
}

/* Animate each div with delay */
.fade:nth-child(1) { animation-delay: 0s; }
.fade:nth-child(2) { animation-delay: 7s; }
.fade:nth-child(3) { animation-delay: 14s; }
.fade:nth-child(4) { animation-delay: 21s; }
.fade:nth-child(5) { animation-delay: 28s; }
.fade:nth-child(6) { animation-delay: 35s; }
.fade:nth-child(7) { animation-delay: 42s; }

/* Keyframes control timing of each slide */
@keyframes fadeAnimation {
    0%   { opacity: 0; }
    4%   { opacity: 1; }   /* fade in quickly */
    14%  { opacity: 1; }   /* stay visible */
    20%  { opacity: 0; }   /* fade out */
    100% { opacity: 0; }
}



@media (max-width: 768px) {
    .container{
        width: 90%;
        margin-top: 50px;
    }

    .row-auction-content{
        /*min-height: auto;
        gap: 2%;*/
        flex-direction: column;
    }
    .col-bidinfo-box{
        width: 100%;
    }
    .col-wallet-box{
        width: 100%;
    }

    .bidinfo-box{
        /*gap: 4;*/
        flex-direction: column;
    }
    .bidinfo-box-left{
        width: 100%;
    }
    .bidinfo-box-right{
        width: 100%;
    }

    /*.auction-header{
        color: var(--text-color-default);
        margin-right: 150px;
        margin-top: 140px;
    }*/
}

@media (max-width: 768px) {
    .container{
        width: 90%;
    }

    .row-auction-content{
        /*min-height: auto;
        gap: 2%;*/
        flex-direction: column;
    }
    .col-bidinfo-box{
        width: 100%;
    }
    .col-wallet-box{
        width: 100%;
    }

    .bidinfo-box{
        /*gap: 4;*/
        flex-direction: column;
    }
    .bidinfo-box-left{
        width: 100%;
    }
    .bidinfo-box-right{
        width: 100%;
    }

    /*.auction-header{
        color: var(--text-color-default);
        margin-right: 150px;
        margin-top: 140px;
    }*/
}

@media (max-width: 1024px) {
    .container{
        width: 80%;
    }

    .row-auction-content{
        /*min-height: auto;
        gap: 2%;*/
        flex-direction: column;
    }
    .col-bidinfo-box{
        width: 100%;
    }
    .col-wallet-box{
        width: 100%;
    }

    .bidinfo-box{
        /*gap: 4;*/
        flex-direction: column;
    }
    .bidinfo-box-left{
        width: 100%;
    }
    .bidinfo-box-right{
        width: 100%;
    }

    /*.auction-header{
        color: var(--text-color-default);
        margin-right: 150px;
        margin-top: 140px;
    }*/
}

