body {
    background: #0f1117;
    color: #e6edf3;
    font-family: 'Inter', sans-serif;
}

.critics-wrapper {
    display: flex;
    justify-content: center;
}

.critics-container {
    width: 100%;
    max-width: 1100px;
    background: #161b22;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

h1 {
    margin-bottom: 10px;
    font-size: 26px;
}

h2 {
    margin-bottom: 30px;
    color: #8b949e;
    font-weight: 400;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

th {
    text-align: left;
    padding: 12px 10px;
    font-weight: 600;
    color: #8b949e;
    border-bottom: 1px solid #30363d;
}

td {
    padding: 10px;
}

select, input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #30363d;
    background: #0d1117;
    color: #e6edf3;
}

select:focus, input:focus {
    outline: none;
    border-color: #58a6ff;
}

.button-row {
    display: flex;
    gap: 15px;
}

button {
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-add {
    background: #21262d;
    color: #e6edf3;
}

.btn-add:hover {
    background: #30363d;
}

.btn-submit {
    background: #238636;
    color: white;
    font-weight: 600;
}

.btn-submit:hover {
    background: #2ea043;
}

.success {
    margin-top: 20px;
    padding: 12px;
    background: rgba(46,160,67,0.15);
    border-left: 4px solid #2ea043;
    border-radius: 6px;
}

.error {
    margin-top: 20px;
    padding: 12px;
    background: rgba(248,81,73,0.15);
    border-left: 4px solid #f85149;
    border-radius: 6px;
}

.pending-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pending-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #0d1117;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #30363d;
}

.score-badge {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    border-radius: 6px;
    color: #fff;
}

.score-green {
    background: #2ea043;
}

.score-yellow {
    background: #d29922;
}

.score-red {
    background: #da3633;
}

.pending-info span {
    display: block;
    font-size: 14px;
    color: #8b949e;
}



.game-title {
    color: #58a6ff;
}

.average-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.score-badge-large {
    width: 80px;
    height: 80px;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: white;
}

.score-grey {
    background: #30363d;
}

.average-label {
    color: #8b949e;
    font-size: 14px;
}


.game-title-link {
    color: #58a6ff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.game-title-link:hover {
    color: #79c0ff;
    text-shadow: 0 0 8px rgba(88,166,255,0.6);
}



.score-comparison {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.score-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score-label {
    margin-top: 8px;
    font-size: 14px;
    color: #8b949e;
}

.score-divider {
    font-size: 30px;
    color: #30363d;
}