/* リセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ヘッダー */
.header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* メインコンテンツ */
.main {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

/* セクション共通 */
section {
    margin-bottom: 50px;
}

section:last-child {
    margin-bottom: 0;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* フォーム要素 */
.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.input-field, .textarea-field, .formula-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-field:focus, .textarea-field:focus, .formula-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.textarea-field, .formula-textarea {
    resize: vertical;
    min-height: 100px;
}

.formula-textarea {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    background: #f8f9fa;
}

/* 変数セクション */
.variables-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
}

.variables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.variable-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.variable-item:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.variable-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.variable-desc {
    color: #666;
    font-size: 0.9rem;
}

.btn-remove-var {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-remove-var:hover {
    background: #ff3742;
    transform: scale(1.1);
}

.btn-add-var {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-add-var:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* 計算式入力セクション */
.formula-input-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
}

.formula-input-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 25px;
    align-items: start;
}

.formula-help {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.formula-help ul {
    margin: 10px 0;
    padding-left: 20px;
}

.formula-help li {
    margin-bottom: 8px;
    color: #555;
}

.formula-examples {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.formula-examples code {
    display: block;
    background: #f1f3f4;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #d63384;
    margin-bottom: 8px;
}

/* テスト計算セクション */
.test-calculation-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
}

.test-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.test-input-item {
    display: flex;
    flex-direction: column;
}

.test-input-item label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #555;
}

.test-input-item input {
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
}

.test-result {
    background: white;
    border: 2px solid #28a745;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.test-result h4 {
    color: #28a745;
    margin-bottom: 10px;
}

.test-result .result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
}

/* アクションボタン */
.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary, .btn-secondary, .btn-test, .btn-copy, .btn-share, .btn-remove {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-test {
    background: #17a2b8;
    color: white;
}

.btn-test:hover {
    background: #138496;
    transform: translateY(-2px);
}

.btn-copy {
    background: #28a745;
    color: white;
}

.btn-copy:hover {
    background: #218838;
    transform: translateY(-2px);
}

.btn-share {
    background: #17a2b8;
    color: white;
}

.btn-share:hover {
    background: #138496;
    transform: translateY(-2px);
}

/* 保存された計算式 */
.saved-formulas-section {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid #e9ecef;
}

.formulas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.formula-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.formula-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.1);
}

.formula-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.formula-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.formula-card .formula-template {
    background: white;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #667eea;
    border: 1px solid #e9ecef;
    margin-bottom: 15px;
    word-break: break-all;
}

.formula-card .formula-variables {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 15px;
}

.formula-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.formula-actions button {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 20px;
}

/* アップロードエリア */
.upload-area {
    border: 3px dashed #ddd;
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
    margin: 20px 0;
}

.upload-area:hover {
    border-color: #667eea;
    background: #f0f4ff;
    transform: translateY(-2px);
}

.upload-area.dragover {
    border-color: #667eea;
    background: #e8f2ff;
    transform: scale(1.02);
}

.upload-icon {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 20px;
}

.upload-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.upload-content p {
    color: #666;
    font-size: 1rem;
}

.image-preview {
    text-align: center;
    margin: 20px 0;
}

.image-preview img {
    max-width: 100%;
    max-height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* OCR設定 */
.ocr-setup {
    margin-top: 30px;
}

.ocr-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.ocr-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.ocr-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.ocr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.ocr-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-areas {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.value-area-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.value-area-item .area-name {
    font-weight: 600;
    color: #333;
}

.value-area-item .area-coords {
    font-size: 0.85rem;
    color: #666;
}

.value-area-item .area-value {
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
}

/* 解析結果 */
.analysis-result, .calculation-result {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
}

.detected-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.value-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    text-align: center;
}

.value-item .value-name {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.value-item .value-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.final-score {
    text-align: center;
    margin: 25px 0;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border: 3px solid #667eea;
}

.final-score .score-label {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
}

.final-score .score-value {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.result-details {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    margin: 20px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

.result-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

/* Discord提出注意書き */
.discord-notice {
    background: #5865f2;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(88, 101, 242, 0.3);
}

.discord-notice i {
    font-size: 18px;
    color: #ffffff;
}

/* 共有モーダル */
.share-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.modal-close:hover {
    color: #333;
}

.share-link-container {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.share-link-container .input-field {
    flex: 1;
    margin: 0;
}

/* 通知 */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 400px;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
}

.notification.error {
    background: #dc3545;
}

.notification.warning {
    background: #ffc107;
    color: #333;
}

/* 入力セクション */
.input-section {
    margin-bottom: 30px;
}

.input-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.input-item {
    display: flex;
    flex-direction: column;
}

.input-item label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

/* 入力警告 */
.input-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 20px 0;
    color: #856404;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-warning i {
    color: #f39c12;
    font-size: 16px;
}

/* 結果セクション */
.result-section {
    margin-bottom: 40px;
}

.result-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-container {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #dee2e6;
}

.calculated-score {
    text-align: center;
    margin: 25px 0;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border: 3px solid #667eea;
}

.calculated-score h3 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.calculated-score .score-value {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.calculated-score .score-formula {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: #666;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
}

/* スコアレベル */
.score-level {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.score-level h3 {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.level-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.level-description {
    color: #666;
    font-size: 0.95rem;
}

/* コンボ情報 */
.combo-info {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.combo-info h3 {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.combo-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
}

/* 詳細情報 */
.details-info {
    margin: 25px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.details-info h3 {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.detail-label {
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}

/* 結果文章 */
.result-text {
    margin: 25px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.result-text h3 {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-description {
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    white-space: pre-line;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

/* 結果セクション */
.result-section {
    margin-bottom: 40px;
}

.result-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-container {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #dee2e6;
}

.calculated-score {
    text-align: center;
    margin: 25px 0;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border: 3px solid #667eea;
}

.calculated-score h3 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.calculated-score .score-value {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 10px;
}

.calculated-score .score-formula {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: #666;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
}

/* スコアレベル */
.score-level {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.score-level h3 {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.level-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.level-description {
    color: #666;
    font-size: 0.95rem;
}

/* コンボ情報 */
.combo-info {
    text-align: center;
    margin: 25px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.combo-info h3 {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.combo-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b35;
}

/* 詳細情報 */
.details-info {
    margin: 25px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.details-info h3 {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.detail-label {
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}

/* 結果文章 */
.result-text {
    margin: 25px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.result-text h3 {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-description {
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    white-space: pre-line;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

/* 入力セクション */
.input-section {
    margin-bottom: 30px;
}

.input-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.input-item {
    display: flex;
    flex-direction: column;
}

.input-item label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

/* 入力警告 */
.input-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 20px 0;
    color: #856404;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-warning i {
    color: #f39c12;
    font-size: 16px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .main {
        padding: 20px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .formula-input-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .variables-grid {
        grid-template-columns: 1fr;
    }
    
    .formulas-grid {
        grid-template-columns: 1fr;
    }
    
    .ocr-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .result-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .share-link-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.5rem;
    }
    
    .upload-icon {
        font-size: 3rem;
    }
    
    .upload-content h3 {
        font-size: 1.2rem;
    }
    
    .btn-primary, .btn-secondary, .btn-test, .btn-copy, .btn-share, .btn-remove {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .final-score .score-value {
        font-size: 2rem;
    }
}