html {
    overflow-x: hidden;
}

html, body {
    -ms-overflow-style: none;      /* IE i stary Edge */
    scrollbar-width: none;         /* Firefox */
}
html::-webkit-scrollbar {
    width: 0;
    height: 0;
}
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-select: none;
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-select: none;
}

a, .arrow, .profile-button {
    cursor: pointer;
}

@keyframes falling {
    0% {
        transform: translateY(-10%) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes randomFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--end-x), var(--end-y)) rotate(360deg);
        opacity: 0;
    }
}

.cherry-blossom {
    position: fixed;
    pointer-events: none;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.petal {
    position: absolute;
    background-color: #ffb7c5;
    border-radius: 150% 0 150% 0;
    /* Uproszczony cień (mniej kosztowny niż drop-shadow na GPU) */
    box-shadow: 0 0 3px 1px rgba(255, 183, 197, 0.25);
    opacity: 0;
    will-change: transform, opacity;
}

body {
    background-color: #000;
    color: white;
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
        125deg,
        #000000,
        #1a1a1a,
        #2b1a1a,
        #1a1a2b
    );
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    /* Pozwól na przewijanie w pionie na mniejszych wysokościach ekranu */
    overflow-x: hidden;
    overflow-y: auto;
}

/* Ukryj paski przewijania (zostaje scroll kółkiem/gestami) */
body, .container {
    -ms-overflow-style: none;      /* IE i stary Edge */
    scrollbar-width: none;         /* Firefox */
}
body::-webkit-scrollbar,
.container::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.container {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 0 32px rgba(0, 0, 0, 0.2),
                0 0 64px rgba(0, 0, 0, 0.6);
    /* Utrzymaj kartę w obrębie okna i włącz przewijanie zawartości przy małych wysokościach */
    max-height: 92vh;
    overflow: visible;
}

.profile-card {
    background-color: transparent;
    padding: 0;
    text-align: center;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 10px 0;
}

.profile-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.username {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.badge {
    color: #ff0055;
    font-size: 20px;
}

.bio-text {
    color: #ff0055;
    font-size: 16px;
    margin: 15px 0;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-shadow: 0 0 20px rgba(255, 0, 85, 0.3);
}

.badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
}

.badge-item {
    background: rgba(30, 31, 34, 0.8);
    padding: 8px;
    border-radius: 6px;
    cursor: help;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.badge-item:hover {
    background: #2b2d31;
}

.badge-icon {
    width: 20px;
    height: 20px;
    font-size: 20px; /* dla emoji, nie szkodzi SVG */
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.discord-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #111214;
    border: 1px solid #2d2f32;
    border-radius: 4px;
    padding: 0;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.1s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
    pointer-events: none;
    z-index: 1000;
    margin-bottom: 8px;
    min-width: 180px;
}

.discord-tooltip::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #111214;
    border-right: 1px solid #2d2f32;
    border-bottom: 1px solid #2d2f32;
}

.tooltip-header {
    color: #ffffff;
    padding: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid #2d2f32;
}

.tooltip-content {
    padding: 12px;
    color: #b5bac1;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.3;
}

.tooltip-wrapper:hover .discord-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.social-links-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}

.social-links {
    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 6px;
    overflow: hidden;
    width: calc(40px * 5 + 8px * 4); /* Exactly 5 items (40px each) + 4 gaps (8px each) */
    transition: transform 0.3s ease;
    margin: 0 auto;
    background: none;
    border: none;
}

.social-links-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    gap: 8px;
    width: fit-content;
    transform: translateX(0); /* ensure initial value so parseInt logic nie zwraca NaN */
}

.social-link {
    position: relative;
    font-size: 22px;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2b2d31;
    border-radius: 50%;
    border: none;
    flex: 0 0 40px;
}

.nav-button {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(30, 31, 34, 0.8);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease, opacity 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.nav-button:hover {
    background: #313338;
    transform: scale(1.1);
}

.nav-button:active {
    transform: scale(0.95);
}

.nav-button[style*="opacity: 0.5"] {
    cursor: default;
}

.nav-button[style*="opacity: 0.5"]:hover {
    background: rgba(30, 31, 34, 0.8);
    transform: none;
}

.activity-container {
    margin-top: 20px;
    width: 100%;
    position: relative;
}

.discord-activity {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.discord-activity.playing {
    --activity-color: 88, 101, 242;
}

.discord-activity.streaming {
    --activity-color: 89, 54, 149;
}

.discord-activity.listening {
    --activity-color: 29, 185, 84;
}

.discord-activity.watching {
    --activity-color: 255, 69, 58;
}

.discord-activity.competing {
    --activity-color: 255, 171, 0;
}

.discord-activity.playing,
.discord-activity.streaming,
.discord-activity.listening,
.discord-activity.watching,
.discord-activity.competing {
    animation: outlineAnimation 2s ease-in-out infinite;
}

.discord-activity.offline {
    --activity-color: 114, 118, 125;
    opacity: 0.8;
}

.discord-activity.offline #activity-name {
    color: rgba(255, 255, 255, 0.7);
}

.discord-activity.offline #activity-state {
    color: rgba(255, 255, 255, 0.5);
}

.discord-activity.playing,
.discord-activity.streaming,
.discord-activity.listening,
.discord-activity.watching,
.discord-activity.competing,
.discord-activity.offline {
    animation: outlineAnimation 2s ease-in-out infinite;
}

.activity-image-container {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
}

.activity-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.activity-item {
    display: flex;
    gap: 15px;
    padding-bottom: 30px;
    align-items: flex-start;
}

.activity-details {
    flex: 1;
    min-width: 0;
}

.activity-name {
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
    word-break: break-word;
}

.activity-state {
    color: #aaa;
    font-size: 12px;
    margin-top: 3px;
    word-break: break-word;
    line-height: 1.5;
}

.activity-nav {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.arrow {
    cursor: pointer;
    color: #666;
    transition: color 0.2s, transform 0.2s;
    font-size: 18px;
}

.arrow:hover {
    color: #fff;
    transform: scale(1.2);
}

.profile-button {
    color: #fff;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: linear-gradient(45deg, #ff0055, #ff3377);
    background-clip: padding-box;
}

.profile-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff0055, #ff3377, #ff0055);
    border-radius: 9px;
    z-index: -1;
    animation: borderAnimation 3s ease infinite;
}

.profile-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.4);
}

.profile-button:active {
    transform: translateY(0);
}

@keyframes borderAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.profile-section {
    background-color: rgba(30, 31, 34, 0.8);
    border-radius: 8px;
    padding: 16px;
    margin-top: -20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.katujemy-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.katujemy-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.katujemy-title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.katujemy-buttons {
    display: flex;
    gap: 8px;
}

/* Valorant Section */
.valorant-section {
    position: relative;
    width: 366px; /* stała szerokość sekcji */
    max-width: 100%;
    align-self: center;
    background: rgba(30, 31, 34, 0.8);
    border-radius: 8px;
    padding: 16px 16px 18px 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.07);
    margin-top: 20px;
    margin-bottom: 16px; /* wyrównanie z odstępem nad sekcją aktywności */
}

.valorant-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.valorant-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: #ff4655;
    background: linear-gradient(90deg,#ff4655,#ff7b93);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.valorant-track-btn {
    font-size: 11px;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg,#202225,#2c2f33);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.valorant-track-btn:hover {
    background: linear-gradient(90deg,#ff4655,#ff0055);
    border-color: #ff4655;
    box-shadow: 0 2px 10px rgba(255,70,85,0.35);
}

.valorant-banner-wrapper {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/6; /* wide */
    background: linear-gradient(120deg,#1a1a1a,#2b1a1a,#1a1a2b);
}

.valorant-banner-skeleton {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.06) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.6s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.valorant-banner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    filter: saturate(1.05) contrast(1.05);
}

.valorant-rank-chip {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04) inset;
    min-height: 46px;
    max-width: 68%;
}

.valorant-rank-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6));
}

.valorant-rank-texts {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.valorant-rank-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.valorant-elo {
    font-size: 11px;
    opacity: 0.8;
    font-weight: 500;
}

.valorant-meta {
    font-size: 12px;
    color: #b5bac1;
    font-weight: 400;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 4px;
}

.valorant-meta span {
    background: #202225;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    letter-spacing: 0.4px;
}

.valorant-error {
    color: #ff4655;
    font-size: 12px;
    padding: 6px 8px;
    background: rgba(255,70,85,0.1);
    border: 1px solid rgba(255,70,85,0.3);
    border-radius: 6px;
}

.valorant-rank-section {
    background-color: rgba(30, 31, 34, 0.8);
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.valorant-rank-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    min-height: 38px;
    background: linear-gradient(90deg, #ff4655 0%, #1a1a2b 100%);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255,70,85,0.15);
    padding: 0 18px;
    transition: background 0.3s;
    border: 2px solid #ff4655;
}

.valorant-rank-badge:hover {
    background: linear-gradient(90deg, #ff4655 0%, #ffb7c5 100%);
}

.valorant-rank-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.valorant-rank-logo {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #111214;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(255,70,85,0.12);
}

.valorant-rank-title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.valorant-rank-value {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    margin-left: 0;
}

.katujemy-button {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.discord-button {
    background: #5865F2;
    color: white;
}

.discord-button:hover {
    background: #4752C4;
}

.forum-button {
    background: #ff0055;
    color: white;
}

.forum-button:hover {
    background: #e6004c;
}

.profile-info-display,
.profile-button {
    display: none;
}

.discord-id {
    color: #888;
    margin-bottom: 15px;
}


.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-button {
    background-color: #1a1a1a;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.link-button:hover {
    background-color: #333;
}

/* Common tooltip styles */
.tooltip-wrapper {
    position: relative;
}

/* Update social link styles */
.social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
    background: #313338;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Add smooth transition for tooltip */
.tooltip-wrapper:hover .discord-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

/* Update badge and social link hover effects */
.badges span, .social-link {
    transition: transform 0.2s ease, filter 0.2s ease;
}

.badges span:hover, .social-link:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Add hover animation for social links */
@keyframes socialHover {
    0% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

.social-link:hover {
    animation: socialHover 1s ease infinite;
}

/* Add this new animation */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.2s ease;
}

.social-link:hover .social-icon {
    filter: brightness(1.2);
}

/* Fallback gdy obrazek nie załadował się i wstawiono emoji */
.social-fallback + span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.netlify-badge-container {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    transform: translateX(115px); /* Ukrywa odznakę, ale zostawia zębatkę */
    transition: transform 0.4s ease-in-out;
}

.netlify-badge-container.active {
    transform: translateX(0);
}

/* --- Responsive: wysokościowe breakpoints --- */
@media (max-height: 800px) {
    body {
        align-items: flex-start;
        padding-top: 16px;
    }
    .container {
        max-height: none;
        overflow: visible; /* przewijaj stronę, nie kartę */
        gap: 16px;
        padding: 22px;
    }
    .profile-img {
        width: 84px;
        height: 84px;
    }
    .bio-text { margin: 12px 0; }
    .badges { margin: 12px 0; }
    .social-links-container { margin-top: 14px; }
    .activity-container { margin-top: 14px; }
    .valorant-section {
        padding: 12px;
        margin-top: 14px;
        margin-bottom: 12px;
    }
    .valorant-banner-wrapper { aspect-ratio: 16/7; }
}

@media (max-height: 680px) {
    .profile-img {
        width: 72px;
        height: 72px;
    }
    .username { font-size: 22px; }
    .bio-text { font-size: 14px; margin: 10px 0; }
    .badges { margin: 10px 0; }
    .valorant-title { font-size: 12px; letter-spacing: 1.2px; }
    .valorant-track-btn { padding: 4px 8px; font-size: 10px; }
    .valorant-banner-wrapper { aspect-ratio: 16/8; }
}

.netlify-toggle {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    border-radius: 50%;
    opacity: 0;
}

.netlify-badge-container:hover .netlify-toggle {
    color: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.netlify-toggle:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: rotate(90deg);
}

.netlify-badge {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateX(20px);
}

.netlify-badge.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes outlineAnimation {
    0% {
        border-color: rgba(var(--activity-color), 0.4);
        box-shadow: 0 0 10px rgba(var(--activity-color), 0.1);
    }
    50% {
        border-color: rgba(var(--activity-color), 0.8);
        box-shadow: 0 0 20px rgba(var(--activity-color), 0.2);
    }
    100% {
        border-color: rgba(var(--activity-color), 0.4);
        box-shadow: 0 0 10px rgba(var(--activity-color), 0.1);
    }
}

.comet-link-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(0, 204, 255, 0.8);
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
    &:hover {
        background: rgba(0, 204, 255, 1);
    }
}

.comet-logo {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 8px;
}

.comet-link {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.comet-img {
    vertical-align: middle;
    text-align: middle;
}

.comet-text {
    vertical-align: middle;
    text-align: middle;
}

@media (max-width: 400px) {
    .comet-link-container {
        bottom: 10px;
        right: 10px;
        padding: 10px 12px;
    }
    .comet-logo {
        width: 24px;
        height: 24px;
        margin-right: 6px;
    }
    .comet-link {
        font-size: 12px;
    }
}

