<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: Arial, sans-serif;
    background-color: #1a1e2e;  /* Dark navy background */
    margin: 0;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.widget {
    width: 300px;
    background-color: #232944;  /* Slightly lighter navy for content area */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
.header {
    background-color: #2f3350;  /* Header color matching the "STATS" and "COMMUNITY" headers */
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
.content {
    padding: 15px;
}
.streamer {
    background-color: #373e5c;  /* Dark blue for rows */
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s;
}
.streamer:hover {
    background-color: #424b70;  /* Slightly lighter on hover */
}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.info {
    flex-grow: 1;
}
.name {
    font-weight: bold;
    margin-bottom: 3px;
    color: #ffffff;
}
.status {
    font-size: 14px;
}
.online {
    color: #4caf50;  /* Keep green for online status */
    font-weight: bold;
}
.offline {
    color: #f44336;  /* Keep red for offline status */
    font-weight: bold;
}
.viewers {
    font-size: 12px;
    color: #a0a0a0;
    font-weight: bold;
}
.community-followers {
    font-size: 14px;
    color: #a0a0a0;
}
.community-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.community-button {
    flex: 1;
    margin: 0 5px;
    padding: 8px;
    border: none;
    border-radius: 5px;
    background-color: #2980b9;  /* Blue button matching level indicators */
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}
.community-button:hover {
    background-color: #3498db;  /* Lighter blue on hover */
}
.streamers-list {
    max-height: 600px;
    overflow-y: auto;
}
.streamers-list::-webkit-scrollbar {
    width: 8px;
}
.streamers-list::-webkit-scrollbar-track {
    background: #1a1e2e;  /* Match body background */
}
.streamers-list::-webkit-scrollbar-thumb {
    background-color: #2980b9;  /* Match blue accent color */
    border-radius: 4px;
}
/* For the tabs like "Top Level" and "Top Guilds" */
.tab {
    background-color: #44487a;  /* Slightly brighter blue for active tabs */
    color: white;
    padding: 10px 15px;
    border-radius: 5px 5px 0 0;
    display: inline-block;
    cursor: pointer;
}
.tab.inactive {
    background-color: #2f3350;  /* Darker for inactive tabs */
}
/* For the level indicators */
.level-indicator {
    background-color: #2980b9;  /* Bright blue for level indicators */
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}</pre></body></html>