/**
 * Gamified Traffic Exchange - Complete Styles
 * Modern, engaging design for gamification features
 */

/* ===== DASHBOARD ===== */
.gte-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

/* Card Base Styles */
.gte-rank-card,
.gte-credits-card,
.gte-streak-card,
.gte-recent-badges {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 24px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gte-rank-card:hover,
.gte-credits-card:hover,
.gte-streak-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gte-rank-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gte-credits-card {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gte-streak-card {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.gte-recent-badges {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    grid-column: span 2;
}

.gte-dashboard h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 16px 0;
    opacity: 0.9;
    font-weight: 600;
}

/* Rank Display */
.rank-display {
    text-align: center;
}

.rank-level {
    display: block;
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 8px;
}

.rank-title {
    display: block;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.xp-bar {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 8px 16px;
    margin-top: 16px;
}

.xp-text {
    font-size: 16px;
    font-weight: 600;
}

/* Credits Display */
.credits-display {
    text-align: center;
}

.credits-amount {
    display: block;
    font-size: 56px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 12px;
}

.stats-detail {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.8;
    margin: 16px 0 0 0;
}

/* Streak Display */
.streak-display {
    text-align: center;
}

.streak-number {
    display: block;
    font-size: 64px;
    font-weight: bold;
    line-height: 1;
}

.streak-label {
    display: block;
    font-size: 18px;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.streak-fire {
    font-size: 32px;
    margin: 16px 0;
    animation: flicker 1.5s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.streak-best {
    font-size: 14px;
    margin-top: 16px;
    opacity: 0.9;
}

.streak-warning {
    color: #ff6b6b;
    font-weight: 600;
    margin-top: 12px;
}

/* Recent Badges */
.badges-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.badge-icon {
    font-size: 24px;
}

.badge-name {
    font-size: 14px;
    font-weight: 600;
}

/* ===== BADGES PAGE ===== */
.gte-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.gte-badge-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gte-badge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.badge-earned {
    border: 2px solid #4caf50;
}

.badge-earned::before {
    background: linear-gradient(90deg, #4caf50 0%, #45a049 100%);
}

.badge-locked {
    opacity: 0.6;
    filter: grayscale(100%);
}

.badge-locked:hover {
    opacity: 0.8;
}

.gte-badge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gte-badge-card .badge-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.gte-badge-card .badge-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 8px 0;
}

.gte-badge-card .badge-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 8px 0;
}

/* Badge Rarity Colors */
.badge-common::before {
    background: linear-gradient(90deg, #9e9e9e 0%, #757575 100%);
}

.badge-uncommon::before {
    background: linear-gradient(90deg, #4caf50 0%, #388e3c 100%);
}

.badge-rare::before {
    background: linear-gradient(90deg, #2196f3 0%, #1976d2 100%);
}

.badge-epic::before {
    background: linear-gradient(90deg, #9c27b0 0%, #7b1fa2 100%);
}

.badge-legendary::before {
    background: linear-gradient(90deg, #ff9800 0%, #f57c00 100%);
}

.badge-rarity {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 8px 0;
    background: #e0e0e0;
    color: #666;
}

.badge-uncommon .badge-rarity {
    background: #4caf50;
    color: white;
}

.badge-rare .badge-rarity {
    background: #2196f3;
    color: white;
}

.badge-epic .badge-rarity {
    background: #9c27b0;
    color: white;
}

.badge-legendary .badge-rarity {
    background: #ff9800;
    color: white;
}

.badge-points {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    margin-top: 8px;
}

.badge-progress {
    margin-top: 12px;
}

.progress-bar {
    background: #e0e0e0;
    border-radius: 8px;
    height: 6px;
    overflow: hidden;
}

.progress-bar .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 4px;
}

.badges-progress-summary {
    margin-top: 32px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.badge-earned-date {
    margin-top: 8px;
}

.badge-earned-date small {
    color: #4caf50;
    font-weight: 600;
}

/* ===== LEADERBOARD ===== */
.gte-leaderboard {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 32px 0;
}

.leaderboard-header {
    text-align: center;
    margin-bottom: 24px;
}

.leaderboard-type {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gte-leaderboard h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
}

.leaderboard-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.leaderboard-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.leaderboard-item.rank-1 {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    font-weight: 600;
}

.leaderboard-item.rank-2 {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
}

.leaderboard-item.rank-3 {
    background: linear-gradient(135deg, #cd7f32 0%, #daa520 100%);
}

.rank-position {
    font-size: 20px;
    font-weight: 700;
    min-width: 80px;
}

.user-avatar {
    border-radius: 50%;
    overflow: hidden;
    width: 40px;
    height: 40px;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-name {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
}

.you-label {
    font-size: 12px;
    color: #667eea;
    font-weight: 700;
}

.user-title {
    font-size: 14px;
    color: #666;
    margin-right: 16px;
}

.user-score {
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
}

.leaderboard-item.current-user {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid #667eea;
}

.current-user-position {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #e0e0e0;
}

.current-user-position h4 {
    text-align: center;
    margin-bottom: 16px;
    color: #667eea;
}

.no-data {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 16px;
}

/* ===== STREAK CALENDAR ===== */
.gte-streak-module {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 32px 0;
    max-width: 1200px;
}

.gte-streak-module h3 {
    font-size: 22px;
    margin: 30px 0 20px 0;
    color: #333;
}

.streak-stats-header {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmin(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

.stat-sublabel {
    display: block;
    font-size: 11px;
    opacity: 0.85;
    margin-top: 5px;
}

.streak-status {
    margin: 25px 0;
}

.status-message {
    padding: 18px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 16px;
}

.status-message.active {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
}

.status-message.inactive {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
}

.status-icon {
    font-size: 28px;
}

.streak-calendar-grid {
    margin: 25px 0;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.weekday-label {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-day {
    aspect-ratio: 1;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 60px;
    font-size: 16px;
    font-weight: 600;
}

.calendar-day.empty {
    visibility: hidden;
}

.calendar-day.active {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.calendar-day.inactive {
    background: #e0e0e0;
    color: #999;
}

.calendar-day.today {
    border: 3px solid #667eea;
    box-shadow: 0 0 0 2px white, 0 0 0 5px #667eea;
}

.calendar-day:not(.empty):hover {
    transform: scale(1.05);
    z-index: 10;
}

.day-number {
    font-size: 16px;
    font-weight: 700;
}

.activity-indicator {
    position: absolute;
    bottom: 5px;
    font-size: 18px;
    color: white;
}

.calendar-legend {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.legend-box {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    flex-shrink: 0;
}

.legend-box.active {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
}

.legend-box.inactive {
    background: #e0e0e0;
}

.legend-box.today {
    background: white;
    border: 3px solid #667eea;
}

/* ===== TRAFFIC VIEWER ===== */
.gte-traffic-viewer {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 32px 0;
}

.traffic-viewer-header {
    text-align: center;
    margin-bottom: 24px;
}

.traffic-viewer-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.site-title {
    font-size: 16px;
    color: #666;
}

.site-url-display {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

.traffic-timer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 24px;
    color: white;
    margin-bottom: 24px;
}

.timer-content {
    text-align: center;
}

.timer-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.timer-value {
    font-size: 64px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    line-height: 1;
}

.timer-unit {
    font-size: 18px;
    opacity: 0.9;
}

.timer-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 12px 0;
    opacity: 0.9;
}

.timer-progress-bar {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    height: 8px;
    overflow: hidden;
    margin-top: 16px;
}

.timer-progress-fill {
    height: 100%;
    background: white;
    border-radius: 12px;
    transition: width 1s linear;
}

.traffic-frame-container {
    position: relative;
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.traffic-frame {
    width: 100%;
    height: 600px;
    border: none;
}

/* Blocked Site Message */
.iframe-blocked-message {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blocked-content {
    max-width: 600px;
    color: white;
}

.blocked-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.iframe-blocked-message h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}

.iframe-blocked-message p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.dont-worry-box {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.dont-worry-box p {
    margin: 10px 0;
}

.open-new-tab-btn {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: #667eea;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.open-new-tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #667eea;
}

.timer-continues {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 20px;
}

/* Traffic Actions */
.traffic-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.gte-button {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.gte-button.skip-button {
    background: #ff9800;
    color: white;
}

.gte-button.skip-button:hover {
    background: #f57c00;
    transform: translateY(-2px);
}

.gte-button.next-button {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
}

.gte-button.next-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.reward-notification {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    border-radius: 12px;
    margin-top: 24px;
    animation: slideDown 0.5s ease;
}

.reward-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

.reward-message {
    font-size: 18px;
    margin: 8px 0;
}

.reward-credits {
    font-size: 24px;
    margin: 8px 0;
}

.no-urls-available {
    text-align: center;
    padding: 60px 20px;
}

.empty-state {
    max-width: 400px;
    margin: 0 auto;
}

.empty-icon {
    font-size: 80px;
    display: block;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.empty-state p {
    color: #666;
    margin: 12px 0;
}

/* ===== NOTIFICATIONS ===== */
.gte-notification {
    position: fixed;
    top: 20px;
    right: -400px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 380px;
    z-index: 99999;
    transition: right 0.3s ease;
}

.gte-notification.show {
    right: 20px;
}

.notification-icon {
    font-size: 48px;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.notification-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.notification-content p {
    margin: 4px 0;
    font-size: 14px;
    color: #666;
}

.notification-content strong {
    color: #333;
    font-weight: 600;
}

.rewards {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.reward-credits,
.reward-points {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.reward-credits {
    background: #4facfe;
    color: white;
}

.reward-points {
    background: #667eea;
    color: white;
}

.easter-egg-found {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.easter-egg-found .notification-content h4,
.easter-egg-found .notification-content p,
.easter-egg-found .notification-content strong {
    color: white;
}

.badge-unlocked {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.badge-unlocked .notification-content h4,
.badge-unlocked .notification-content p,
.badge-unlocked .notification-content strong {
    color: white;
}

.badge-unlocked .badge-points {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 8px;
}

/* Confetti */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    top: -10px;
    z-index: 99998;
    animation: confetti-fall 3s linear forwards;
}

@keyframes confetti-fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ===== EASTER EGGS MODULE ===== */
.gte-easter-eggs-module {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 32px 0;
}

.easter-eggs-header h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.eggs-progress {
    margin: 20px 0;
}

.progress-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.easter-eggs-section {
    margin: 32px 0;
}

.easter-eggs-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.easter-eggs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.easter-egg-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.easter-egg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.easter-egg-card.locked {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.easter-egg-card.found {
    background: linear-gradient(135deg, #fff9e6 0%, #ffe6b3 100%);
    border-color: #ffb300;
}

.easter-egg-card .egg-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.easter-egg-card .egg-name {
    font-size: 18px;
    font-weight: 700;
    margin: 8px 0;
}

.egg-hint {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 12px 0;
    line-height: 1.5;
}

.egg-hint.secret {
    color: #9c27b0;
    font-weight: 600;
}

.egg-description {
    font-size: 14px;
    color: #333;
    margin: 12px 0;
    line-height: 1.5;
}

.egg-rewards {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
}

.reward-item {
    padding: 6px 12px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #667eea;
}

.egg-rewards.earned .reward-item {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.found-date {
    margin-top: 12px;
    font-size: 12px;
    color: #999;
}

.motivation-message,
.completion-message {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    margin-top: 24px;
}

.motivation-message p,
.completion-message p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.no-eggs-found {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 16px;
}

/* ===== PROGRESS BARS ===== */
.gte-progress-bar {
    background: #e0e0e0;
    border-radius: 12px;
    height: 24px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 600;
}

/* ===== UTILITY CLASSES ===== */
.gte-login-prompt {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 12px;
}

.gte-login-prompt p {
    font-size: 18px;
    color: #666;
}

.gte-loading {
    text-align: center;
    padding: 40px;
}

.gte-loading::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .gte-dashboard {
        grid-template-columns: 1fr;
    }
    
    .gte-recent-badges {
        grid-column: span 1;
    }
    
    .gte-badges-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .gte-notification {
        max-width: 90%;
        right: -100%;
    }
    
    .gte-notification.show {
        right: 5%;
    }
    
    .gte-streak-module {
        padding: 20px;
    }
    
    .streak-stats-header {
        grid-template-columns: 1fr;
    }
    
    .calendar-day {
        min-height: 50px;
        font-size: 14px;
    }
    
    .day-number {
        font-size: 14px;
    }
    
    .weekday-label {
        font-size: 11px;
    }
    
    .timer-value {
        font-size: 48px;
    }
    
    .traffic-frame {
        height: 400px;
    }
}