<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1E1C3A;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.container {
    padding: 16px;
}
.navbar {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background-color: #2D294E;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.5);
}
.navbar a {
    text-decoration: none;
    color: white;
    text-align: center;
    font-size: 12px;
    position: relative; /* Add this to position the bubble correctly */
}
.navbar a img {
    width: 24px;
    height: 24px;
    filter: invert(1) brightness(2);
    transition: filter 0.3s ease;
}
.navbar a.active img {
    filter: invert(64%) sepia(85%) saturate(748%) hue-rotate(1deg) brightness(100%) contrast(101%);
}
.navbar a:hover img {
    filter: invert(0.8) brightness(1.5);
}
.navbar a.active {
    color: #FFD700;
    border-radius: 8px;
}
.navbar a .bubble {
    position: absolute;
    top: -5px; /* Adjust vertical position of the bubble */
    right: -10px; /* Adjust horizontal position of the bubble */
    background: #f50057;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.tabs {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background-color: #2D294E;
}
.tabs button {
    background: none;
    border: none;
    color: white;
    padding: 10px 16px;
    cursor: pointer;
}
.tabs button.active {
    color: #42A5F5;
    border-bottom: 2px solid #42A5F5;
}
.banner {
    margin: 20px 0;
    background-color: #4B56AF;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
}
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}
.card {
    background-color: #29284A;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    position: relative;
}
.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.card-title {
    color: #FFFFFF !important;
    font-size: 14px;
    padding: 8px;
}
.badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #FF5722;
    color: white;
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 4px;
}
.dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
.dialog {
    background-color: #29284A;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    max-width: 400px;
    text-align: center;
}
.dialog-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}
.dialog-content {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.dialog button {
    background-color: #4B56AF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}
.dialog button:hover {
    background-color: #5C6BC0;
}

/* Left align the text in lists */
ul {
    text-align: left;
    padding-left: 20px;
}</pre></body></html>