@charset "utf-8";
.hunter-activity-container {
        background: var(--bg-primary);
        border-radius: 16px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        border: 1px solid var(--border-color);
    }

    .hunter-header {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 2px solid var(--primary-color);
        background: var(--bg-secondary);
        padding: 40px 20px;
        border-radius: 12px;
    }

    .hunter-header h1 {
        color: var(--primary-color);
        font-size: 2.5em;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .hunter-header .subtitle {
        color: var(--text-secondary);
        font-size: 1.2em;
        margin-bottom: 25px;
    }

    .rules-section {
        background: var(--bg-tertiary);
        padding: 25px;
        border-radius: 12px;
        margin-bottom: 30px;
        border-left: 4px solid var(--primary-color);
    }

    .rules-section h2 {
        color: var(--primary-color);
        margin-bottom: 20px;
        font-size: 1.6em;
    }

    .rules-section ul {
        padding-left: 20px;
        margin-bottom: 0;
    }

    .rules-section li {
        margin-bottom: 12px;
        line-height: 1.6;
        color: var(--text-primary);
    }

    .highlight {
        color: var(--accent-color);
        font-weight: 600;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .battlefield-section {
        margin-bottom: 40px;
    }

    .battlefield-section h2 {
        color: var(--primary-color);
        margin-bottom: 25px;
        font-size: 1.8em;
        text-align: center;
    }

    .battlefield-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
        margin-top: 20px;
    }

    .battlefield-card {
        background: var(--bg-secondary);
        padding: 25px;
        border-radius: 12px;
        border: 2px solid var(--border-color);
        transition: all 0.3s ease;
    }

    .battlefield-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-color);
    }

    .battlefield-card h3 {
        color: var(--primary-color);
        margin-bottom: 20px;
        font-size: 1.4em;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .battlefield-card ul {
        padding-left: 20px;
        margin-bottom: 0;
    }

    .battlefield-card li {
        margin-bottom: 10px;
        color: var(--text-secondary);
        line-height: 1.5;
    }

    .prize {
        color: #ff4757;
        font-weight: 600;
        text-shadow: 0 2px 4px rgba(255, 71, 87, 0.2);
    }

    .progress-section {
        background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
        padding: 30px;
        border-radius: 15px;
        margin-bottom: 40px;
    }

    .progress-section h2 {
        color: var(--primary-color);
        text-align: center;
        margin-bottom: 30px;
        font-size: 1.8em;
    }

    .user-progress {
        text-align: center;
        margin-bottom: 40px;
    }

    .user-progress .badge-count {
        font-size: 3.5em;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .user-progress .badge-label {
        color: var(--text-secondary);
        font-size: 1.2em;
        margin-bottom: 30px;
    }

    .progress-track {
        height: 25px;
        background: var(--border-color);
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 15px;
        position: relative;
    }

    .hunter-progress-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 12px;
        transition: width 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        position: relative;
    }

    .hunter-progress-fill::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255, 255, 255, 0.4), 
            transparent);
        animation: shimmer 2s infinite;
    }

    @keyframes shimmer {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

    .progress-stats {
        display: flex;
        justify-content: space-between;
        color: var(--text-secondary);
        font-size: 0.95em;
    }

    .quarter-progress {
        margin-top: 40px;
    }

    .quarter-progress h3 {
        color: var(--primary-color);
        margin-bottom: 20px;
        font-size: 1.4em;
        text-align: center;
    }

    .quarter-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

    .quarter-card {
        background: var(--bg-primary);
        padding: 20px;
        border-radius: 10px;
        border: 1px solid var(--border-color);
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .quarter-card:hover {
        border-color: var(--primary-color);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .quarter-card .quarter-name {
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1.2em;
    }

    .quarter-card .badge-status {
        font-size: 2.5em;
        font-weight: 700;
        margin-bottom: 10px;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .quarter-card .badge-status.achieved {
        color: #2ed573;
    }

    .quarter-card .badge-status.in-progress {
        color: var(--primary-color);
    }

    .quarter-card .badge-status.not-started {
        color: var(--text-muted);
    }

    .quarter-card .hunter-progress-text {
        color: var(--text-secondary);
        font-size: 0.9em;
    }

    .quarter-card .quarter-hint {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 24px;
        height: 24px;
        background: var(--bg-tertiary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        font-size: 12px;
        cursor: help;
        border: 1px solid var(--border-color);
    }

    .monthly-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .month-card {
        background: var(--bg-primary);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .month-card.achieved {
        border-color: #2ed573;
        background: linear-gradient(135deg, rgba(46, 213, 115, 0.05), rgba(46, 213, 115, 0.02));
    }

    .month-card.in-progress {
        border-color: var(--primary-color);
        background: linear-gradient(135deg, rgba(85, 150, 193, 0.05), rgba(43, 88, 118, 0.02));
    }

    .month-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .month-card .badge-icon {
        width: 130px;
        height: 130px;
        margin: 0 auto 15px;
        border-radius: 10px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .month-card .badge-icon img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .month-card .month-name {
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1.1em;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .month-card .status-indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .month-card.achieved .status-indicator {
        background: #2ed573;
        box-shadow: 0 0 8px rgba(46, 213, 115, 0.6);
    }

    .month-card.in-progress .status-indicator {
        background: var(--primary-color);
        box-shadow: 0 0 8px rgba(85, 150, 193, 0.6);
    }

    .month-card .month-status {
        margin-bottom: 15px;
    }

    .month-card .user-list {
        font-size: 0.85em;
        color: var(--text-secondary);
        margin-top: 10px;
        line-height: 1.4;
        min-height: 40px;
    }

    .month-card .first-user {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid var(--border-color);
    }

    .month-card .first-user-avatar {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .month-card .first-user-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .month-card .first-user-name {
        color: var(--accent-color);
        font-weight: 600;
        font-size: 0.9em;
    }

    .leaderboard-section {
        background: var(--bg-tertiary);
        padding: 30px;
        border-radius: 15px;
        margin-bottom: 40px;
    }

    .leaderboard-section h2 {
        color: var(--primary-color);
        text-align: center;
        margin-bottom: 30px;
        font-size: 1.8em;
    }

    .achievement-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 20px;
    }

    .achievement-card {
        background: var(--bg-primary);
        padding: 25px;
        border-radius: 12px;
        border: 2px solid var(--border-color);
        text-align: center;
        transition: all 0.3s ease;
    }

    .achievement-card:hover {
        border-color: var(--primary-color);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .achievement-card .achievement-icon {
        font-size: 2.5em;
        margin-bottom: 20px;
        color: var(--primary-color);
    }

    .achievement-card h3 {
        color: var(--primary-color);
        margin-bottom: 15px;
        font-size: 1.3em;
    }

    .achievement-card .achiever {
        color: var(--accent-color);
        font-weight: 600;
        margin: 15px 0;
        font-size: 1.2em;
    }

    .achievement-card .achiever.empty {
        color: var(--text-muted);
        font-style: italic;
    }

    .achievement-card .achievement-desc {
        color: var(--text-secondary);
        line-height: 1.5;
        font-size: 0.95em;
    }

    .call-to-action {
        text-align: center;
        padding: 40px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 15px;
        color: white;
        margin-bottom: 40px;
    }

    .call-to-action h2 {
        color: white;
        margin-bottom: 20px;
        font-size: 2em;
    }

    .call-to-action p {
        font-size: 1.1em;
        margin-bottom: 30px;
        opacity: 0.9;
    }

    .btn-hunter {
        background: white;
        color: var(--primary-color);
        border: none;
        padding: 15px 40px;
        font-size: 1.1em;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .btn-hunter:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        color: var(--primary-color);
    }

    .hunter-info-box {
        background: var(--bg-secondary);
        padding: 25px;
        border-radius: 12px;
        margin-top: 30px;
        border-left: 4px solid var(--accent-color);
    }

    .hunter-info-box h4 {
        color: var(--primary-color);
        margin-bottom: 15px;
        font-size: 1.2em;
    }

    .hunter-info-box p {
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .user-profile-section {
        background: var(--bg-secondary);
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .user-avatar-large {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .user-avatar-large img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .user-info-main {
        flex: 1;
    }

    .user-name-large {
        font-size: 2em;
        color: var(--primary-color);
        margin-bottom: 15px;
        font-weight: 700;
    }

    .hunter-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .hunter-stat-card {
        background: white;
        padding: 20px;
        border-radius: 10px;
        border: 1px solid var(--border-color);
        text-align: center;
        transition: all 0.3s ease;
    }

    .hunter-stat-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-color);
    }

    .hunter-stat-value {
        font-size: 2.5em;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 10px;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hunter-stat-label {
        color: var(--text-secondary);
        font-size: 0.95em;
    }

    /* 新增样式：互动排名 */
    .interaction-ranking-section {
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        padding: 30px;
        border-radius: 15px;
        margin: 30px 0;
        border: 1px solid var(--border-color);
    }

    .interaction-ranking-section h3 {
        color: var(--primary-color);
        margin-bottom: 25px;
        text-align: center;
        font-size: 1.6em;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .ranking-list {
        margin-top: 20px;
    }

    .ranking-item {
        display: flex;
        align-items: center;
        padding: 15px;
        margin-bottom: 12px;
        background: white;
        border-radius: 10px;
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .ranking-item:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-color);
    }

    .ranking-item.self {
        background: linear-gradient(135deg, rgba(85, 150, 193, 0.1), rgba(43, 88, 118, 0.05));
        border-color: var(--primary-color);
    }

    .ranking-rank {
        width: 40px;

        text-align: center;
        font-size: 1.2em;
        font-weight: 700;
        color: var(--primary-color);
    }

    .ranking-rank.rank-1 {
        color: #ffd700;
        text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    }

    .ranking-rank.rank-2 {
        color: #c0c0c0;
        text-shadow: 0 2px 4px rgba(192, 192, 192, 0.3);
    }

    .ranking-rank.rank-3 {
        color: #cd7f32;
        text-shadow: 0 2px 4px rgba(205, 127, 50, 0.3);
    }

    .ranking-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 15px;
        border: 3px solid white;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .ranking-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ranking-info {
        flex: 1;
    }

    .ranking-name {
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 5px;
        font-size: 1.1em;
    }

    .ranking-days {
        font-size: 0.9em;
        color: var(--text-secondary);
    }

    .ranking-progress {
        width: 150px;
        margin-left: 20px;
    }

    .ranking-progress-bar {
        height: 10px;
        background: var(--border-color);
        border-radius: 5px;
        overflow: hidden;
        margin-bottom: 5px;
    }

    .ranking-progress-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 5px;
        transition: width 0.8s ease;
    }

    .ranking-progress-text {
        font-size: 0.8em;
        color: var(--text-muted);
        text-align: right;
    }

    .no-ranking-data {
        text-align: center;
        padding: 40px;
        color: var(--text-muted);
        font-style: italic;
    }

    .no-ranking-data i {
        font-size: 3em;
        margin-bottom: 20px;
        color: var(--border-color);
    }

    /* 游客提示样式 */
    .guest-message {
        background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
        padding: 60px 30px;
        border-radius: 15px;
        text-align: center;
        margin: 30px 0;
        border: 2px solid var(--border-color);
    }

    .guest-icon {
        font-size: 4em;
        color: var(--primary-color);
        margin-bottom: 30px;
    }

    .guest-title {
        color: var(--primary-color);
        font-size: 2em;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .guest-description {
        color: var(--text-secondary);
        font-size: 1.2em;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .action-buttons {
        margin-top: 40px;
    }

    .btn-large {
        display: inline-block;
        padding: 18px 50px;
        font-size: 1.3em;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .btn-primary-large {
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        color: white;
        box-shadow: 0 5px 15px rgba(85, 150, 193, 0.3);
    }

    .btn-primary-large:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(85, 150, 193, 0.4);
        color: white;
    }

    @media (max-width: 768px) {
        .hunter-header h1 {
            font-size: 2em;
        }
        
        .battlefield-cards {
            grid-template-columns: 1fr;
        }
        
        .monthly-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .achievement-cards {
            grid-template-columns: 1fr;
        }
        
        .quarter-cards {
            grid-template-columns: 1fr;
        }
        
        .user-profile-section {
            flex-direction: column;
            text-align: center;
        }
        
        .hunter-stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .ranking-item {
            flex-wrap: wrap;
        }
        
        .ranking-progress {
            width: 100%;
            margin-left: 0;
            margin-top: 10px;
        }
        
        .guest-title {
            font-size: 1.6em;
        }
        
        .guest-description {
            font-size: 1.1em;
        }
    }

    @media (max-width: 480px) {
        .monthly-grid {
            grid-template-columns: 1fr;
        }
        
        .hunter-activity-container {
            padding: 20px;
        }
        
        .hunter-stats-grid {
            grid-template-columns: 1fr;
        }
        
        .guest-message {
            padding: 40px 20px;
        }
        
        .guest-title {
            font-size: 1.4em;
        }
        
        .guest-description {
            font-size: 1em;
        }
    }