
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:#000;
color:white;
font-family:'Montserrat',sans-serif;

display:flex;
justify-content:center;
}

.wrapper{
width:1080px;
height:1350px;

padding:30px;

background:#000;
}

.header{
text-align:center;
}

.player-name{
font-family:'Bebas Neue',sans-serif;
font-size:84px;
}

.club-line{
display:flex;
justify-content:center;
align-items:center;
gap:12px;
margin-top:5px;
}

.club-line img{
width:50px;
height:50px;
object-fit:contain;
}

.club-line span{
font-size:24px;
}

.top-section{
display:flex;
justify-content:center;
gap:50px;
align-items:center;
margin-top:20px;
}

.player-box,
.radar-box{
width:500px;
height:420px;
}

.player-box img{
max-height:420px;
max-width:500px;
}

.radar-box img{
max-height:380px;
}

.section-title{
font-family:'Bebas Neue';
font-size:36px;
text-align:center;
margin:15px 0;
}

.momentum-box img{
width:100%;
}

.stats-box{
margin-top:15px;
}

.stat-row{
display:flex;
justify-content:space-between;
padding:10px 20px;
font-size:24px;
border-bottom:1px solid rgba(255,255,255,.08);
}

.footer{
margin-top:20px;
display:flex;
justify-content:center;
align-items:center;
gap:10px;
color:#9ca3af;
font-weight:700;
}

.footer img{
width:30px;
height:30px;
}

.player-image-wrapper{
    display:flex;
    align-items:center;
    gap:12px;
}

.vertical-position{
    writing-mode:vertical-rl;
    transform:rotate(180deg);
    font-size:32px;
    font-weight:900;
    letter-spacing:3px;
    color:white;
    text-transform:uppercase;
}

.video-box{
    margin-top:20px;
    margin-bottom:20px;

    display:flex;
    justify-content:center;
}

.video-box video{
    width:100%;
    max-width:900px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.08);

    background:#000;
}

.cta-box{
    margin-top:50px;
    padding:40px;

    text-align:center;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;
}

.cta-box h2{
    font-family:'Bebas Neue',sans-serif;
    font-size:42px;
    margin-bottom:10px;
}

.cta-box p{
    color:#b5b5b5;
    margin-bottom:25px;
    font-size:18px;
}

.cta-button{
    display:inline-block;

    padding:14px 32px;

    background:#00ff9d;
    color:#000;

    font-weight:700;

    border-radius:12px;

    transition:.3s;
}

.cta-button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,255,157,.25);
}