* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #080808; /* Dark theme consistency */
    display: flex;
    justify-content: center;
    padding: 2rem;
}

/* Flyer Container (Optimized for A4 aspect ratio display) */
.flyer-page {
    width: 210mm; /* A4 width */
    height: 297mm; /* A4 height */
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Green Color definitions */
:root {
    --skutt-green: #4CAF50;
    --dark-green: #1a4d1d;
    --flyer-bg: #000;
    --text-color: #fff;
    --faded-text: #aaa;
}

/* HEADER GEOMETRY (Etsy Inspired) */
.flyer-header {
    height: 30%;
    display: flex;
    position: relative;
}

.name-box {
    width: 60%;
    background: var(--flyer-bg);
    padding: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.name-box h1 {
    font-size: 5rem; font-weight: 800; text-transform: uppercase;
    line-height: 0.9; color: var(--text-color); margin-bottom: 1rem;
    letter-spacing: -2px;
}

.name-box h2 {
    font-size: 1.5rem; font-weight: 300; text-transform: uppercase;
    color: var(--skutt-green); letter-spacing: 4px;
}

/* Graduation Year Circle (floating) */
.grad-circle {
    position: absolute;
    top: 30px; left: 30px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background-color: var(--skutt-green);
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center; justify-content: center;
    font-weight: 800; text-transform: uppercase;
}

.grad { font-size: 0.7rem; }
.year { font-size: 1.4rem; line-height: 1.1; }

.main-portrait-frame {
    width: 40%;
    height: 110%; /* Crops portrait slightly above and below header */
    position: absolute;
    top: -5%; right: 0;
    overflow: hidden;
    z-index: 5;
    background: var(--dark-green);
}

.main-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* SUB HEADER (3 horizontal boxes) */
.sub-header {
    height: 8%;
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-evenly;
}

.sub-box {
    width: 33.33%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.green-box { background-color: var(--dark-green); }

.sub-box .label {
    font-size: 0.8rem; text-transform: uppercase; color: var(--faded-text);
    font-weight: 500; letter-spacing: 1px;
}

.sub-box .value {
    font-size: 1.2rem; font-weight: 700; color: var(--text-color);
}

/* MAIN BODY (Two Column Grid) */
.flyer-body {
    flex-grow: 1;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    color: var(--text-color);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem; font-weight: 800; text-transform: uppercase;
    color: var(--skutt-green); letter-spacing: 2px;
    border-bottom: 2px solid var(--skutt-green);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.info-block p {
    font-size: 1rem; color: #fff; margin-bottom: 0.8rem; line-height: 1.4;
}

.info-block span.label {
    font-weight: 700; color: #aaa; text-transform: uppercase;
    font-size: 0.9rem; letter-spacing: 0.5px; margin-right: 8px;
}

/* Academics styling (Etsy geometry) */
.stat-row { display: flex; gap: 2rem; margin-bottom: 1rem; }
.acad-block .award {
    padding-left: 15px; border-left: 3px solid var(--skutt-green);
    color: var(--faded-text); font-size: 0.9rem;
}

/* Circular photo insert in left column */
.photo-insert-circle {
    width: 180px; height: 180px; border-radius: 50%;
    border: 8px solid #111;
    overflow: hidden;
    margin-left: 30px; margin-top: -10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.photo-insert-circle img {
    width: 100%; height: 100%; object-fit: cover;
}

/* ATHLETIC STATS GRID (4 boxes) */
.stat-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 15px; margin-bottom: 1.5rem;
}

.stat-box {
    background: #111; border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px; padding: 1rem; text-align: center;
    font-weight: 800; font-size: 1.2rem;
}

.stat-box .label { font-size: 0.75rem; color: #888; font-weight: 500; }

/* Accolades & Coaches */
.awards-block ul { list-style: circle; padding-left: 20px; color: var(--faded-text); }
.awards-block li { margin-bottom: 0.8rem; font-size: 0.95rem; }

.coaches-block .coach-box { margin-bottom: 1rem; }
.coaches-block .coach-name { font-weight: 700; color: #fff; margin-bottom: 0; }
.coaches-block p { font-size: 0.85rem; color: var(--faded-text); }

/* FOOTER (Etsy Accent Images) */
.flyer-footer {
    height: 12%; background: #080808;
    display: flex; border-top: 1px solid rgba(255,255,255,0.1);
}

.accent-img {
    width: 33.33%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    filter: brightness(0.8);
}