/* Reputation Enhancements Styles */

.statistics-dashboard {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: rgba(186, 148, 79, 0.1);
    border: 1px solid rgba(186, 148, 79, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(186, 148, 79, 0.3);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ba944f;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(186, 148, 79, 0.2);
}

.stats-section h3 {
    color: #ba944f;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.chart-container {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.popular-planets,
.top-claimers,
.recent-claims {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.popular-planet-item,
.claimer-item,
.recent-claim-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(186, 148, 79, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ba944f;
    transition: background 0.3s ease;
}

.popular-planet-item:hover,
.claimer-item:hover,
.recent-claim-item:hover {
    background: rgba(186, 148, 79, 0.1);
}

.rank {
    font-weight: 700;
    color: #ba944f;
    min-width: 30px;
}

.planet-name,
.user-id {
    flex: 1;
    color: #ffffff;
}

.claim-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.claim-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Activity History Styles */
.activity-history {
    max-height: 400px;
    overflow-y: auto;
}

.activity-item {
    padding: 1rem;
    border-bottom: 1px solid rgba(186, 148, 79, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.activity-description {
    color: #ffffff;
    flex: 1;
}

.activity-points {
    color: #ba944f;
    font-weight: 600;
}

.activity-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-left: 1rem;
}

/* Login Streak Styles */
.login-streak-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(186, 148, 79, 0.1);
    border-radius: 8px;
    margin: 1rem 0;
}

.streak-value {
    font-size: 2rem;
    font-weight: 700;
    color: #ba944f;
}

.streak-label {
    color: rgba(255, 255, 255, 0.7);
}

.streak-fire {
    font-size: 1.5rem;
}

/* Leaderboard Styles */
.leaderboard-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(186, 148, 79, 0.3);
}

.leaderboard-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.leaderboard-tab.active {
    color: #ba944f;
    border-bottom-color: #ba944f;
}

.leaderboard-tab:hover {
    color: #ffffff;
}

.leaderboard-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: rgba(186, 148, 79, 0.05);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.leaderboard-item:hover {
    background: rgba(186, 148, 79, 0.1);
}

.leaderboard-rank {
    font-weight: 700;
    color: #ba944f;
    min-width: 40px;
}

.leaderboard-username {
    flex: 1;
    color: #ffffff;
}

.leaderboard-points {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

