@charset "utf-8";

/* ==========================================================================
   Reloj 현재접속자 (.reloj-connect-section)
   ========================================================================== */
.reloj-connect-section {
    padding: 0;
    color: #ffffff;
    font-family: "Jost", "Noto Sans KR", sans-serif;
}
.reloj-connect-section *,
.reloj-connect-section *::before,
.reloj-connect-section *::after { box-sizing: border-box; }

.reloj-connect-section .reloj-connect-wrapper {
    background: #24263A;
    border-radius: 16px;
    padding: 32px;
    max-width: 100%;
    margin: 0 auto;
}

.reloj-connect-section .reloj-connect-header { margin-bottom: 24px; }
.reloj-connect-section .reloj-connect-title {
    color: #ffffff; font-size: 26px; font-weight: 700; margin: 0 0 8px;
    display: flex; align-items: center; gap: 10px;
}
.reloj-connect-section .reloj-connect-title i {
    color: #65FF4B; font-size: 22px;
}
.reloj-connect-section .reloj-connect-sub { color: #B2B6BF; font-size: 14px; margin: 0; }
.reloj-connect-section .reloj-connect-sub b { color: #65FF4B; }

/* 리스트 */
.reloj-connect-section .reloj-connect-list { margin-bottom: 16px; }
.reloj-connect-section .reloj-connect-list-head,
.reloj-connect-section .reloj-connect-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
}
.reloj-connect-section .reloj-connect-list-head {
    background: rgba(255,255,255,0.04);
    border-radius: 8px 8px 0 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}
.reloj-connect-section .reloj-connect-list-head > span,
.reloj-connect-section .reloj-connect-row > span {
    flex-shrink: 0;
    text-align: center;
    min-width: 0;
}
.reloj-connect-section .col-num { width: 60px; color: #888a9a; font-size: 12px; }
.reloj-connect-section .col-name {
    width: 200px;
    text-align: left;
    display: flex; align-items: center; gap: 10px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.reloj-connect-section .col-loc {
    flex: 1; min-width: 0; text-align: left;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.reloj-connect-section .reloj-connect-list-body {
    list-style: none; padding: 0; margin: 0;
}
.reloj-connect-section .reloj-connect-row {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #d8d8e0;
    font-size: 13px;
    transition: background 0.2s;
}
.reloj-connect-section .reloj-connect-row:hover { background: rgba(255,255,255,0.03); }

/* 아바타 */
.reloj-connect-section .reloj-connect-avatar {
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    font-size: 14px;
}
.reloj-connect-section .reloj-connect-avatar.is-member {
    background: linear-gradient(94deg, #65FF4B 0%, #FFFB1F 100%);
    color: #121519;
}
.reloj-connect-section .reloj-connect-avatar.is-guest {
    background: rgba(255,255,255,0.06);
    color: #B2B6BF;
}

.reloj-connect-section .reloj-connect-username {
    color: #ffffff;
    font-weight: 500;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.reloj-connect-section .reloj-connect-location {
    color: #d8d8e0;
    font-size: 13px;
    display: inline-block;
    max-width: 100%;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    vertical-align: middle;
}
.reloj-connect-section .reloj-connect-location a {
    color: #65FF4B;
    text-decoration: none;
}
.reloj-connect-section .reloj-connect-location a:hover { text-decoration: underline; }

/* 빈 상태 */
.reloj-connect-section .reloj-connect-empty {
    padding: 80px 20px;
    text-align: center;
    color: #888a9a;
}
.reloj-connect-section .reloj-connect-empty i { font-size: 48px; margin-bottom: 16px; display: block; color: #404A60; }
.reloj-connect-section .reloj-connect-empty p { margin: 0; font-size: 14px; }

/* 액션 */
.reloj-connect-section .reloj-connect-actions {
    text-align: center;
    margin-top: 20px;
}
.reloj-connect-section .reloj-connect-btn-secondary {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px;
    border-radius: 100px;
    background: transparent;
    color: #ffffff;
    border: 1px solid #404A60;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}
.reloj-connect-section .reloj-connect-btn-secondary:hover {
    background: #ffffff; color: #121519; text-decoration: none;
}

/* 모바일 */
@media (max-width: 767px) {
    .reloj-connect-section { padding: 24px 8px; }
    .reloj-connect-section .reloj-connect-wrapper { padding: 18px 14px; }
    .reloj-connect-section .reloj-connect-title { font-size: 22px; }

    .reloj-connect-section .reloj-connect-list-head { display: none; }
    .reloj-connect-section .reloj-connect-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 12px;
    }
    .reloj-connect-section .reloj-connect-row > span {
        width: auto;
        text-align: left;
    }
    .reloj-connect-section .col-num {
        font-size: 11px;
        background: rgba(255,255,255,0.05);
        padding: 1px 8px;
        border-radius: 100px;
    }
    .reloj-connect-section .col-loc { width: 100%; white-space: normal; }
}

body .at-body { padding-top: 0px !important; }
