﻿body {
    margin: 0;
    background: #eef1f5;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.share-wrap {
    width: 1200px;
    height: 630px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fb 0%, #e9edf3 100%);
}

.baseball-card {
    width: 880px;
    height: 560px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border: 10px solid #d9dee5;
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

    .baseball-card::before {
        content: "";
        position: absolute;
        inset: 14px;
        border: 2px solid #e5e7eb;
        border-radius: 16px;
        pointer-events: none;
    }

.card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.brand img {
    height: 64px;
    width: auto;
    display: block;
}

.brand-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #234;
}

.card-name {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    color: #10233f;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.card-subtitle {
    text-align: center;
    font-size: 20px;
    color: #6b7280;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 6px;
    position: relative;
    z-index: 1;
}

.hero-stat {
    text-align: center;
    margin: 12px 0 8px;
    position: relative;
    z-index: 1;
}

.hero-number {
    font-size: 96px;
    font-weight: 900;
    line-height: 0.95;
    color: #b00000;
}

.hero-label {
    font-size: 28px;
    font-weight: 700;
    color: #10233f;
    margin-top: 8px;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.stat-box {
    background: #ffffff;
    border: 1px solid #dbe1e8;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 4px 12px rgba(16, 35, 63, 0.06);
}

.stat-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 6px;
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #10233f;
    line-height: 1.1;
}

.stat-text {
    font-size: 28px;
}

.card-footer {
    text-align: center;
    font-size: 20px;
    color: #4b5563;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

@page {
    size: 1200px 630px;
    margin: 0;
}

html, body {
    margin: 0;
    padding: 0;
}

@media print {
    body {
        background: white !important;
    }

    .save-btn {
        display: none !important;
    }

    .share-wrap {
        width: 1200px !important;
        height: 630px !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        background: white !important;
    }

    .baseball-card {
        width: 1200px !important;
        height: 630px !important;
        margin: 0 !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
}
