.game-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--primary-container-color);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#question {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    line-height: 1.4;
}

.answer-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    margin: 1rem 0;
    background: var(--secondary-container-color);
    color: var(--text-color);
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.answer-btn:hover:not(.correct):not(.wrong) {
    transform: translateY(-3px);
    background: var(--field-hover);
    border-color: var(--gradient-color1);
}

.correct {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    transform: scale(1.02);
}

.wrong {
    background: linear-gradient(45deg, #f44336, #da190b);
    color: white;
    transform: scale(0.98);
}

#result {
    margin: 2rem 0;
    font-weight: bold;
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-color);
    padding: 1rem;
    border-radius: 8px;
    background: var(--secondary-container-color);
}

.progress-text {
    text-align: center;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 1.2rem;
}

.progress-bar {
    width: calc(100% + 4rem);
    height: 25px;
    background: var(--secondary-container-color);
    border-radius: 15px 15px 0 0;
    margin: -2rem -2rem 2rem -2rem;
    overflow: hidden;
}

#progress-fill {
    height: 100%;
    background: linear-gradient(var(--gradient-degree), var(--gradient-color1), var(--gradient-color2));
    width: 0%;
    transition: width 0.5s ease-in-out;
    border-radius: 15px 15px 0 0;
}

#next-btn, #restart-btn {
    display: block;
    margin: 2rem auto;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(var(--gradient-degree), var(--gradient-color1), var(--gradient-color2));
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#next-btn:hover, #restart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.answers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.stats-container {
    margin-bottom: 20px;
}
.stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem;
    background: var(--primary-container-color);
    border-radius: 8px;
    font-weight: bold;
}

.stat span:first-child {
    min-width: 120px;
}

.stat-bar {
    flex-grow: 1;
    height: 20px;
    background: var(--secondary-container-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    max-width: 600px;
}

#neuverschuldung-value, #innovation-value {
    height: 100%;
    width: 50%;
    transition: width 0.3s ease;
    position: relative;
}

#neuverschuldung-value {
    background: linear-gradient(45deg, #ff4444, #ff6b6b);
}

#innovation-value {
    background: linear-gradient(45deg, #00C851, #00D668);
}

.stat-bar::after {
    content: attr(data-value);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    font-size: 0.8rem;
}

.b-title {
    font-size: 24px;
    margin: 0;
    background: -webkit-linear-gradient(var(--gradient-degree), var(--gradient-color1), var(--gradient-color2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.c-content p {
    margin-bottom: 0;
}

.stats-final {
    margin: 2rem 0;
}

.party-matches {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#final-neuverschuldung {
    height: 100%;
    background: linear-gradient(45deg, #ff4444, #ff6b6b);
    border-radius: 10px;
    transition: width 0.3s ease;
}

#final-innovation {
    height: 100%;
    background: linear-gradient(45deg, #00C851, #00D668);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.übereinstimmung {
    position: absolute;
    right: 10px;
    color: var(--text-color);
    font-size: medium;
}

.match-bar-fill {
    height: 100%;
    background: linear-gradient(var(--gradient-degree), var(--gradient-color1), var(--gradient-color2));
    border-radius: 10px;
    transition: width 0.3s ease;
}

.stat-value {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    font-size: 0.9rem;
    z-index: 1;
}
