body {
    background: #f4f4f4;
    font-family: system-ui;
    margin-bottom: 80px;
}

.topbar {
    background: white;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.search {
    border-radius: 25px;
}

.tabs {
    overflow-x: auto;
    white-space: nowrap;
    background: white;
    padding: 8px;
}

.tabs a {
    text-decoration: none;
    color: black
}

.tabs span {
    display: inline-block;
    padding: 6px 14px;
    margin-right: 8px;
    background: #eee;
    border-radius: 20px;
    font-size: 13px;
}

.tabs span.active {
    background: #ff2f7a;
    color: white;
}

.live-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.live-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.live-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: red;
    color: white;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
}

.viewer {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 20px;
}

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    color: white;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.join {
    background: #ff2f7a;
    border: none;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    text-decoration: none;
}

.bottom-nav a {
    text-decoration: none;
    color: black;
}

.bottom-nav div {
    text-align: center;
    font-size: 11px;
}

.bottom-nav span {
    font-size: 22px;
    display: block;
}

.room-link {
    text-decoration: none;
    color: white;
}