.EnchiWasOnline {
    position: relative;
    margin: 18px 0;
    padding: 0 16px 16px;
    overflow: hidden;

    background: #15151b;
    border: 1px solid #2e2e36;
    border-radius: 10px;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

/* Pomarańczowy akcent u góry */

.EnchiWasOnline__accent {
    position: absolute;
    top: 0;
    left: 16px;

    width: 90px;
    height: 3px;

    background: #ff7200;
    border-radius: 0 0 4px 4px;

    box-shadow: 0 0 8px rgba(255, 114, 0, 0.25);
}

/* Nagłówek */

.EnchiWasOnline__header {
    min-height: 52px;

    display: flex;
    align-items: center;
}

.EnchiWasOnline__heading {
    margin: 0;
    padding: 0;

    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

/* Wewnętrzny panel */

.EnchiWasOnline__body {
    display: flex;
    align-items: center;
    gap: 20px;

    min-height: 90px;
    padding: 18px 24px;

    background: #0c0c0f;
    border-radius: 10px;
}

/* Lewa kolumna z ikoną */

.EnchiWasOnline__icon {
    width: 60px;
    min-width: 60px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ikona zegara */

.EnchiWasOnline__clock {
    position: relative;

    width: 22px;
    height: 22px;

    display: block;

    border: 2px solid #ff7200;
    border-radius: 50%;

    background: rgba(255, 114, 0, 0.06);

    box-shadow:
        0 0 8px rgba(255, 114, 0, 0.45),
        0 0 15px rgba(255, 114, 0, 0.18);
}

/* Wskazówka pionowa */

.EnchiWasOnline__clock::before {
    content: "";

    position: absolute;
    top: 4px;
    left: 9px;

    width: 2px;
    height: 7px;

    background: #ff7200;
    border-radius: 2px;

    transform-origin: bottom center;
}

/* Wskazówka pozioma */

.EnchiWasOnline__clockHand {
    position: absolute;
    top: 10px;
    left: 10px;

    width: 6px;
    height: 2px;

    display: block;

    background: #ff7200;
    border-radius: 2px;

    transform-origin: left center;
    transform: rotate(20deg);
}

/* Środek zegara */

.EnchiWasOnline__clock::after {
    content: "";

    position: absolute;
    top: 8px;
    left: 8px;

    width: 4px;
    height: 4px;

    background: #ff7200;
    border-radius: 50%;
}

/* Treść */

.EnchiWasOnline__content {
    flex: 1;
    min-width: 0;
}

.EnchiWasOnline__title {
    margin-bottom: 5px;

    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.EnchiWasOnline__description {
    margin-bottom: 11px;

    color: #a7a7af;
    font-size: 11px;
    line-height: 1.6;
}

/* Lista użytkowników */

.EnchiWasOnline__users {
    position: relative;
    padding-left: 18px;

    color: #9f9fa7;
    font-size: 15px;
    line-height: 1.8;

    overflow-wrap: anywhere;
    word-break: break-word;
}

.EnchiWasOnline__users::before {
    content: "↳";

    position: absolute;
    top: -1px;
    left: 0;

    color: #ff7200;
    font-size: 15px;
    font-weight: 700;
}

.EnchiWasOnline__users a {
    font-weight: 700;
    text-decoration: none;

    transition:
        color 0.2s ease,
        text-shadow 0.2s ease;
}

.EnchiWasOnline__users a:hover {
    color: #ff7200 !important;
    text-shadow: 0 0 8px rgba(255, 114, 0, 0.4);
}

/* Widok mobilny */

@media screen and (max-width: 768px) {
    .EnchiWasOnline {
        padding-right: 10px;
        padding-left: 10px;
    }

    .EnchiWasOnline__accent {
        left: 10px;
    }

    .EnchiWasOnline__body {
        align-items: flex-start;
        gap: 14px;

        padding: 16px;
    }

    .EnchiWasOnline__icon {
        width: 40px;
        min-width: 40px;

        padding-top: 4px;
    }

    .EnchiWasOnline__title {
        font-size: 13px;
    }

    .EnchiWasOnline__description {
        font-size: 10px;
    }
}