.event-banner-container {
max-width: 600px;
margin: 0 auto;
padding: 0 15px;
padding-bottom: 5px;
padding-top: 7px;
position: relative;
z-index: 5;
}
.event-banner {
background: #252b3d;
border-radius: 12px;
padding: 16px;
position: relative;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.whats-happening-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 12px;
padding-bottom: 10px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.whats-happening-header h3 {
font-size: 16px;
font-weight: 700;
color: white;
margin: 0;
}
.user-count-mini {
display: flex;
align-items: center;
gap: 4px;
background: rgba(96, 165, 250, 0.1);
padding: 4px 10px;
border-radius: 20px;
border: 1px solid rgba(96, 165, 250, 0.2);
}
.user-count-number-mini {
font-size: 14px;
font-weight: 700;
color: #60a5fa;
}
.user-count-label-mini {
font-size: 12px;
color: rgba(255, 255, 255, 0.6);
}

.event-banner-content {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* User Count Display */
.user-count-display {
    text-align: center;
    padding: 20px;
    width: 100%;
}

.user-count-number {
    font-size: 56px;
    font-weight: 800;
    color: #00ffff;
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8),
                 0 0 40px rgba(0, 255, 255, 0.5),
                 0 0 60px rgba(0, 255, 255, 0.3);
    animation: countFadeIn 0.8s ease-out, cyanPulse 3s ease-in-out infinite;
}

.user-count-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes countFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cyanPulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.8),
                     0 0 40px rgba(0, 255, 255, 0.5),
                     0 0 60px rgba(0, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 255, 255, 1),
                     0 0 60px rgba(0, 255, 255, 0.7),
                     0 0 90px rgba(0, 255, 255, 0.5);
    }
}

.event-icon {
    font-size: 32px;
    flex-shrink: 0;
    line-height: 1;
    display: none;
}

.event-text {
    flex: 1;
}

.event-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}

.event-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    line-height: 1.4;
}

.event-rules {
    margin-bottom: 12px;
}

.event-rule {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.event-hashtag {
    color: rgba(251, 191, 36, 0.9);
    font-weight: 600;
    background: rgba(251, 191, 36, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.event-deadline {
    color: rgba(251, 191, 36, 0.9);
    font-weight: 600;
}

.event-prize {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 12px;
}

.event-prize-title {
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.event-prize-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.event-badge {
    color: rgba(251, 191, 36, 0.9);
    font-weight: 600;
}

@media (max-width: 640px) {
    .event-banner-container {
        padding: 0 16px;
        padding-bottom: 10px;
        padding-top: 80px;
        margin-top: 0;
        position: relative;
        z-index: 1;
    }

    .event-banner {
        padding: 12px;
        position: relative;
        z-index: 1;
    }

    .event-banner-content {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
    }

    .user-count-display {
        padding: 15px;
    }

    .user-count-number {
        font-size: 42px;
        margin-bottom: 8px;
    }

    .user-count-label {
        font-size: 14px;
    }

    .event-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .event-description {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .event-rule {
        font-size: 12px;
    }

    .event-prize {
        padding: 8px 10px;
    }

    .event-prize-title {
        font-size: 12px;
    }

    .event-prize-text {
        font-size: 11px;
    }
}
.activity-feed {
display: flex;
flex-direction: column;
gap: 8px;
max-height: 300px;
overflow-y: auto;
padding-right: 8px;
padding-bottom: 4px;
}
.activity-feed::-webkit-scrollbar {
width: 4px;
}
.activity-feed::-webkit-scrollbar-track {
background: transparent;
}
.activity-feed::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.15);
border-radius: 2px;
}
.activity-feed::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.25);
}
.activity-load-more {
width: calc(100% - 12px);
padding: 8px 12px;
background: rgba(96, 165, 250, 0.1);
border: 1px solid rgba(96, 165, 250, 0.2);
border-radius: 8px;
color: #60a5fa;
font-size: 13px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
margin-top: 8px;
flex-shrink: 0;
}
.activity-load-more:hover {
background: rgba(96, 165, 250, 0.15);
border-color: rgba(96, 165, 250, 0.3);
}
.activity-load-more i {
font-size: 12px;
transition: transform 0.2s ease;
}
.activity-load-more:hover i {
transform: translateY(2px);
}
@media (max-width: 768px) {
.activity-preview {
-webkit-line-clamp: 3;
}
.activity-user {
flex-wrap: nowrap;
}
.activity-time {
margin-left: 4px;
}
}
.activity-item {
display: flex;
gap: 10px;
padding: 10px;
background: rgba(255, 255, 255, 0.03);
border-radius: 8px;
transition: all 0.2s ease;
}
.activity-item:hover {
background: rgba(255, 255, 255, 0.06);
}
.activity-icon {
width: 28px;
height: 28px;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
flex-shrink: 0;
border-radius: 6px;
}
.activity-avatar {
width: 36px;
height: 36px;
border-radius: 50%;
flex-shrink: 0;
object-fit: cover;
}
.activity-content {
flex: 1;
min-width: 0;
}
.activity-user {
display: flex;
align-items: center;
gap: 5px;
margin-bottom: 4px;
flex-wrap: wrap;
}
.activity-username {
font-size: 14px;
font-weight: 600;
color: white;
text-decoration: none;
word-break: break-word;
}
.activity-username:hover {
text-decoration: underline;
}
.activity-action {
font-size: 13px;
color: rgba(255, 255, 255, 0.7);
font-weight: 500;
word-break: break-word;
}
.activity-time {
font-size: 12px;
color: rgba(255, 255, 255, 0.5);
margin-left: auto;
}
.activity-preview {
font-size: 13px;
color: rgba(255, 255, 255, 0.6);
margin-top: 4px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
line-height: 1.4;
word-break: break-word;
}
.activity-preview a {
color: #60a5fa;
text-decoration: none;
font-weight: 500;
}
.activity-preview a:hover {
text-decoration: underline;
color: #93c5fd;
}
.activity-loading {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 20px;
color: rgba(255, 255, 255, 0.6);
font-size: 13px;
}
.activity-loading:only-child {
flex-direction: column;
gap: 12px;
padding: 40px 20px;
}
.activity-spinner {
width: 16px;
height: 16px;
border: 2px solid rgba(96, 165, 250, 0.1);
border-top-color: #60a5fa;
border-radius: 50%;
animation: spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
flex-shrink: 0;
}
.activity-loading:only-child .activity-spinner {
width: 32px;
height: 32px;
border-width: 3px;
border-right-color: #60a5fa;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
.activity-empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 30px 20px;
color: rgba(255, 255, 255, 0.5);
text-align: center;
}
.activity-empty p {
margin: 0;
font-size: 13px;
}
.activity-guest-view {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 30px 20px;
text-align: center;
gap: 16px;
}
.activity-guest-count {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
}
.activity-guest-number {
font-size: 48px;
font-weight: 800;
color: #60a5fa;
line-height: 1;
text-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
animation: countPulse 2s ease-in-out infinite;
}
@keyframes countPulse {
0%, 100% {
transform: scale(1);
text-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}
50% {
transform: scale(1.05);
text-shadow: 0 0 30px rgba(96, 165, 250, 0.5);
}
}
.activity-guest-label {
font-size: 14px;
font-weight: 600;
color: rgba(255, 255, 255, 0.7);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.activity-guest-text {
font-size: 13px;
color: rgba(255, 255, 255, 0.6);
margin: 0;
}
.activity-guest-button {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(59, 130, 246, 0.15));
border: 1px solid rgba(96, 165, 250, 0.3);
border-radius: 8px;
color: #60a5fa;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.activity-guest-button:hover {
background: linear-gradient(135deg, rgba(96, 165, 250, 0.25), rgba(59, 130, 246, 0.25));
border-color: rgba(96, 165, 250, 0.5);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(96, 165, 250, 0.2);
}
.activity-guest-button i {
font-size: 16px;
}
.activity-reaction-emoji {
font-size: 14px;
margin-left: 2px;
}

.activity-icon-highlight {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.activity-preview-highlight {
font-weight: 500;
color: rgba(255, 255, 255, 0.85);
}
.activity-preview-highlight a {
color: #93c5fd;
font-weight: 600;
}
.activity-preview-highlight a:hover {
color: #bfdbfe;
}
.activity-preview-post {
font-weight: 500;
color: rgba(255, 255, 255, 0.85);
padding: 8px 10px;
background: rgba(139, 92, 246, 0.08);
border-left: 2px solid rgba(139, 92, 246, 0.4);
border-radius: 4px;
margin-top: 6px;
}
.activity-preview-post a {
color: #c4b5fd;
font-weight: 500;
text-decoration: none;
}
.activity-preview-post a:hover {
color: #ddd6fe;
text-decoration: none;
}
.activity-username-link {
font-size: 14px;
padding: 2px 8px;
background: rgba(16, 185, 129, 0.1);
border-radius: 4px;
display: inline-block;
}
.activity-username-link:hover {
background: rgba(16, 185, 129, 0.15);
}

.activity-hide-text-btn {
display: flex;
align-items: center;
justify-content: center;
background: transparent;
border: none;
color: rgba(255, 255, 255, 0.4);
cursor: pointer;
border-radius: 4px;
transition: all 0.2s ease;
font-size: 11px;
padding: 4px 0;
margin-top: 6px;
}
.activity-hide-text-btn:hover {
color: rgba(255, 255, 255, 0.6);
}
.activity-hide-text-btn .confirm-text {
display: none;
}
.activity-hide-text-btn.confirm {
color: #ef4444;
animation: pulse 0.5s ease-in-out;
}
.activity-hide-text-btn.confirm .hide-text {
display: none;
}
.activity-hide-text-btn.confirm .confirm-text {
display: block;
}
.hidden-users-notice {
background: rgba(239, 68, 68, 0.1);
border: 1px solid rgba(239, 68, 68, 0.2);
border-radius: 8px;
padding: 10px 12px;
margin-bottom: 12px;
}
.hidden-users-header {
display: flex;
align-items: center;
gap: 6px;
font-size: 12px;
font-weight: 600;
color: #ef4444;
margin-bottom: 8px;
}
.hidden-users-list {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.unhide-user-btn {
display: flex;
align-items: center;
gap: 4px;
padding: 4px 8px;
background: rgba(16, 185, 129, 0.1);
border: 1px solid rgba(16, 185, 129, 0.2);
border-radius: 4px;
color: #10b981;
font-size: 11px;
cursor: pointer;
transition: all 0.2s ease;
}
.unhide-user-btn:hover {
background: rgba(16, 185, 129, 0.2);
border-color: rgba(16, 185, 129, 0.3);
}
@keyframes fadeOut {
from {
opacity: 1;
transform: translateX(0);
}
to {
opacity: 0;
transform: translateX(-20px);
}
}
@keyframes pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.1);
}
}

.activity-hide-btn {
width: 18px;
height: 18px;
display: flex;
align-items: center;
justify-content: center;
background: transparent;
border: none;
color: rgba(255, 255, 255, 0.2);
cursor: pointer;
border-radius: 3px;
transition: all 0.2s ease;
flex-shrink: 0;
font-size: 10px;
opacity: 0;
}
.activity-item:hover .activity-hide-btn {
opacity: 1;
}
.activity-hide-btn:hover {
background: rgba(255, 255, 255, 0.05);
color: rgba(255, 255, 255, 0.4);
}
.activity-hide-btn.confirm {
opacity: 1;
background: rgba(239, 68, 68, 0.1);
color: #ef4444;
border: 1px solid rgba(239, 68, 68, 0.2);
animation: pulse 0.5s ease-in-out;
}
.activity-hide-btn.confirm:hover {
background: rgba(239, 68, 68, 0.2);
color: #f87171;
}

.hidden-users-notice {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 10px;
background: rgba(255, 255, 255, 0.03);
border-radius: 6px;
margin-bottom: 8px;
font-size: 11px;
flex-wrap: wrap;
}
.hidden-count {
color: rgba(255, 255, 255, 0.4);
font-weight: 500;
}
.unhide-user-btn {
display: inline-flex;
align-items: center;
gap: 4px;
padding: 3px 8px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 4px;
color: rgba(255, 255, 255, 0.6);
font-size: 11px;
cursor: pointer;
transition: all 0.2s ease;
}
.unhide-user-btn:hover {
background: rgba(255, 255, 255, 0.08);
color: rgba(255, 255, 255, 0.8);
border-color: rgba(255, 255, 255, 0.2);
}
.unhide-user-btn i {
font-size: 10px;
}
