.page-title {
    color: #c792ea;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;

}

.hactivity-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.hactivity-list {
    list-style: none;
    padding: 0;
}

.hactivity-item {
    display: flex;
    align-items: flex-start;

    margin-bottom: 20px;
    background-color: #33344A;
    border-radius: 8px;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.hactivity-item:hover {
    background-color: #292a3a;

}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid #c792ea;

}

.hactivity-info {
    color: #ffffff;
    display: flex;
    flex-direction: column;

    width: 100%;

    gap: 5px;

}

.hactivity-info i {
    color: #c792ea;

}

.hactivity-info a {
    color: #c792ea;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    font-weight: bold;

}

.hactivity-info a:hover {
    color: #a56de2;
}

.hactivity-text {}

.hactivity-summary {
    text-align: center;
    margin: 40px 0;
}

.hactivity-total {
    color: #c792ea; 
    font-family: 'Courier New', Courier, monospace;
    font-size: 2.5rem;
}

.hactivity-total span {
    font-weight: bold;
    color: #c792ea; /* White text for contrast */
    animation: flicker-effect 2.5s infinite;
}

@keyframes hacking-glow {
    0% {
        text-shadow: 0 0 8px #c792ea, 0 0 12px #a56de2, 0 0 18px #6c49b8;
    }
    100% {
        text-shadow: 0 0 12px #c792ea, 0 0 18px #a56de2, 0 0 25px #6c49b8;
    }
}

@keyframes flicker-effect {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}
