@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&family=Inter:wght@400;500;600&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0F1113;
    color: #ECE8E1;
    max-width: 560px;
    margin: 0 auto;
    padding: 48px 24px;
}

h1 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.subtitle {
    color: #7C7F85;
    font-size: 14px;
    margin: 0 0 40px;
}

.picker-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.picker {
    flex: 1;
}

label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7C7F85;
    margin-bottom: 8px;
}

select {
    width: 100%;
    background: #1A1D21;
    color: #ECE8E1;
    border: 1px solid #2A2D31;
    border-radius: 4px;
    padding: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    appearance: none;
}

select:focus {
    outline: none;
    border-color: #FF4655;
}

.vs {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: #FF4655;
    font-size: 18px;
    padding-top: 20px;
}

button {
    width: 100%;
    background: #FF4655;
    color: #0F1113;
    border: none;
    border-radius: 4px;
    padding: 14px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.15s;
}

button:hover {
    background: #E63946;
}

#result {
    margin-top: 32px;
}

.split-bar {
    display: flex;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin: 16px 0;
    background: #1A1D21;
}

.split-bar-fill {
    background: #FF4655;
    transition: width 0.4s ease;
}

.split-labels {
    display: flex;
    justify-content: space-between;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
}

.result-summary {
    color: #7C7F85;
    font-size: 14px;
    margin: 8px 0 24px;
}

.stat-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.stat-table th, .stat-table td {
    text-align: left;
    padding: 10px 8px;
    border-bottom: 1px solid #1A1D21;
}

.stat-table th {
    color: #7C7F85;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.h2h-note {
    color: #7C7F85;
    font-size: 13px;
    margin-top: 16px;
}