body{
    background:linear-gradient(#03101f,#020814);
    color:#fff;
    font-family:Arial;
}

.mb-3 { text-align:center}

.wrapper{
    max-width:850px;
    /*max-width:700px;*/
    margin:auto;
    padding:20px 15px;
    box-sizing:border-box;
}

.card{
    background:#06182c;
    border:1px solid #f7c45c;
    border-radius:5px;
    padding:30px;
}

h2{
    color:#f7c45c;
    text-align:center;
    margin-bottom:25px;
}

label{
    color:#f7c45c;
    margin-bottom:5px;
}

.form-control,
.form-select{
    background:#020b16 !important;
    color:#fff !important;
    border:1px solid #1d4d75;
}

.form-control:focus,
.form-select:focus{
    border-color:#f7c45c;
    box-shadow:none;
}

.btn-submit{
    background:#f7c45c;
    color:#071b33;
    border:none;
    font-weight:bold;
    padding:12px;
}

.btn-submit:hover{
    background:#ffd97d;
}

body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background:
    linear-gradient(rgba(2,8,20,0.92),rgba(2,8,20,0.95)),
    /*url('images/stadium-bg.jpg');*/
    background-size:cover;
    background-attachment:fixed;
    color:#fff;
}
.league-logo{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:50%;
    border:4px solid #f7c45c;
    box-shadow:0 0 30px rgba(247,196,92,0.5);
}
.hero-section h1{
    margin-top:20px;
    font-size:42px;
    font-weight:800;
    letter-spacing:2px;
    color:#fff;
}

.pppl-title{
    color:#f7c45c;
    font-size:28px;
    font-weight:700;
    margin-top:10px;
}
.card{
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:5px;
    padding:40px;
    box-shadow:0 0 40px rgba(0,0,0,0.4);
}
.stats-row{
    display:flex;
    justify-content:center;
    gap:20px;
    margin:20px 0;
}

.stat-box{
    background:rgba(247,196,92,0.12);
    border:1px solid #f7c45c;
    border-radius:10px;
    padding:20px ;
    text-align:center;
    min-width:220px;
}

.stat-number{
    font-size:38px;
    font-weight:800;
    color:#f7c45c;
}

.stat-label{
    margin-top:8px;
    color:#ddd;
}
.form-control,
.form-select{
    height:55px;
    border-radius:14px;
    background:rgba(255,255,255,0.08) !important;
    border:1px solid rgba(255,255,255,0.15);
    color:#fff !important;
    font-size:15px;
}

.form-control:focus,
.form-select:focus{
    border-color:#f7c45c;
    box-shadow:0 0 15px rgba(247,196,92,0.25);
}
.btn-submit{
    width:100%;
    height:58px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,#f7c45c,#ffdf91);
    color:#071b33;
    font-size:18px;
    font-weight:800;
    transition:0.3s;
}

.btn-submit:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(247,196,92,0.4);
}

/* MOBILE FIRST */
.upload-box{
    margin-bottom:20px;
}

.upload-label{
    width:100%;
    display:block;
    cursor:pointer;
}

.upload-content{
    background:rgba(255,255,255,0.05);
    border:2px dashed rgba(247,196,92,0.5);
    border-radius:20px;
    padding:28px 20px;
    text-align:center;
    transition:0.3s;
    min-height:160px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.upload-content:hover{
    border-color:#f7c45c;
    background:rgba(247,196,92,0.08);
    transform:translateY(-2px);
}

.upload-icon{
    font-size:42px;
    margin-bottom:12px;
}

.upload-title{
    font-size:18px;
    font-weight:700;
    color:#fff;
}

.upload-sub{
    margin-top:8px;
    color:#bbb;
    font-size:14px;
}

/* IMAGE PREVIEW */
.upload-preview{
    width:120px;
    height:120px;
    border-radius:18px;
    object-fit:cover;
    border:3px solid #f7c45c;
    margin-bottom:12px;
}

/* MOBILE OPTIMIZED */
@media(max-width:768px){

    .card{
    width:100%;
    box-sizing:border-box;
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,0.1);
    border-radius:24px;
    padding:25px;
    box-shadow:0 0 40px rgba(0,0,0,0.4);
}

    .hero-section h1{
        font-size:28px;
    }

    .pppl-title{
        font-size:20px;
    }

    .stats-row{
        flex-direction:column;
        gap:15px;
    }

    

    .upload-content{
        min-height:150px;
        padding:22px 15px;
    }

    .btn-submit{
        height:60px;
        font-size:17px;
    }

}

@media(max-width:768px){

    body{
        overflow-x:hidden;
    }

    .hero-section{
        padding:20px 10px;
    }

    .hero-section h1{
        font-size:28px;
        line-height:1.2;
    }

    .pppl-title{
        font-size:20px;
    }

    .sub-text{
        font-size:14px;
    }

    .stats-row{
        flex-direction:column;
        gap:15px;
    }

    .stat-box{
        width:90%;
        min-width:unset;
		margin:0 auto
    }

    .card{
        padding:18px;
        border-radius:20px;
    }

    .form-control,
    .form-select{
        height:52px;
        font-size:16px;
    }

    .btn-submit{
        height:58px;
        font-size:17px;
    }

    .upload-content{
        min-height:140px;
        padding:20px;
    }

    .league-logo{
        width:90px;
        height:90px;
    }

}

input,
select,
textarea{
    font-size:16px !important;
}


/* Placeholder Color */
::placeholder{
    color:#b8c2d0 !important;
    opacity:1;
}

/* For mobile browsers */
::-webkit-input-placeholder{
    color:#b8c2d0 !important;
}

:-ms-input-placeholder{
    color:#b8c2d0 !important;
}

::-ms-input-placeholder{
    color:#b8c2d0 !important;
}

/* Select option text color */
select option{
    color:#000 !important;
    background:#fff !important;
}

.registration-closed{
    background:linear-gradient(135deg,#7a0000,#ff3b3b);
    border-radius:10px;
    padding:35px 25px;
    text-align:center;
    margin-bottom:30px;
    box-shadow:0 10px 30px rgba(255,59,59,0.35);
	border:1px solid #D4D4D4
}

.closed-icon{
    font-size:60px;
    margin-bottom:15px;
}

.registration-closed h3{
    font-size:28px;
    margin-bottom:10px;
    color:#fff;
    font-weight:800;
}

.registration-closed p{
    color:#ffeaea;
    font-size:16px;
}