/* Training Stats Comparison Card - Table Layout */
.training-stats-comparison-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.training-stats-comparison-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* Header */
.stats-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #1A1A1A;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-content .static-icon {
    font-size: 44px;
    flex-shrink: 0;
    display: inline-block;
}

.header-content > .material-icons {
    font-size: 44px;
    color: #E77D01;
    flex-shrink: 0;
}

.header-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
}

.stats-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    margin-bottom: 0 !important;
    line-height: 1.2;
}

.stats-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    margin-bottom: 0 !important;
    line-height: 1.4;
}

/* Header Hours Block - Premium Users Only */
.header-hours-block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid rgba(16, 185, 129, 0.5);
    border-radius: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-width: 240px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.header-hours-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-hours-block:hover {
    transform: translateY(-2px);
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.7);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.header-hours-block:hover::before {
    opacity: 1;
}

.hours-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
    white-space: nowrap;
}

.hours-value-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.hours-emoji {
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.header-hours-block:hover .hours-emoji {
    transform: scale(1.1) rotate(5deg);
}

.hours-value {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    font-variant-numeric: tabular-nums;
    font-family: 'Courier New', Courier, monospace;
}

.header-hours-block:hover .hours-value {
    transform: scale(1.05);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

/* Comparison Wrapper - Flexbox pour colonne globale + tableau */
.comparison-wrapper {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    align-items: stretch;
    background: #1A1A1A;
}

/* Comparison Table - 3 Colonnes */
.comparison-table {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(180px, auto) 1fr 1fr;
    gap: 0.625rem;
    align-items: center;
}

/* Table Headers */
.table-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.label-header {
    background: transparent;
}

.empty-header {
    background: transparent;
    padding: 0;
}

.free-header {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(16, 185, 129, 0.12));
    border: 2px solid rgba(16, 185, 129, 0.5);
    color: #10B981;
    flex-direction: column;
    padding: 1rem 0.75rem;
    gap: 0.375rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2), inset 0 1px 0 rgba(16, 185, 129, 0.3);
}

.free-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.free-header:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.15));
    border-color: rgba(16, 185, 129, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.free-header:hover::before {
    opacity: 1;
}

.premium-header {
    background: linear-gradient(135deg, rgba(231, 125, 1, 0.25), rgba(231, 125, 1, 0.12));
    border: 2px solid rgba(231, 125, 1, 0.5);
    color: #E77D01;
    flex-direction: column;
    padding: 1rem 0.75rem;
    gap: 0.375rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(231, 125, 1, 0.25), inset 0 1px 0 rgba(255, 200, 100, 0.3);
}

.premium-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(231, 125, 1, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-header:hover {
    background: linear-gradient(135deg, rgba(231, 125, 1, 0.3), rgba(231, 125, 1, 0.15));
    border-color: rgba(231, 125, 1, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 125, 1, 0.4);
}

.premium-header:hover::before {
    opacity: 1;
}

.header-emoji {
    font-size: 2rem;
    line-height: 1;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
    transition: all 0.3s ease;
}

.free-header:hover .header-emoji,
.premium-header:hover .header-emoji {
    transform: scale(1.2) translateY(-3px);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.header-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
}

.header-title {
    font-size: 1.125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.header-subtitle {
    font-size: 0.625rem;
    font-weight: 600;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.percentage-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 700;
}

/* Global Percentage Column */
.global-percentage-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0.75rem;
    background: transparent;
    border: none;
    border-radius: 12px;
    min-width: 110px;
    flex-shrink: 0;
}

.progress-container {
    padding: 0 !important;
}

.global-percentage-bar {
    width: 100%;
    flex: 1;
    min-height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 12px rgba(16, 185, 129, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.global-percentage-bar:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(16, 185, 129, 0.3);
    transform: scale(1.02);
}

.global-percentage-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #10B981 0%, #059669 100%);
    border-radius: 0 0 6px 6px;
    transition: height 1s ease-out;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
    box-shadow: 0 -4px 12px rgba(16, 185, 129, 0.4);
}

.global-percentage-value {
    font-size: 0.875rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: rotate(0deg);
}

.global-percentage-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
}

.multiplier-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #E77D01;
    line-height: 1;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 0 12px rgba(231, 125, 1, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.multiplier-text:hover {
    transform: scale(1.15);
    text-shadow: 0 0 15px rgba(231, 125, 1, 0.8);
}

.multiplier-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

/* Percentage Cell with Circular Progress */
.percentage-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.circular-progress {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: conic-gradient(
        #10B981 0% calc(var(--percentage) * 1%),
        rgba(255, 255, 255, 0.1) calc(var(--percentage) * 1%) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.circular-progress::before {
    content: '';
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%);
}

.percentage-text {
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
}

.highlight-percentage .circular-progress {
    background: conic-gradient(
        #E77D01 0% calc(var(--percentage) * 1%),
        rgba(255, 255, 255, 0.1) calc(var(--percentage) * 1%) 100%
    );
}

.circular-progress:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.highlight-percentage .circular-progress:hover {
    box-shadow: 0 4px 12px rgba(231, 125, 1, 0.4);
}

/* Table Labels (Colonne Gauche) */
.table-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 1.25rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #f0f0f0;
    white-space: nowrap;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.table-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.table-label:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateX(5px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.table-label:hover::before {
    left: 100%;
}

.emoji-icon {
    font-size: 1.5rem;
    line-height: 1;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.1));
    transition: transform 0.3s ease;
}

.table-label:hover .emoji-icon {
    transform: scale(1.2) rotate(10deg);
}

.table-label .material-icons {
    font-size: 1.375rem;
    color: #aaa;
}

.highlight-label {
    color: #FF9D42;
    background: linear-gradient(135deg, rgba(231, 125, 1, 0.18) 0%, rgba(231, 125, 1, 0.1) 100%);
    border-color: rgba(231, 125, 1, 0.4);
    font-weight: 700;
    box-shadow: 0 3px 12px rgba(231, 125, 1, 0.25), inset 0 1px 0 rgba(255, 200, 100, 0.2);
}

.highlight-label:hover {
    background: linear-gradient(135deg, rgba(231, 125, 1, 0.2) 0%, rgba(231, 125, 1, 0.1) 100%);
    border-color: rgba(231, 125, 1, 0.6);
    box-shadow: 0 4px 16px rgba(231, 125, 1, 0.4);
}

.highlight-label .material-icons {
    color: #E77D01;
}
/* Table Cells */
.table-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
    min-height: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.table-cell::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.table-cell:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
/* Cell Values */
.cell-value {
    font-size: 1.875rem;
    font-weight: 800;
    color: #ffffff;
    transition: all 0.3s ease;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 0 8px rgba(255, 255, 255, 0.15);
    font-variant-numeric: tabular-nums;
    font-family: 'Courier New', Courier, monospace;
}

.table-cell:hover .cell-value {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.free-cell {
    border-left: 3px solid #10B981;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08), -2px 0 8px rgba(16, 185, 129, 0.15);
}

.free-cell:hover {
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.premium-cell {
    border-left: 3px solid #E77D01;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08), -2px 0 8px rgba(231, 125, 1, 0.15);
}

.premium-cell:hover {
    box-shadow: 0 6px 16px rgba(231, 125, 1, 0.3);
}

.highlight-cell {
    background: rgba(231, 125, 1, 0.12);
    border: 1px solid rgba(231, 125, 1, 0.3);
    border-left-width: 3px;
    box-shadow: 0 3px 12px rgba(231, 125, 1, 0.2), inset 0 1px 0 rgba(255, 200, 100, 0.15);
}

.highlight-cell:hover {
    background: rgba(231, 125, 1, 0.15);
    border-color: rgba(231, 125, 1, 0.5);
    box-shadow: 0 6px 20px rgba(231, 125, 1, 0.5);
}

/* Lock Icon */
.lock-icon {
    font-size: 1rem;
    color: #DC2626;
    animation: lock-pulse 2s ease-in-out infinite;
}

@keyframes lock-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Header CTA Button */
.header-cta {
    flex-shrink: 0;
}

.upgrade-btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #E77D01, #FF8C00);
    color: white !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 12px;
    border: 2px solid rgba(231, 125, 1, 0.5);
    box-shadow: 0 4px 12px rgba(231, 125, 1, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.upgrade-btn-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.upgrade-btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 125, 1, 0.5);
    border-color: rgba(231, 125, 1, 0.8);
}

.upgrade-btn-header:hover::before {
    left: 100%;
}

/* Premium User Stats - Compact Version */
.premium-user-stats-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    background: rgba(255, 255, 255, 0.01);
}

.stat-item-compact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-label-outside {
    font-size: 0.75rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 0 0.5rem;
}

.stat-content-horizontal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 0.875rem 1.25rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-height: 70px;
}

.stat-content-horizontal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-content-horizontal:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.stat-content-horizontal:hover::before {
    opacity: 1;
}

.emoji-compact {
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.stat-content-horizontal:hover .emoji-compact {
    transform: scale(1.1) rotate(5deg);
}

.stat-value-compact {
    font-size: 2.25rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    font-variant-numeric: tabular-nums;
    font-family: 'Courier New', Courier, monospace;
}

.stat-content-horizontal:hover .stat-value-compact {
    transform: scale(1.05);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

/* Old Premium User Stats - Keep for backward compatibility */
.premium-user-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.01);
}

.premium-user-stats .stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.premium-user-stats .stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-user-stats .stat-card:hover {
    transform: translateY(-5px) scale(1.03);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.premium-user-stats .stat-card:hover::before {
    opacity: 1;
}

.premium-user-stats .stat-icon-emoji {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-user-stats .stat-card:hover .stat-icon-emoji {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 255, 255, 0.08);
}

.emoji-large {
    font-size: 3rem;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.premium-user-stats .stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.premium-user-stats .stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
}

.premium-user-stats .stat-icon .material-icons {
    font-size: 32px;
    color: white;
}

.premium-user-stats .stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.premium-user-stats .stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Responsive */
@media (max-width: 768px) {
    .hours-value {
        font-size: 1.2rem;
    }
    .comparison-wrapper {
        flex-direction: row;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .global-percentage-container {
        min-width: 90px;
        padding: 0.75rem 0.5rem;
    }
    
    .global-percentage-bar {
        width: 100%;
        min-height: 180px;
    }
    
    .multiplier-text {
        font-size: 1.25rem;
    }
    
    .comparison-table {
        grid-template-columns: 50px 1fr;
        gap: 0.5rem;
    }
    
    .table-header:not(.percentage-header) {
        grid-column: 2;
    }
    
    .percentage-cell {
        grid-column: 1;
    }
    
    .table-label,
    .table-cell {
        grid-column: 2;
    }
    
    .table-header {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .table-label {
        padding: 0.875rem;
        font-size: 0.9375rem;
    }
    
    .table-cell {
        padding: 0.875rem;
    }
    
    .cell-value {
        font-size: 1.625rem;
    }
    
    .circular-progress {
        width: 50px;
        height: 50px;
    }
    
    .circular-progress::before {
        width: 38px;
        height: 38px;
    }
    
    .premium-user-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .premium-user-stats-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 1rem 1.25rem;
    }
    
    .stat-label-outside {
        font-size: 0.7rem;
    }
    
    .stat-content-horizontal {
        min-height: 60px;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }
    
    .emoji-compact {
        font-size: 2rem;
    }
    
    .stat-value-compact {
        font-size: 1.875rem;
    }
    
    .stats-header{
        display: block !important;
    }
}

@media (max-width: 480px) {
    .stats-header {
        padding: 0.875rem 1rem;
    }
    
    .stats-title {
        font-size: 1rem;
    }
    
    .table-label {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .table-label span {
        font-size: 0.875rem;
    }
    
    .cell-value {
        font-size: 1.5rem;
    }
    
    .premium-user-stats {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 0.875rem;
    }
    
    .premium-user-stats-compact {
        grid-template-columns: 1fr;
        padding: 0.875rem 1rem;
        gap: 0.625rem;
    }
    
    .stat-label-outside {
        font-size: 0.65rem;
    }
    
    .stat-content-horizontal {
        min-height: 55px;
        padding: 0.625rem 0.875rem;
        gap: 0.625rem;
    }
    
    .emoji-compact {
        font-size: 1.75rem;
    }
    
    .stat-value-compact {
        font-size: 1.625rem;
    }
    
    .premium-user-stats .stat-card {
        padding: 1.25rem 1rem;
    }
    
    .premium-user-stats .stat-icon {
        width: 52px;
        height: 52px;
    }
    
    .premium-user-stats .stat-icon-emoji {
        width: 64px;
        height: 64px;
    }
    
    .emoji-large {
        font-size: 2.25rem;
    }
    
    .premium-user-stats .stat-icon .material-icons {
        font-size: 28px;
    }
    
    .premium-user-stats .stat-value {
        font-size: 2rem;
    }
}