html,
body {
    margin: 0;
    padding: 0;
    background: #050505;
}

.lp-live-server {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 760px;
    background-image: url('los-parias-online-bg.png');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 190, 80, .30);
    border-radius: 18px;
    color: #f4ead7;
    box-shadow: 0 18px 45px rgba(0,0,0,.45);
}

.lp-live-overlay {
    min-height: 760px;
    padding: 110px 470px 35px 500px;
    background: transparent;
}

.lp-live-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 14px;
}

.lp-live-header h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.lp-live-header p {
    margin: 6px 0 0;
    color: #c9b996;
}

.lp-status {
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: .08em;
    font-size: 13px;
    white-space: nowrap;
}

.lp-status.online {
    background: rgba(20, 170, 80, .18);
    color: #63ff9c;
    border: 1px solid rgba(99,255,156,.42);
    box-shadow: 0 0 24px rgba(99,255,156,.10);
}

.lp-status.offline {
    background: rgba(180, 30, 30, .18);
    color: #ff7373;
    border: 1px solid rgba(255,115,115,.42);
}

.lp-activity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    padding: 12px 14px;
    background: rgba(0,0,0,.72);
    border: 1px solid rgba(255,190,80,.20);
    border-radius: 14px;
    color: #f5e6c8;
    font-weight: 800;
}

.lp-activity-icon {
    font-size: 18px;
    line-height: 1;
}

.lp-activity-high { border-color: rgba(99,255,156,.30); }
.lp-activity-mid { border-color: rgba(255,190,80,.32); }
.lp-activity-low { border-color: rgba(255,115,115,.30); }
.lp-activity-sleep { border-color: rgba(190,190,190,.22); }

.lp-live-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.lp-second-grid {
    grid-template-columns: 1fr 3fr;
}

.lp-card {
    background: rgba(0,0,0,.82);
    border: 1px solid rgba(255,190,80,.16);
    border-radius: 12px;
    padding: 10px;
    backdrop-filter: blur(2px);
}

.lp-main-card, .lp-wipe-card {
    border-color: rgba(255,190,80,.36);
}

.lp-label {
    display: block;
    color: #c9b996;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.lp-card strong {
    display: block;
    font-size: 22px;
    line-height: 1.05;
    color: #ffd37a;
    overflow-wrap: anywhere;
}

.lp-wide-note strong {
    font-size: 17px;
}

.lp-card small {
    display: block;
    margin-top: 8px;
    color: #b9aa8e;
}

.lp-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.lp-card h3 {
    margin: 0 0 12px;
    color: #ffd37a;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 17px;
}

.lp-player-list, .lp-seen-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 5px;
    max-height: 260px;
    overflow: auto;
}

.lp-player-list li, .lp-seen-list li {
    background: rgba(0,0,0,.50);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 10px;
    padding: 9px 11px;
    color: #f4ead7;
}

.lp-seen-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.lp-empty {
    color: #b9aa8e;
    margin: 0;
}

.lp-home-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: linear-gradient(180deg, #d4aa45 0%, #a97818 100%);
    border: 1px solid #ffd37a;
    border-radius: 10px;
    color: #111;
    text-decoration: none;
    font-weight: 900;
    font-size: 15px;
    box-shadow: 0 0 18px rgba(255,190,80,.25);
}

.lp-home-btn:hover {
    background: #ffd37a;
    border-color: #fff1b8;
    color: #000;
}

.lp-role-owner {
    color: #ff7a18 !important;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255,122,24,.28);
}

.lp-role-admin {
    color: #ffd700 !important;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255,215,0,.22);
}

.lp-role-vip {
    color: #b26cff !important;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(178,108,255,.25);
}

.lp-role-player {
    color: #f4ead7;
}

@media (max-width: 1400px) {
    .lp-live-overlay {
        padding: 140px 250px 40px 280px;
    }
}

@media (max-width: 1100px) {
    .lp-live-overlay {
        padding: 140px 45px 36px 230px;
        background: rgba(0,0,0,.35);
    }

    .lp-live-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-second-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .lp-live-server {
        min-height: auto;
    }

    .lp-live-overlay {
        min-height: auto;
        padding: 120px 22px 28px;
        background: rgba(0,0,0,.68);
    }

    .lp-lists {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .lp-live-grid {
        grid-template-columns: 1fr;
    }

    .lp-live-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .lp-live-header h2 {
        font-size: 25px;
    }
}
