body {
    font-family: Arial, sans-serif;
    background: #f4f7fb;
    margin: 0;
    padding: 20px;
    color: #1f2937;
}

h1, h2, h3 {
    margin-top: 0;
    color: #111827;
}

p {
    line-height: 1.5;
}

a {
    color: #1565c0;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

.menu {
    background: white;
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.menu a {
    margin-right: 12px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

table th,
table td {
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    text-align: left;
}

table th {
    background: #2e7d32;
    color: white;
    font-weight: bold;
}

table tr:nth-child(even) {
    background: #f9fbfc;
}

input,
select,
button {
    padding: 10px 12px;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    font-size: 14px;
}

input:focus,
select:focus {
    outline: none;
    border-color: #1565c0;
    box-shadow: 0 0 0 3px rgba(21,101,192,0.12);
}

button {
    background: #2e7d32;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

button:hover {
    background: #256628;
}

.card {
    background: white;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.badge {
    display: inline-block;
    background: #1565c0;
    color: white;
    padding: 6px 10px;
    margin-right: 8px;
    margin-bottom: 8px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.win-badge {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
}

.loss-badge {
    display: inline-block;
    background: #c62828;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 13px;
}

.section-space {
    margin-bottom: 24px;
}

.card-link {
    text-decoration: none;
    color: inherit;
}

.card-link:hover {
    text-decoration: none;
}

.card-link:hover .card {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}

.card-link .card h3 {
    margin-bottom: 10px;
}

.card-link .card p {
    margin: 0;
    color: #374151;
}

/* Score table for submit/edit result */
.score-table {
    width: 100px;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.score-table th,
.score-table td {
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    vertical-align: middle;
}

.score-table th:first-child,
.score-table td:first-child {
    width: 100px;
    text-align: left;
}

.score-table th:not(:first-child),
.score-table td:not(:first-child) {
    width: 100px;
    text-align: center;
}

.score-input {
    width: 100px;
    text-align: center;
    padding: 8px 6px;
}

.landing-page {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.landing-logo img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 20px;
}

.landing-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.landing-subtitle {
    font-size: 18px;
    color: #4b5563;
    max-width: 700px;
    margin-bottom: 30px;
}

.landing-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.landing-button {
    display: inline-block;
    padding: 14px 28px;
    background: #2e7d32;
    color: white;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.landing-button:hover {
    background: #256628;
    text-decoration: none;
    transform: translateY(-2px);
}

.landing-button.secondary {
    background: #1565c0;
}

.landing-button.secondary:hover {
    background: #0f4fa0;
}

.landing-body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #eef4fb 0%, #dfe9f6 100%);
}

.landing-page {
    width: 100%;
    max-width: 700px;
    text-align: center;
    background: white;
    border: 1px solid #dbe2ea;
    border-radius: 18px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.landing-logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.landing-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #0f172a;
}

.landing-subtitle {
    font-size: 18px;
    color: #475569;
    margin-bottom: 35px;
}

.landing-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.landing-button {
    min-width: 180px;
    display: inline-block;
    padding: 14px 26px;
    background: #1565c0;
    color: white;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.landing-button:hover {
    background: #0f4fa0;
    text-decoration: none;
    transform: translateY(-2px);
}

.landing-button.secondary {
    background: #2e7d32;
}

.landing-button.secondary:hover {
    background: #256628;
}

.landing-button.outline {
    background: white;
    color: #1565c0;
    border: 2px solid #1565c0;
}

.landing-button.outline:hover {
    background: #1565c0;
    color: white;
}
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #eef4fb 0%, #dfe9f6 100%);
    margin: 0;
    padding: 20px;
    color: #1f2937;
}

h1, h2, h3 {
    margin-top: 0;
    color: #0f172a;
}

a {
    color: #1565c0;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

.card {
    background: white;
    border: 1px solid #dbe2ea;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    margin-bottom: 24px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

table th,
table td {
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    text-align: left;
}

table th {
    background: #2e7d32;
    color: white;
    font-weight: bold;
}

table tr:nth-child(even) {
    background: #f8fbff;
}

.win-badge {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.loss-badge {
    display: inline-block;
    background: #1565c0;
    color: white;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.section-space {
    margin-bottom: 24px;
}
.menu a:first-child,
.menu a:last-child {
    font-size: 22px;
    line-height: 1;
    vertical-align: middle;
}
.stat-card{

background:white;
padding:20px;
border-radius:12px;
box-shadow:0 2px 6px rgba(0,0,0,0.1);
width:120px;
text-align:center;

}

.stat-title{

font-size:14px;
color:#555;

}

.stat-value{

font-size:28px;
font-weight:bold;
margin-top:5px;

}