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

:root {
    --primary-color: #4A90E2;
    --accent-color: #FF6B6B;
    --gradient-start: #2193b0;
    --gradient-end: #6dd5ed;
    --card-bg: #ffffff;
    --text-primary: #333333;
    --text-secondary: #666666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--text-primary);

/* Streak Card Header Hover Effect */
.streak-card-header:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

.streak-card-header {
    transition: all 0.2s ease;
    padding: 8px;
    border-radius: 8px;
}

/* Help Section Styles */
.medals-list, .levels-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.medals-list li, .levels-list li {
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.medals-list li:hover, .levels-list li:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.2);
}

.medals-list .medal {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 8px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.1);
}
.help-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.help-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.help-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.help-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .help-section {
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }
    
    .help-card {
        padding: 1rem;
    }
}

/* Nuevos estilos para estadísticas y logros */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

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

.global-stat-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.big-number {
    font-size: 2em;
    font-weight: bold;
    color: #764ba2;
    margin: 10px 0;
}

.sub-text {
    color: #666;
    font-size: 0.9em;
}

.distribution-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 250px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    margin-top: 20px;
}

.dist-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
}

.dist-bar {
    width: 40px;
    background: #764ba2;
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transition: height 0.3s ease;
}

.dist-count {
    color: white;
    font-size: 12px;
    padding: 4px;
}

.dist-label {
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

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

.achievement-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.achievement-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.achievement-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.achievement {
    padding: 10px;
    margin: 5px 0;
    background: #f8f9fa;
    border-radius: 5px;
}

.achievement-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #764ba2;
}

.achievement-desc {
    font-size: 0.9em;
    color: #666;
}

/* Estilos responsive */
@media screen and (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .distribution-bars {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 20px 10px;
    }

    .dist-bar-container {
        min-width: 60px;
    }
}

/* Comparison styles */
.comparison-selector {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.comparison-controls {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.person-select {
    padding: 8px 12px;
    border: 2px solid #764ba2;
    border-radius: 6px;
    font-size: 16px;
    min-width: 200px;
}

.vs-label {
    font-weight: bold;
    color: #764ba2;
    font-size: 20px;
}

.compare-button {
    padding: 8px 20px;
    background: #764ba2;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.compare-button:hover {
    background: #667eea;
}

.comparison-details {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 12px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.comparison-row.header {
    font-weight: bold;
    background: #f8f9fa;
    border-radius: 6px 6px 0 0;
}

.comparison-row:last-child {
    border-bottom: none;
    border-radius: 0 0 6px 6px;
}

.winner1 .player1 {
    color: #28a745;
    font-weight: bold;
}

.winner2 .player2 {
    color: #28a745;
    font-weight: bold;
}

.difference {
    color: #6c757d;
    text-align: center;
}

/* Week selector styles */
.week-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.week-dropdown {
    display: none;
    width: 100%;
    max-width: 300px;
    padding: 10px;
    margin: 0 auto 20px;
    border: 2px solid #764ba2;
    border-radius: 8px;
    background-color: white;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}

/* Media query for mobile devices */
@media screen and (max-width: 768px) {
    .week-buttons {
        display: none;
    }
    
    .week-dropdown {
        display: block;
    }
}
	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: 3em;
	margin-bottom: 10px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
	font-size: 1.2em;
	opacity: 0.9;
}

.loading {
	text-align: center;
	color: white;
	font-size: 1.5em;
	padding: 50px;
}

.spinner {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #3498db;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
	margin: 20px auto;
}

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

	100% {
		transform: rotate(360deg);
	}
}

.tabs {
    display: flex;
    justify-content: center;
    margin: 0 -10px 30px -10px;
    flex-wrap: nowrap;
    gap: 5px;
    padding: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding: 10px;
}

.tabs::-webkit-scrollbar {
    height: 3px;
}

.tabs::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.tabs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.tab {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    scroll-snap-align: start;
    flex: 0 0 auto;
}

.tab:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.tab.active {
    background: white;
    color: #667eea;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.content {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	padding: 30px;
	backdrop-filter: blur(10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

.week-selector {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	flex-wrap: wrap;
	gap: 10px;
}

.week-btn {
	background: #667eea;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.week-btn:hover {
	background: #5a67d8;
	transform: scale(1.05);
}

.week-btn.active {
	background: #764ba2;
	transform: scale(1.1);
}

.podium {
	display: flex;
	justify-content: center;
	align-items: end;
	margin: 40px 0;
	gap: 20px;
}

.podium-place {
	text-align: center;
	position: relative;
}

.podium-base {
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	border-radius: 10px 10px 0 0;
	padding: 20px;
	position: relative;
	min-width: 120px;
}

.podium-base.second {
	background: linear-gradient(45deg, #c0c0c0, #e8e8e8);
	height: 80px;
}

.podium-base.first {
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	height: 100px;
}

.podium-base.third {
	background: linear-gradient(45deg, #cd7f32, #daa520);
	height: 60px;
}

.podium-position {
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	background: white;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.podium-name {
	font-weight: bold;
	margin: 10px 0 5px;
	color: #333;
}

.podium-minutes {
	font-size: 14px;
	color: #666;
}

.ranking-table {
	margin-top: 30px;
}

.table {
	width: 100%;
	border-collapse: collapse;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.table th {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	padding: 15px;
	text-align: left;
	font-weight: 600;
}

.table td {
	padding: 15px;
	border-bottom: 1px solid #eee;
	transition: background-color 0.3s ease;
}

.table tbody tr:hover {
	background-color: rgba(102, 126, 234, 0.1);
}

.position {
	font-weight: bold;
	font-size: 18px;
	color: #667eea;
}

.person-name {
	cursor: pointer;
	color: #667eea;
	font-weight: 600;
	text-decoration: underline;
}

.person-name:hover {
	color: #764ba2;
}

.streak-section, .help-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
}

/* Estilos para la sección de ayuda */
.help-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.help-card h3 {
    color: #667eea;
    font-size: 1.5em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.help-card h3 i {
    font-size: 1.2em;
    opacity: 0.9;
}

.help-content {
    color: #666;
    line-height: 1.6;
    font-size: 1.1em;
}

.help-content strong {
    color: #764ba2;
    font-weight: 600;
}

.help-example {
    background: rgba(102, 126, 234, 0.1);
    border-left: 4px solid #667eea;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 10px 10px 0;
    font-size: 0.95em;
}

.help-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 107, 107, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
}

.help-tip i {
    color: #FF6B6B;
    font-size: 1.2em;
}

.help-tip p {
    margin: 0;
    font-size: 0.95em;
    color: #555;
}

/* Banner de racha actual */
.current-streak-banner {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    border-radius: 20px;
    padding: 30px;
    margin: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
    position: relative;
    overflow: hidden;
}

.current-streak-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

.current-streak-banner h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.streak-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.streak-highlight img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255,255,255,0.8);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.streak-highlight img:hover {
    transform: scale(1.05);
}

.streak-info {
    text-align: left;
}

.streak-person {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.streak-count {
    font-size: 1.5em;
    opacity: 0.9;
}

/* Tarjetas de racha */
.streaks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding: 20px;
}

.streak-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.streak-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

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

.streak-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.streak-card-header img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.streak-card-header img:hover {
    transform: rotate(5deg);
}.streak-stats {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: background-color 0.2s ease;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row:hover {
    background-color: #f0f2f5;
    padding: 12px;
    border-radius: 8px;
}

.stat-row span:first-child {
    color: var(--text-secondary);
    font-size: 0.95em;
}

.stat-row span:last-child {
    font-weight: bold;
    color: var(--primary-color);
}

.streak-history {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f2f5;
}

.streak-history h4 {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.1em;
}

.mini-streak {
    background: linear-gradient(135deg, #f6f8ff, #f0f2f5);
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    border-left: 4px solid var(--primary-color);
}

.mini-streak:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #f0f2f5, #e9ecef);
}

/* Animaciones */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .streak-highlight {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .streak-info {
        text-align: center;
    }

    .streak-person {
        font-size: 2em;
    }

    .streak-count {
        font-size: 1.2em;
    }

    .streak-card-header {
        flex-direction: column;
        text-align: center;
    }
}

.streak-card:hover {
    transform: translateY(-5px);
}

.streak-card.historical {
	background: linear-gradient(135deg, #4834d4, #686de0);
	box-shadow: 0 10px 25px rgba(72, 52, 212, 0.3);
}

.streak-title {
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.streak-value {
	font-size: 2.5em;
	font-weight: bold;
	margin: 10px 0;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
}

.modal-content {
	background: white;
	margin: 5% auto;
	padding: 30px;
	border-radius: 20px;
	width: 90%;
	max-width: 700px;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
	animation: modalOpen 0.3s ease;
}

@keyframes modalOpen {
	from {
		transform: scale(0.8);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.close {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	color: #aaa;
	transition: color 0.3s ease;
}

.close:hover {
	color: #000;
}

.profile-header {
	text-align: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid #eee;
}

.profile-name {
	font-size: 2.5em;
	color: #667eea;
	margin-bottom: 10px;
}

.profile-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.stat-card {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	padding: 20px;
	border-radius: 15px;
	text-align: center;
}

.stat-value {
	font-size: 2em;
	font-weight: bold;
	margin-bottom: 5px;
}

.stat-label {
	font-size: 0.9em;
	opacity: 0.8;
}

.chart-container {
	margin: 30px 0;
	background: #f8f9fa;
	border-radius: 15px;
	padding: 20px;
}

.chart {
	display: flex;
	align-items: end;
	height: 200px;
	gap: 5px;
	justify-content: center;
}

.bar {
	background: linear-gradient(to top, #667eea, #764ba2);
	border-radius: 5px 5px 0 0;
	min-width: 30px;
	position: relative;
	transition: all 0.3s ease;
}

.bar:hover {
	opacity: 0.8;
	transform: scale(1.05);
}

.bar-label {
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 12px;
	color: #666;
}

.bar-value {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 11px;
	color: #333;
	font-weight: bold;
}

.comparison-section {
	margin-top: 40px;
}

.comparison-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}

.person-card {
	background: white;
	border-radius: 15px;
	padding: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	cursor: pointer;
}

.person-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.person-card-name {
	font-size: 1.3em;
	font-weight: bold;
	color: #667eea;
	margin-bottom: 15px;
}

.medal {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 20px;
	font-size: 0.8em;
	margin: 5px;
	font-weight: bold;
}

.medal.gold {
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	color: #333;
}

.medal.silver {
	background: linear-gradient(45deg, #c0c0c0, #e8e8e8);
	color: #333;
}

.medal.bronze {
	background: linear-gradient(45deg, #cd7f32, #daa520);
	color: white;
}

.medal.streak {
	background: linear-gradient(45deg, #ff6b6b, #ee5a24);
	color: white;
}

.hidden {
	display: none;
}

@media (max-width: 768px) {
	.container {
		padding: 10px;
	}

	.header h1 {
		font-size: 2em;
	}

	.podium {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.podium-place {
		width: 100%;
		max-width: 200px;
	}

	.table {
		font-size: 14px;
	}

	.modal-content {
		margin: 10% auto;
		width: 95%;
		padding: 20px;
	}
}

.no-data {
	text-align: center;
	padding: 40px;
	color: #666;
	font-size: 1.2em;
}

.death-indicator {
	color: #ff4757;
	font-size: 1.5em;
}

@media (max-width: 600px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 10px 15px;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .header p {
        font-size: 1em;
    }

    .tabs {
        margin: 0 -15px 20px -15px;
        padding: 10px 15px;
        justify-content: flex-start;
        gap: 8px;
    }

    .tab {
        font-size: 14px;
        padding: 10px 20px;
        min-width: auto;
        flex-shrink: 0;
    }

    .tab.active {
        transform: scale(1.05);
    }

	.week-selector {
		flex-direction: column;
		align-items: stretch;
	}

	.week-btn {
		width: 100%;
		font-size: 15px;
	}

	.content {
		padding: 20px;
	}

	.podium {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.podium-place {
		width: 100%;
	}

	.profile-name {
		font-size: 2em;
	}

	.profile-stats {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.table {
		font-size: 13px;
		overflow-x: auto;
		display: block;
	}

	.streak-section {
		grid-template-columns: 1fr;
	}

	.chart-container {
		padding: 15px;
	}

	.bar {
		min-width: 20px;
		height: 100px;
	}

	.comparison-grid {
		grid-template-columns: 1fr;
	}

	.modal-content {
		width: 95%;
		margin: 10% auto;
		padding: 20px;
		max-height: 85vh;
	}
}
