/* Who Tweeted - Game Specific Styles */

/* ===== Tweet Card ===== */
.tweet-container {
    margin-bottom: 28px;
}

.tweet-card {
    background: var(--surface);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid #1d9bf0;
}

body.dark-mode .tweet-card {
    background: var(--neutral-100);
    border-color: rgba(255, 255, 255, 0.07);
    border-top-color: #1d9bf0;
}

.tweet-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.tweet-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--secondary-500) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    filter: blur(6px);
    flex-shrink: 0;
}

.tweet-user-info {
    flex: 1;
}

.tweet-name {
    font-weight: 700;
    font-size: var(--text-base);
    color: var(--on-surface);
    filter: blur(5px);
    user-select: none;
}

.tweet-handle {
    font-size: var(--text-sm);
    color: var(--on-surface-muted);
    filter: blur(4px);
    user-select: none;
}

.tweet-content {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: var(--on-surface);
    margin-bottom: 12px;
    word-wrap: break-word;
    font-weight: 400;
}

.tweet-date {
    font-size: var(--text-sm);
    color: var(--on-surface-muted);
    margin-bottom: 12px;
}

.tweet-stats {
    display: flex;
    gap: 20px;
    padding-top: 12px;
    border-top: 1px solid var(--neutral-200);
}

body.dark-mode .tweet-stats {
    border-top-color: rgba(255, 255, 255, 0.07);
}

.tweet-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    color: var(--on-surface-variant);
    font-weight: 500;
}

.stat-icon {
    font-size: 1rem;
}

/* ===== Daily Complete Section ===== */
.daily-complete {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.daily-complete-text {
    text-align: center;
    width: 100%;
}

.view-results-btn {
    background: var(--primary-500);
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.30);
    width: auto;
    min-height: 48px;
    font-family: inherit;
}

.view-results-btn:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.40);
}

.view-results-btn:active {
    transform: translateY(0) scale(0.98);
}

.view-results-btn .btn-icon {
    font-size: 1rem;
    display: inline-flex;
    transition: transform 0.25s ease;
}

.view-results-btn:hover .btn-icon {
    transform: scale(1.1);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .tweet-card {
        padding: 16px;
    }

    .tweet-avatar {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .tweet-content {
        font-size: var(--text-base);
    }

    .tweet-stats {
        gap: 14px;
    }

    .view-results-btn {
        padding: 13px 20px;
        width: 100%;
        justify-content: center;
    }
}
