<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Background Styling */
.background {
    background-image: url('images/bg.jpg');
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
}

/* Main Content Styling */
.content {
    color: #fff;
    text-align: center;
    padding: 20px;
    font-family: 'Arial', sans-serif;
}

/* Circular Image Styling */
.circle-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #fff;
    margin-bottom: 20px;
}

/* Roadmap Section */
.roadmap ul {
    list-style-type: none;
    padding: 0;
}

.roadmap li {
    background: rgba(0, 0, 0, 0.7);
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

/* Canister ID Styling (Clickable &amp; Yellow) */
.copyable {
    color: yellow;
    text-decoration: underline;
    cursor: pointer;
}

/* Button Styling */
.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    padding: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.circle-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-right: 10px;
    transition: transform 0.3s;
}

.buttons a:hover .circle-button {
    transform: scale(1.1);
}

.buttons a:hover {
    transform: scale(1.05);
}

/* ICP Badge Styling (Smaller &amp; Higher on Mobile) */
.icp-badge {
    position: fixed;
    top: 5px; /* Higher Position */
    right: 15px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    padding: 6px 14px;
    border-radius: 30px;
    z-index: 10;
    transition: all 0.3s ease-in-out;
    text-decoration: none; /* Removes Underline */
}

.icp-badge img {
    width: 28px; /* 30% Smaller */
    height: 28px;
    margin-right: 6px;
}

.icp-badge span {
    color: #000;
    font-size: 12px;
    font-weight: bold;
}

/* Fix for Mobile - Moves Badge Higher */
@media (max-width: 600px) {
    .icp-badge {
        top: 0px; /* Even Higher on Mobile */
        right: 10px;
        padding: 5px 12px;
    }

    .icp-badge img {
        width: 24px;
        height: 24px;
    }

    .icp-badge span {
        font-size: 11px;
    }
}</pre></body></html>