/* Custom styles for Japanese Study Quiz - Bootstrap 5 Integration */

/* CSS Variables for consistent theming */
:root {
    --primary-color: #0d6efd;
    --primary-dark: #0b5ed7;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --sidebar-width: 250px;
    --sidebar-bg: #2c3e50;
    --sidebar-text: #ecf0f1;
    --sidebar-hover: #34495e;
    --transition-speed: 0.3s;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    transition: margin-left var(--transition-speed) ease;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: var(--sidebar-width);
    background-color: var(--sidebar-bg);
    color: var(--sidebar-text);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform var(--transition-speed) ease;
    overflow-y: auto;
}

.sidebar-open {
    transform: translateX(0);
}

.sidebar-header {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.sidebar-header h3 {
    margin: 0;
    color: var(--sidebar-text);
    font-size: 1.25rem;
    font-weight: 600;
    /* align the header text with the menu item text */
    margin-left: 12px;
}

.sidebar-nav {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px); /* Subtract header height */
    position: relative;
}

.sidebar-menu-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--sidebar-text);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    border-left: 3px solid transparent;
}

.sidebar-menu-item:hover {
    background-color: var(--sidebar-hover);
    color: var(--sidebar-text);
    text-decoration: none;
    border-left-color: var(--primary-color);
}

.sidebar-menu-item.active {
    background-color: var(--primary-color);
    color: white;
    border-left-color: var(--warning-color);
}

.sidebar-menu-item i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

/* Auth section positioning */
#sidebarAuthSection {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/* Logout button styling */
/* Make logout item visually consistent with other sidebar items */
.logout-item {
    border-top: none;
    background-color: transparent;
}

.logout-item:hover {
    background-color: var(--sidebar-hover);
    border-left-color: var(--primary-color);
}

/* Sidebar Backdrop (Mobile) */
.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
}

.sidebar-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Main Content Area */
.main-content {
    min-height: 100vh;
    padding-top: 80px; /* Add padding to prevent content from hiding under fixed navbar */
}

/* Universal Overlay Sidebar Behavior - Both Desktop and Mobile */
.sidebar {
    transform: translateX(-100%);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar-open {
    transform: translateX(0);
}

.sidebar-open-mobile,
.sidebar-open-desktop {
    overflow: hidden;
}

/* Sidebar backdrop always visible when sidebar is open */
.sidebar-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Top Navigation Bar */
.top-navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.sidebar-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    padding: 0.5rem;
    cursor: pointer;
    transition: color var(--transition-speed) ease;
}

.sidebar-toggle:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0dcaf0 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Feature Cards */
.feature-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Quiz Specific Styles */
.quiz-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.quiz-header {
    text-align: center;
    margin-bottom: 2rem;
}

.quiz-title {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.progress-container {
    margin-bottom: 1rem;
}

.progress {
    height: 8px;
    border-radius: 4px;
}

.progress-bar {
    background: linear-gradient(90deg, var(--success-color), #20c997);
    transition: width 0.3s ease;
}

.question-counter {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.question-container {
    text-align: center;
}

.question-text {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choices-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.choice-btn {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-weight: 600;
    color: var(--dark-color);
}

.choice-btn:hover {
    border-color: var(--primary-color);
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.choice-btn.selected {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.choice-btn.correct {
    border-color: var(--success-color);
    background: var(--success-color);
    color: white;
}

.choice-btn.incorrect {
    border-color: var(--danger-color);
    background: var(--danger-color);
    color: white;
}

.navigation-btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.navigation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Results Section */
.results-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.results-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-size: 2rem;
}

.score-display {
    text-align: center;
    margin-bottom: 2rem;
}

.score-text {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.percentage-text {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.result-item {
    background: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid #e9ecef;
}

.result-item.correct {
    border-left-color: var(--success-color);
    background: #f0fff4;
}

.result-item.incorrect {
    border-left-color: var(--danger-color);
    background: #fff5f5;
}

.result-question {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.result-answer {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.result-explanation {
    font-size: 1rem;
    color: var(--secondary-color);
    font-style: italic;
}

.web-search-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    transition: all var(--transition-speed) ease;
}

.web-search-link:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

/* Donation Page Styles */
.donation-hero {
    background: linear-gradient(135deg, var(--success-color) 0%, #20c997 100%);
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.donation-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .quiz-title {
        font-size: 2rem;
    }
    
    .question-text {
        font-size: 1.5rem;
    }
    
    .choices-container {
        grid-template-columns: 1fr;
    }
    
    .donation-content {
        padding: 2rem 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .quiz-container,
    .results-section,
    .donation-content {
        padding: 1.5rem;
        margin: 1rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Customization Page Styles */
.customize-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.customize-header {
    text-align: center;
    margin-bottom: 3rem;
}

.customize-title {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.customize-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.customize-section {
    margin-bottom: 3rem;
}

.section-title {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

/* Direction Selection */
.direction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.direction-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-align: center;
}

.direction-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.direction-card.selected {
    border-color: var(--primary-color);
    background: #f8f9ff;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.direction-header {
    margin-bottom: 1rem;
}

.direction-header i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.direction-header h4 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.direction-example {
    text-align: center;
}

.example-question {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.example-arrow {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.example-choices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.example-choice {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
    background: #e9ecef;
    border-radius: 6px;
    color: var(--dark-color);
}

/* Level and Word Class Buttons */
.level-buttons,
.wordclass-buttons,
.quiz-length-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.level-btn,
.wordclass-btn,
.length-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.level-btn:hover,
.wordclass-btn:hover,
.length-btn:hover {
    border-color: var(--primary-color);
    background: #f8f9ff;
    transform: translateY(-1px);
}

.level-btn.active,
.wordclass-btn.active,
.length-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.selection-info {
    margin-top: 0.5rem;
}

/* Preview Section */
.preview-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.preview-example {
    max-width: 400px;
    margin: 0 auto;
}

.preview-question {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.preview-choices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.preview-choice {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: var(--dark-color);
    font-weight: 500;
}

/* Responsive Design for Customization */
@media (max-width: 768px) {
    .customize-title {
        font-size: 2rem;
    }
    
    .direction-grid {
        grid-template-columns: 1fr;
    }
    
    .level-buttons,
    .wordclass-buttons {
        justify-content: center;
    }
    
    .level-btn,
    .wordclass-btn {
        flex: 1;
        min-width: 80px;
    }
    
    .preview-choices {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .customize-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .direction-card {
        padding: 1rem;
    }
    
    .level-buttons,
    .wordclass-buttons {
        gap: 0.5rem;
    }
    
    .level-btn,
    .wordclass-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), #0dcaf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.border-radius-custom {
    border-radius: 15px;
}

/* Authentication Pages Styles */
.auth-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-title {
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--secondary-color);
    font-size: 1rem;
}

.auth-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-child {
    border-bottom: none;
}

.section-title {
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.password-input-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: color var(--transition-speed) ease;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.strength-fill {
    height: 100%;
    transition: width var(--transition-speed) ease;
    border-radius: 2px;
}

.strength-fill.strength-weak {
    background: #dc3545;
    width: 25%;
}

.strength-fill.strength-medium {
    background: #ffc107;
    width: 50%;
}

.strength-fill.strength-strong {
    background: #198754;
    width: 75%;
}

.strength-fill.strength-very-strong {
    background: #0d6efd;
    width: 100%;
}

.strength-text {
    font-size: 0.8rem;
    font-weight: 500;
}

.strength-text.strength-weak {
    color: #dc3545;
}

.strength-text.strength-medium {
    color: #ffc107;
}

.strength-text.strength-strong {
    color: #198754;
}

.strength-text.strength-very-strong {
    color: #0d6efd;
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed) ease;
}

.auth-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Profile Page Styles */
.profile-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.profile-name {
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profile-details {
    color: var(--secondary-color);
    font-size: 1rem;
}

.profile-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Quiz History Table Styles */
.quiz-history-table {
    font-size: 0.9rem;
}

.score-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
}

.score-badge.score-excellent {
    background: #d1edff;
    color: #0d6efd;
}

.score-badge.score-good {
    background: #d4edda;
    color: #198754;
}

.score-badge.score-needs-improvement {
    background: #f8d7da;
    color: #dc3545;
}

.review-btn {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
}

/* Revision Page Styles */
.revision-metadata-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.revision-title {
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.revision-details {
    color: var(--secondary-color);
    font-size: 1rem;
}

.revision-actions {
    text-align: right;
}

/* Wrong Answer Styles */
.wrong-answer-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #dc3545;
}

.wrong-answer-header {
    margin-bottom: 1rem;
}

.question-number {
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.question-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    background: white;
    padding: 0.75rem;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.wrong-answer-details {
    margin-bottom: 1rem;
}

.answer-comparison {
    margin-bottom: 1rem;
}

.user-answer, .correct-answer {
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
}

.user-answer {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

.correct-answer {
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.incorrect-answer {
    color: #dc3545;
    font-weight: 600;
}

.correct-answer-text {
    color: #198754;
    font-weight: 600;
}

.word-details {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-bottom: 1rem;
}

.detail-row {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.word-actions {
    text-align: right;
}

/* Auth Button in Navbar */
.auth-button-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1rem;
}

.language-switcher .lang-link {
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.language-switcher .lang-link:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.language-switcher .lang-link.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Sidebar placement of language switcher */
.sidebar .language-switcher {
    padding: 0.75rem 1.5rem;
    gap: 0.5rem;
    margin-right: 0; /* align with sidebar items */
}

.sidebar .language-switcher .lang-link {
    color: var(--sidebar-text);
    border-color: transparent;
}

.sidebar .language-switcher .lang-link:hover {
    background-color: var(--sidebar-hover);
    color: var(--sidebar-text);
}

@media (max-width: 768px) {
    .language-switcher {
        margin-right: 0.5rem;
    }
    
    .language-switcher .lang-link {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }
}

/* Responsive Design for Auth Pages */
@media (max-width: 768px) {
    .auth-card {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .auth-title {
        font-size: 1.5rem;
    }
    
    .profile-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .revision-actions {
        text-align: center;
        margin-top: 1rem;
    }
    
    .word-actions {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .auth-card {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .form-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .profile-name {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}
