*{box-sizing:border-box}
body{margin:0;background:#faf7f2;color:#20241f;font-family:system-ui,-apple-system,'Segoe UI',Arial,sans-serif}
img{max-width:100%;display:block}
h1,h2,h3{font-family:Georgia,'Times New Roman',serif;font-weight:400;margin:0}
a{color:inherit}

/* hero */
.hero{
    position:relative;
    min-height:60vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:2rem;
    background:linear-gradient(to bottom, rgba(1,20,12,0.45), rgba(1,20,12,0.82)), url('https://upload.wikimedia.org/wikipedia/commons/thumb/0/06/MCG_grandstand.jpg/500px-MCG_grandstand.jpg');
    background-position:center;
    background-size:cover;
}
.hero h1{color:#fff;font-size:clamp(2.4rem,7vw,4.2rem);letter-spacing:0.04em;text-shadow:0 4px 24px rgba(0,0,0,0.55)}

/* section title */
.section-title{text-align:center;padding:3.5rem 1.5rem 0}
.section-title h2{font-size:clamp(1.4rem,3.2vw,2rem);color:#0b3d2c;max-width:820px;margin:0 auto;line-height:1.4}
.players .section-title h2{color:#f0e6d6}

/* highlight cards */
.highlights{max-width:1100px;margin:0 auto;padding:2.5rem 1.5rem 5rem;display:grid;grid-template-columns:repeat(3,1fr);gap:1.75rem}
@media (max-width:860px){ .highlights{grid-template-columns:1fr;max-width:520px} }
.highlight-card{background:#fff;border:1px solid rgba(11,61,44,0.08);border-radius:16px;overflow:hidden;box-shadow:0 12px 28px rgba(11,61,44,0.08);transition:box-shadow .25s ease,transform .25s ease}
.highlight-card:hover{transform:translateY(-3px);box-shadow:0 20px 42px rgba(11,61,44,0.14)}
.highlight-card img{width:100%;aspect-ratio:4/3;object-fit:cover}
.highlight-card p{padding:1.4rem;font-size:0.95rem;line-height:1.7;color:#3a352c;margin:0}

/* players */
.players{background:#0b2f22;padding-bottom:5rem}
.player-grid{max-width:1240px;margin:0 auto;padding:2.5rem 1.5rem 0;display:grid;grid-template-columns:repeat(auto-fill,minmax(235px,1fr));gap:1.75rem}
.player-card{background:#fff;border-radius:14px;padding:1.6rem 1.3rem;display:flex;flex-direction:column;align-items:center;text-align:center;gap:0.65rem;box-shadow:0 12px 26px rgba(0,0,0,0.25);transition:transform .25s ease}
.player-card:hover{transform:translateY(-4px)}
.player-photo{width:130px;height:130px;object-fit:cover;border-radius:50%;border:3px solid #f0e6d6}
.player-card h3{font-size:1.1rem;color:#0b3d2c}
.player-flag{width:34px;height:24px;object-fit:cover;box-shadow:0 2px 6px rgba(0,0,0,0.3)}
.player-card p{font-size:0.83rem;line-height:1.65;color:#3a352c;margin:0}
.interview-link{margin-top:0.5rem;display:inline-block;padding:0.5rem 1.3rem;border-radius:999px;background:linear-gradient(135deg,#e9d9b8,#c9a24b);color:#0b2f22;font-size:0.78rem;font-weight:600;text-decoration:none;transition:transform .2s ease,box-shadow .2s ease}
.interview-link:hover{transform:translateY(-2px);box-shadow:0 10px 22px rgba(201,162,75,0.35)}

/* matches */
.matches{max-width:900px;margin:0 auto;padding:2.5rem 1.5rem 5rem}
.match-list{margin-top:2rem;display:flex;flex-direction:column;gap:1.75rem}
.match-card{display:flex;gap:1.75rem;align-items:center;background:#fff;border:1px solid rgba(11,61,44,0.08);border-radius:16px;padding:1.75rem;box-shadow:0 12px 26px rgba(11,61,44,0.07)}
.match-card img{width:38%;max-width:260px;aspect-ratio:4/3;object-fit:cover;border-radius:12px;flex-shrink:0}
.match-card--reverse{flex-direction:row-reverse}
.match-card h3{font-size:1.1rem;color:#0b3d2c;margin-bottom:0.6rem;line-height:1.3}
.match-card p{font-size:0.92rem;line-height:1.75;color:#3a352c;margin:0}
@media (max-width:700px){
    .match-card,.match-card--reverse{flex-direction:column}
    .match-card img{width:100%;max-width:none}
}

/* footer */
.site-footer{background:#0b2f22;padding:4rem 1.5rem 3.5rem;text-align:center}
.footer-statement{max-width:720px;margin:0 auto;color:#f0e6d6;font-family:Georgia,serif;font-style:italic;font-size:1.05rem;line-height:1.85}
.creator-name{margin:2rem 0 0;color:rgba(255,255,255,0.5);font-size:0.85rem;letter-spacing:0.05em}
