@import url('https://fonts.googleapis.com/css2?family=Forum&family=Courier+Prime:wght@400;700&family=Cormorant:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B7A;
    --primary-hover: #FF5468;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --bg-light: #FAFAFA;
    --bg-white: #FFFFFF;
    --border-color: #E5E5E5;
}

body {
    font-family: 'Forum', -apple-system, BlinkMacSystemFont, 'Segoe UI', serif;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 179, 186, 1) 85%, rgba(255, 107, 122, 1) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    padding: 0;
    color: #333;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 107, 122, 0.1);
}

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

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

header {
    background: transparent;
    color: var(--text-dark);
    padding: 50px 30px 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0px;
}

header h1 {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
    font-family: 'Courier Prime', monospace;
    color: var(--text-dark);
}

.header-content {
    position: relative;
    z-index: 1;
}

header .tagline {
    font-size: 1.1em;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: var(--text-gray);
}

header p.subtitle {
    font-size: 1.2em;
    font-weight: 300;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
    color: var(--text-gray);
}

.main-content {
    padding: 20px 40px 50px 40px;
    background: transparent;
}

.step {
    display: none;
    animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step.active {
    display: block;
}

.step h2 {
    margin-bottom: 25px;
    color: #1a1a1a;
    font-size: 2.2em;
    font-weight: 700;
    letter-spacing: -0.5px;
    font-family: 'Courier Prime', monospace;
}

.step > p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto 40px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2), 0 0 0 4px rgba(102, 126, 234, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.25), 0 0 0 4px rgba(102, 126, 234, 0.15);
}

video {
    width: 100%;
    height: auto;
    display: block;
}

canvas {
    width: 100%;
    height: auto;
    display: block;
}

.controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    padding: 16px 36px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Courier Prime', monospace;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
    position: relative;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(-1px);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    color: white;
}

.btn-secondary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
    background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
}

.btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #333;
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    background: linear-gradient(135deg, #ffb300 0%, #ffa000 100%);
}

.status {
    text-align: center;
    padding: 18px 24px;
    border-radius: 12px;
    margin-top: 25px;
    font-weight: 500;
    font-size: 15px;
    border-left: 4px solid;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    font-family: 'Courier Prime', monospace;
}

.status.recording {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    color: #856404;
    border-left-color: #ffc107;
}

.status.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left-color: #28a745;
}

.status.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left-color: #dc3545;
}

.loading {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    margin: 30px 0;
}

.loading p {
    font-size: 1.2em;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.spinner {
    border: 5px solid #f0f0f0;
    border-top: 5px solid var(--primary-color);
    border-right: 5px solid var(--primary-hover);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 0.8s linear infinite;
    margin: 20px auto;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.score-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    color: white;
}

.score-section h3 {
    font-size: 2.5em;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-family: 'Cormorant', serif;
}

.chart-container {
    background: white;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    position: relative;
    height: 450px;
}

.chart-container canvas {
    max-width: 100%;
    height: 100% !important;
}

.feedback-section {
    background: white;
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.feedback-section h3 {
    margin-bottom: 25px;
    color: #1a1a1a;
    font-size: 1.8em;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Courier Prime', monospace;
}

#feedbackList {
    line-height: 1.8;
}

#feedbackList p {
    margin-bottom: 15px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#feedbackList p:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.email-form-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.email-form-section h3 {
    margin-bottom: 15px;
    color: #1a1a1a;
    font-size: 1.8em;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Courier Prime', monospace;
}

.email-form-section > p {
    margin-bottom: 30px;
    color: #666;
    font-size: 1.05em;
    line-height: 1.6;
}

#emailForm {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
    letter-spacing: 0.2px;
    font-family: 'Courier Prime', monospace;
}

.form-group input {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fafbfc;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover {
    border-color: #ccc;
}

#sendEmailBtn {
    width: 100%;
    margin-top: 10px;
}

.email-success-section {
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    padding: 50px 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    border: 2px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.email-success-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 50px;
    color: white;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 1;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.email-success-section h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.email-success-section p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.email-success-section ul {
    text-align: left;
    display: inline-block;
    margin: 25px 0;
    color: #555;
    background: white;
    padding: 25px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}

.email-success-section ul li {
    margin-bottom: 12px;
    padding-left: 15px;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
}

.email-success-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.thank-you {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 30px !important;
    position: relative;
    z-index: 1;
}

/* Detailed Feedback Styles */
.detailed-feedback-section {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: none;
}

.detailed-feedback-section h3 {
    margin-bottom: 40px;
    color: #1a202c;
    font-size: 2.2em;
    font-weight: 800;
    text-align: center;
    letter-spacing: -1px;
    line-height: 1.2;
    font-family: 'Cormorant', serif;
}

.detailed-feedback-section h4 {
    margin-top: 50px;
    margin-bottom: 24px;
    color: #1a202c;
    font-size: 1.6em;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant', serif;
}

.detailed-feedback-section h4:first-of-type {
    margin-top: 0;
}

.summary-section {
    background: #f8fafc;
    padding: 32px 36px;
    border-radius: 16px;
    margin-bottom: 50px;
    border: 1px solid #e2e8f0;
    position: relative;
}

.summary-section h4 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #1a202c;
    font-size: 1.4em;
    font-weight: 700;
}

.summary-text {
    font-size: 1.1em;
    line-height: 1.75;
    color: #4a5568;
    margin: 0;
    font-weight: 400;
}

.strengths-section, .weaknesses-section {
    margin-bottom: 50px;
}

.feedback-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.feedback-item {
    background: #ffffff;
    padding: 28px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.feedback-item:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.strength-item {
    border-left: 4px solid #10b981;
    background: #f0fdf4;
}

.weakness-item {
    border-left: 4px solid #f59e0b;
    background: #fffbeb;
}

.feedback-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.feedback-title {
    font-weight: 600;
    font-size: 1.1em;
    color: #1a202c;
}

.feedback-score {
    font-weight: 700;
    font-size: 1.1em;
    padding: 6px 14px;
    border-radius: 8px;
    background: var(--primary-color);
    color: white;
    min-width: 55px;
    text-align: center;
}

.feedback-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.95em;
}

.feedback-value, .feedback-ideal {
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.feedback-value {
    color: #1a202c;
    font-weight: 600;
}

.feedback-value::before {
    content: 'Your: ';
    color: #718096;
    font-weight: 400;
}

.feedback-ideal {
    color: #4a5568;
    font-weight: 500;
}

.feedback-ideal::before {
    content: 'Ideal: ';
    color: #718096;
    font-weight: 400;
}

.feedback-tip {
    margin-top: 16px;
    padding: 14px 16px;
    background: #f1f5f9;
    border-radius: 8px;
    font-size: 0.95em;
    color: #475569;
    line-height: 1.6;
    border-left: 3px solid var(--primary-color);
}

.no-feedback {
    text-align: center;
    color: #a0aec0;
    font-style: italic;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    border: 2px dashed #cbd5e0;
}

.metrics-section {
    margin-top: 50px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.metrics-grid > .metric-item {
    grid-column: span 2;
}

.metrics-grid > .metric-item:nth-child(4) {
    grid-column: 1 / 4;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border: none;
    box-shadow: 0 10px 40px rgba(255, 107, 122, 0.3);
}

.metrics-grid > .metric-item:nth-child(4) .metric-label {
    color: rgba(255, 255, 255, 0.9);
}

.metrics-grid > .metric-item:nth-child(4) .metric-value {
    color: white;
}

.metrics-grid > .metric-item:nth-child(4) .metric-ideal {
    color: rgba(255, 255, 255, 0.8);
}

.metrics-grid > .metric-item:nth-child(4) .metric-score {
    color: rgba(255, 255, 255, 0.9);
}

.metrics-grid > .metric-item:nth-child(4) .metric-bar {
    background: rgba(255, 255, 255, 0.3);
}

.metrics-grid > .metric-item:nth-child(4) .metric-bar-fill {
    background: white;
}

.metrics-grid > .metric-item:nth-child(5) {
    grid-column: 4 / 7;
}

.metric-item {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.2s ease;
}

.metric-item:hover {
    border-color: #cbd5e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.metric-label {
    font-size: 0.8em;
    color: #64748b;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    font-size: 1.8em;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.metric-ideal {
    font-size: 0.85em;
    color: #94a3b8;
    margin-bottom: 16px;
    font-weight: 400;
}

.metric-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.metric-bar-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 0.6s ease;
}

.metric-score {
    font-size: 0.9em;
    font-weight: 600;
    color: #475569;
}

/* Body Warning Overlay */
.body-warning-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 640px;
    background: rgba(255, 107, 122, 0.85);
    backdrop-filter: blur(4px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    animation: fadeIn 0.3s ease-in;
}

.warning-content {
    text-align: center;
    color: white;
    padding: 30px;
}

.warning-icon {
    font-size: 64px;
    margin-bottom: 16px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.warning-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Forum', serif;
}

.warning-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Landmark Table Styling */
.landmark-table-section {
    margin-top: 50px;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.landmark-table-section h4 {
    font-size: 1.4em;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.landmark-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
    margin-top: 20px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.landmark-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: white;
}

.landmark-table th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.landmark-table th:first-child {
    border-top-left-radius: 8px;
}

.landmark-table th:last-child {
    border-top-right-radius: 8px;
}

.landmark-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.landmark-table tbody tr:hover {
    background-color: #f8fafc;
}

.landmark-table tbody tr:last-child {
    border-bottom: none;
}

.landmark-table td {
    padding: 14px 12px;
    color: #475569;
    font-weight: 400;
}

.landmark-table td:first-child {
    font-weight: 600;
    color: #1a202c;
    font-family: 'Courier New', monospace;
}

.landmark-table td:nth-child(2) {
    font-weight: 500;
    color: #334155;
}

.landmark-table td:nth-child(3) {
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.landmark-table td:nth-child(4),
.landmark-table td:nth-child(5),
.landmark-table td:nth-child(6) {
    font-family: 'Courier New', monospace;
    color: #475569;
}

.landmark-table td:nth-child(7) {
    color: #64748b;
    font-size: 0.85em;
}

@media (max-width: 768px) {
    .main-content {
        padding: 20px;
    }

    header h1 {
        font-size: 1.8em;
    }

    .controls {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .landmark-table-section {
        padding: 20px;
    }

    .landmark-table {
        font-size: 0.8em;
    }

    .landmark-table th,
    .landmark-table td {
        padding: 10px 8px;
    }

    /* Mobile-friendly metrics grid */
    .metrics-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .metrics-grid > .metric-item {
        grid-column: 1 / -1 !important;
    }

    .metrics-grid > .metric-item:nth-child(4),
    .metrics-grid > .metric-item:nth-child(5) {
        grid-column: 1 / -1 !important;
    }

    /* Mobile-friendly chart */
    .chart-container {
        height: 300px;
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .score-section h3 {
        font-size: 1.8em;
    }
}

