*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,sans-serif;
    color:#222;
    background:#fff;
    line-height:1.6;
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

header{
    position:sticky;
    top:0;
    background:white;
    z-index:1000;
    border-bottom:1px solid #ececec;
}

.container{
    width:min(1200px,92%);
    margin:auto;
}

.nav{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:80px;
}

.logo{

    font-size:30px;
    font-weight:800;
    letter-spacing:2px;
}

.logo span{

    color:#b11226;
}

nav{

    display:flex;
    gap:32px;
}

nav a{

    font-weight:600;
}

.hero{

    display:flex;
    align-items:center;
}

.hero-grid{

    display:grid;
    grid-template-columns:1fr 320px;
    gap:60px;
    align-items:center;
}

.hero h1{

    font-size:64px;
    line-height:1;
    margin-bottom:18px;
}

.hero h2{

    font-size:24px;
    font-weight:400;
    color:#777;

    margin-bottom:30px;
}

.info{

    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:35px;
}

.tag{

    padding:10px 18px;
    border:1px solid #ddd;
    border-radius:100px;
    font-size:14px;
}

.bio{

    max-width:700px;
    font-size:18px;
}

.button{
    display:inline-block;
    margin-top:40px;
    padding:14px 32px;
    background:#b11226;
    color:white;
    border-radius:50px;
}

.hero-image{
    width:320px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

section{
    padding:40px 0;
}

.title{

    font-size:36px;
    margin-bottom:35px;
}

.cards{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.card{

    border:1px solid #ececec;
    border-radius:16px;
    padding:30px;
}

.card h3{

    margin-bottom:12px;
}

footer{

    border-top:1px solid #ececec;
    padding:40px 0;
    color:#777;
}

header {
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    height: 80px;
}

.logo img {
    display: block;
    height: 42px;
    width: auto;
    max-width: 100%;
}

.career-table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
    font-size:15px;
}

.career-table th{
    text-align:left;
    padding:10px 0;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:#888;
    border-bottom:2px solid #ececec;
}

.career-table td{
    padding:12px 0;
    border-bottom:1px solid #f1f1f1;
    vertical-align:top;
}

.career-table tr:last-child td{
    border-bottom:none;
}

.career-table td:first-child{
    width:60px;
    font-weight:700;
}

.career-table td:last-child{
    width:70px;
    text-align:right;
    font-weight:600;
}

.career-table a{
    color:#222;
    text-decoration:none;
    transition:.2s;
}

.career-table a:hover{
    color:#b11226;
}

.career-table tr:hover{
    background:#fafafa;
}

.career-table tbody tr{
    transition:background .2s;
}

.career-table tbody tr:hover{
    background:#f7f7f7;
}

.club-years{
    margin:6px 0 14px 18px;
    padding-left:14px;
    list-style:none;
    border-left:2px solid #e5e5e5;
}

.club-years li{
    margin:3px 0;
    color:#666;
    font-size:15px;
    cursor:pointer;
    transition:.2s;
}

.club-years li:hover{
    color:#b11226;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:34px;
    cursor:pointer;
    color:#222;
}

.game-date{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:18px 0 20px;
}

.badge{
    padding:4px 12px;
    border-radius:999px;
    font-size:11px;
    font-weight:700;
    color:#fff;
}

.badge.home{
    background:#19a463;
}

.badge.away{
    background:#2d6cdf;
}

.club-logo{
    display:block;
    width:60px;
    height:60px;
    margin:0 auto 14px;
    object-fit:contain;
}

.game-opponent{
    text-align:center;
    font-size:22px;
    font-weight:700;
    line-height:1.2;
}

.game-info{
    text-align:center;
    margin-top:6px;
    color:#777;
    font-size:14px;
}


@media (max-width:900px){

.nav{
    min-height:64px;
    padding:10px 0;
    position:relative;
}

.logo img{
    height:30px;
}

.menu-toggle{
    display:block;
}

nav{
    display:none;
    position:absolute;
    top:64px;
    left:0;
    width:100%;
    background:#fff;
    border-top:1px solid #ececec;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

nav.show{
    display:flex;
    flex-direction:column;
}

nav a{
    padding:16px 20px;
    border-bottom:1px solid #f2f2f2;
}

.hero-grid{
    display:flex;
    flex-direction:column-reverse;
    text-align:center;
}

.hero{
padding:70px 0;
}

.hero h1{
font-size:42px;
}

nav{
display:none;
}

.hero-image{
    width:100%;
    max-width:320px;
    height:300px;
    overflow:hidden;
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
}

}

.coming-soon{

    max-width:700px;
    margin:80px auto;
    padding:70px 40px;

    text-align:center;

    border:1px solid #ececec;
    border-radius:24px;

    background:#fafafa;
}

.coming-icon{

    font-size:70px;
    margin-bottom:25px;
}

.coming-soon h1{

    font-size:42px;
    margin-bottom:15px;
}

.coming-soon p{

    color:#777;
    font-size:18px;
    max-width:520px;
    margin:0 auto 35px;
}

.coming-badge{

    display:inline-block;

    padding:12px 26px;

    background:#b11226;
    color:#fff;

    border-radius:999px;

    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

/* ===========================
   404 PAGE
=========================== */

.error404{

    padding:80px 0;
}

.error404-card{

    max-width:760px;

    margin:auto;

    text-align:center;

    padding:60px 40px;

    border:1px solid #ececec;
    border-radius:28px;

    background:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.error404-image{

    margin-bottom:35px;
}

.error404-image img{

    width:260px;
    max-width:100%;
    margin:auto;
}

.error404-code{

    font-size:90px;
    font-weight:800;
    line-height:1;

    color:#b11226;

    margin-bottom:12px;
}

.error404 h1{

    font-size:44px;

    margin-bottom:20px;

    letter-spacing:2px;
}

.error404 p{

    max-width:480px;

    margin:0 auto 40px;

    color:#666;

    font-size:20px;
}

.error404 strong{

    color:#b11226;
}

@media (max-width:900px){

.error404{

    padding:40px 0;
}

.error404-card{

    padding:40px 25px;
}

.error404-image img{

    width:180px;
}

.error404-code{

    font-size:70px;
}

.error404 h1{

    font-size:34px;
}

.error404 p{

    font-size:17px;
}

}