/*style.css*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
:root {
    --bags-background: rgb(13, 13, 15);
    --bags-green: rgb(2, 255, 64);
    --bags-grey-extra-dark: #141414;
    --bags-grey-light: #bbb;
    --font-openrunde: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: var(--bags-background);
    color: #ffffff;
    font-family: var(--font-openrunde);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Ticker */
.ticker-wrapper {
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    padding: 10px 0;
}

.ticker-marquee {
    display: flex;
    width: 100%;
}

.ticker-content {
    display: flex;
    animation: scroll 120s linear infinite;
    white-space: nowrap;
}

.ticker-wrapper:hover .ticker-content {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 56px;
    flex-shrink: 0;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.ticker-item:hover {
    opacity: 0.7;
}

.ticker-icon-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.ticker-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.ticker-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

.ticker-change {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.positive {
    color: var(--bags-green);
}

/* Navigation */
.navbar {
    background: var(--bags-background);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1352px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 28px;
    cursor: pointer;
    flex-shrink: 0;
}

.search-wrapper {
    flex: 1;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 14px 18px 14px 46px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s;
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    padding: 10px 16px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--bags-green);
}

.btn-new-coin, .btn-hero {
    padding: 14px 32px;
    background: var(--bags-green);
    color: #000;
    border: none;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-new-coin:hover, .btn-hero:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.btn-login {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Wrapper */
.hero-wrapper {
    padding: 40px 24px 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero */
.hero-section {
    padding: 60px 24px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bags-background);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.11;
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-earnings {
    display: inline-block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.06);
    padding: 10px 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.earnings-amount {
    color: #fff;
    font-weight: 700;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: normal;
    line-height: 1.1;
    color: #fff;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-weight: 400;
}

.btn-hero {
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 700;
}

.btn-new-coin {
    font-size: 16px;
    font-weight: 700;
}

/* Table */
.table-section {
    padding: 40px 24px 100px;
}

.table-wrapper {
    max-width: 1352px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
}

.tokens-table {
    width: 100%;
    border-collapse: collapse;
}

.tokens-table thead {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tokens-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tokens-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.tokens-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.tokens-table td {
    padding: 16px 20px;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}

.rank {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    font-size: 14px;
}

.token-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.token-avatar {
    width: 40px;
    height: 40px;
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.token-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.token-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-icon {
    flex-shrink: 0;
}

.token-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.change {
    font-weight: 700;
    font-size: 15px;
}

.change.positive {
    color: var(--bags-green);
}

.change.negative {
    color: #ff4444;
}

.earnings {
    font-weight: 700;
    color: #fff;
    font-size: 15px;
}

.fee-earner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.earner-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.earner-name {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.twitter-icon {
    flex-shrink: 0;
    opacity: 0.4;
}

.price {
    color: #fff;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }
    
    .search-wrapper {
        order: 3;
        max-width: 100%;
        flex-basis: 100%;
    }
    
    .hero-section {
        padding: 60px 20px 40px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .table-section {
        padding: 20px;
        overflow-x: auto;
    }
    
    .tokens-table {
        min-width: 1200px;
    }
}

.negative {
    color: #ff4444;
}

.token-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 30%;
    object-fit: cover;
    flex-shrink: 0;
}

.logo-img {
    width: 52px;
    height: 52px;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: -20px;
}

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 6px;
    background: #1a1a1c;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 10px 12px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.search-loading,
.search-no-result {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    padding: 8px;
}

.search-result {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    border-radius: 14px;
    transition: background 0.2s;
    cursor: pointer;
}

.search-result:hover {
    background: rgba(255, 255, 255, 0.04);
}

.search-result-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.search-result-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.search-result-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.search-result-address {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.search-result-stats {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

.search-stat-value {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.search-stat-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    margin-right: 6px;
}


.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--bags-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.search-loading {
    padding: 12px;
    display: flex;
    justify-content: center;
}

/* Token Page */
#token-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.token-loading {
    display: flex;
    justify-content: center;
    padding: 60px;
}

.token-not-found {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    padding: 60px;
}

.token-header {
    text-align: center;
    margin-bottom: 30px;
}

.token-header-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}

.token-header-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
}

.token-symbol {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.token-verified {
    flex-shrink: 0;
}

.token-header-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.token-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.token-stat-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
}

.token-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
    font-weight: 500;
}

.token-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.token-address-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 14px 20px;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.token-address-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.token-copy-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.token-copy-btn:hover {
    color: #fff;
}

.token-socials {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.token-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 14px 20px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
}

.token-social-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.logo-link {
    display: flex;
    align-items: center;
}


.token-header-img-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.token-header-img-placeholder span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
}

.search-result-img-placeholder {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-result-img-placeholder span {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

.btn-icon {
    width: 22px;
    height: 22px;
    margin-right: 2px;
    vertical-align: middle;
}

.btn-hero .btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 1px;
}

/* Introduction Page */
#introduction-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.intro-header {
    text-align: center;
    margin-bottom: 48px;
}

.intro-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.intro-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.intro-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.intro-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 12px;
    position: sticky;
    top: 100px;
}

.intro-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.intro-nav-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.intro-nav-item.active {
    background: rgba(2, 255, 64, 0.08);
    color: var(--bags-green);
    font-weight: 600;
    border: 1px solid rgba(2, 255, 64, 0.2);
}

.intro-nav-item.external {
    gap: 8px;
}

.intro-nav-item.external svg {
    opacity: 0.5;
}

.intro-nav-item.external:hover svg {
    opacity: 1;
}

.intro-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 40px;
}

.intro-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.intro-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-top: 32px;
    margin-bottom: 16px;
}

.intro-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.intro-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intro-list li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    padding: 10px 0 10px 24px;
    position: relative;
}

.intro-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--bags-green);
    border-radius: 50%;
}

.intro-tldr {
    margin-top: 32px;
    padding: 20px 24px;
    background: rgba(2, 255, 64, 0.08);
    border: 1px solid rgba(2, 255, 64, 0.2);
    border-radius: 12px;
    font-size: 15px;
    color: var(--bags-green);
    line-height: 1.6;
}

.tldr-label {
    font-weight: 700;
    margin-right: 4px;
}

/* Responsive */
@media (max-width: 900px) {
    .intro-layout {
        flex-direction: column;
    }
    
    .intro-sidebar {
        width: 100%;
        position: static;
        display: flex;
        gap: 8px;
        padding: 8px;
    }
    
    .intro-nav-item {
        flex: 1;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .intro-content {
        padding: 24px;
    }
    
    .intro-section h2 {
        font-size: 26px;
    }
}

.btn-login.connected {
    background: rgba(2, 255, 64, 0.1);
    border-color: var(--bags-green);
    color: var(--bags-green);
}

/* Currently Live Section */
.live-section {
    padding: 40px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.live-wrapper {
    max-width: 1352px;
    margin: 0 auto;
}

.live-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.live-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.live-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.live-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--bags-green);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.live-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.live-img-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.live-info {
    flex: 1;
}

.live-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.live-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.live-viewers {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    position: absolute;
    bottom: 12px;
    right: 12px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--bags-green);
    border-radius: 50%;
}

.live-title-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--bags-green);
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

/* Wallet Dropdown */
.wallet-wrapper {
    position: relative;
}

.wallet-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #1a1a1c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    min-width: 180px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: top right;
}

.wallet-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wallet-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.15s ease;
    transform: translateX(0);
}

.wallet-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateX(4px);
}

.wallet-dropdown-item:active {
    transform: translateX(4px) scale(0.98);
}

.wallet-dropdown-item.disconnect {
    color: #ff4444;
}

.wallet-dropdown-item.disconnect:hover {
    background: rgba(255, 68, 68, 0.15);
    color: #ff4444;
}

.wallet-dropdown-item svg {
    transition: transform 0.15s ease;
}

.wallet-dropdown-item:hover svg {
    transform: scale(1.1);
}

.btn-login {
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-login:active {
    transform: scale(0.96);
}

.btn-login.connected {
    background: rgba(2, 255, 64, 0.1);
    border-color: var(--bags-green);
    color: var(--bags-green);
}

.btn-login.connected:hover {
    background: rgba(2, 255, 64, 0.15);
    box-shadow: 0 0 20px rgba(2, 255, 64, 0.2);
}

/* Go Live Modal */
.golive-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.golive-modal.show {
    opacity: 1;
    visibility: visible;
}

.golive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
}

.golive-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(22, 22, 26, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    width: 94%;
    max-width: 480px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.golive-modal.show .golive-content {
    transform: translate(-50%, -50%) scale(1);
}

.golive-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px 14px;
}

.golive-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
}

.golive-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.golive-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: rotate(90deg);
}

.golive-body {
    padding: 4px 22px 22px;
    max-height: 65vh;
    overflow-y: auto;
}

.golive-body::-webkit-scrollbar {
    width: 5px;
}

.golive-body::-webkit-scrollbar-track {
    background: transparent;
}

.golive-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.golive-connect-prompt {
    text-align: center;
    padding: 40px 16px;
}

.golive-connect-prompt p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    margin-bottom: 20px;
}

.golive-connect-btn {
    padding: 14px 32px;
    background: var(--bags-green);
    color: #000;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 24px rgba(2, 255, 64, 0.25);
}

.golive-connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(2, 255, 64, 0.35);
}

.golive-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 16px;
    gap: 16px;
}

.golive-loading .spinner {
    width: 32px;
    height: 32px;
    border-width: 3px;
}

.golive-loading p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.golive-section {
    margin-bottom: 24px;
}

.golive-section:last-child {
    margin-bottom: 0;
}

.golive-section h3 {
    font-size: 11px;
    font-weight: 700;
    color: var(--bags-green);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 4px;
}

.golive-section-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 12px;
}

.golive-token-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    margin-bottom: 8px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.golive-token-card:last-child {
    margin-bottom: 0;
}

.golive-token-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.golive-token-card.creator {
    background: rgba(2, 255, 64, 0.06);
    border: 1px solid rgba(2, 255, 64, 0.25);
}

.golive-token-card.creator:hover {
    border-color: rgba(2, 255, 64, 0.4);
    transform: translateX(3px);
}

.golive-token-img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
}

.golive-token-img-placeholder {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.golive-token-info {
    flex: 1;
    min-width: 0;
}

.golive-token-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.golive-token-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.golive-token-amount {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.golive-start-btn {
    padding: 10px 18px;
    background: var(--bags-green);
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.golive-start-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(2, 255, 64, 0.3);
}

.golive-start-btn:active {
    transform: scale(0.98);
}

.golive-empty {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.08);
}

/* Go Live Search */
.golive-search-box {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.golive-search-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.golive-search-input-wrapper {
    display: flex;
    gap: 8px;
}

.golive-search-input {
    flex: 1;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s;
}

.golive-search-input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.golive-search-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.golive-search-btn {
    width: 44px;
    height: 44px;
    background: var(--bags-green);
    border: none;
    border-radius: 12px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.golive-search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(2, 255, 64, 0.3);
}

.golive-search-result {
    margin-top: 12px;
}

.golive-search-loading {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.golive-search-error {
    font-size: 13px;
    color: #ff4444;
    padding: 8px 0;
}

.golive-search-success {
    font-size: 13px;
    color: var(--bags-green);
    padding: 8px 0;
}


/* Livestream Overlay */
.livestream-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.livestream-overlay.show {
    opacity: 1;
    visibility: visible;
}

.livestream-modal {
    background: rgba(22, 22, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
}

.livestream-starting {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.livestream-spinner {
    width: 56px;
    height: 56px;
    border: 4px solid rgba(2, 255, 64, 0.2);
    border-top-color: var(--bags-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.livestream-starting h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.livestream-starting p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.livestream-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.livestream-error-icon {
    margin-bottom: 8px;
}

.livestream-error h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ff4444;
}

.livestream-error > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.livestream-error ul {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 8px 0;
    width: 100%;
}

.livestream-error ul li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    padding: 6px 0 6px 24px;
    position: relative;
}

.livestream-error ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: rgba(255, 255, 255, 0.3);
}

.livestream-retry-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
}

.livestream-retry-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--bags-green);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.livestream-retry-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.livestream-close-btn {
    width: 100%;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.livestream-close-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Livestream Choice */
.livestream-choice {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.livestream-choice h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.livestream-choice > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.livestream-options {
    display: flex;
    gap: 16px;
    width: 100%;
}

.livestream-option-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #fff;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.livestream-option-btn:hover {
    background: rgba(2, 255, 64, 0.08);
    border-color: var(--bags-green);
    transform: translateY(-2px);
}

.livestream-option-btn svg {
    color: var(--bags-green);
}

.livestream-option-btn span {
    font-size: 16px;
    font-weight: 700;
}

.livestream-option-btn small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.livestream-cancel-btn {
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.livestream-cancel-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Token Description */
.token-description {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 16px 20px;
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.token-description-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.token-description p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* Copy Button Animation */
.token-copy-btn {
    transition: all 0.2s ease;
}

.token-copy-btn.copied {
    background: rgba(2, 255, 64, 0.1);
    border-radius: 6px;
}

/* Stream + Chat Wrapper */
.stream-chat-wrapper {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

/* Stream Player */
.stream-container {
    flex: 1;
    min-width: 0;
}

.stream-player {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stream-offline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.stream-offline-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stream-offline-icon svg {
    opacity: 0.5;
}

.stream-offline-text {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.stream-offline-subtext {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* Chat */
.chat-container {
    width: 320px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}

.chat-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.chat-viewers {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.chat-viewers-dot {
    width: 8px;
    height: 8px;
    background: var(--bags-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.chat-empty {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.chat-empty p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.chat-empty p:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.chat-message {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.chat-message:last-child {
    margin-bottom: 0;
}

.chat-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.chat-message-content {
    flex: 1;
    min-width: 0;
}

.chat-username {
    font-size: 12px;
    font-weight: 700;
    color: var(--bags-green);
    margin-bottom: 2px;
}

.chat-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    word-wrap: break-word;
}

.chat-input-container {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.2);
}

.chat-input {
    flex: 1;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s;
}

.chat-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.chat-send-btn {
    width: 44px;
    height: 44px;
    background: var(--bags-green);
    border: none;
    border-radius: 12px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.chat-send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(2, 255, 64, 0.3);
}

.chat-send-btn:active {
    transform: scale(0.98);
}

/* Responsive za stream + chat */
@media (max-width: 800px) {
    .stream-chat-wrapper {
        flex-direction: column;
    }
    
    .chat-container {
        width: 100%;
        height: 350px;
    }
    
    .stream-player {
        min-height: 250px;
    }
}

/* More Info Button */
.token-more-info-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 20px auto 0;
    padding: 16px 24px;
    background: rgba(2, 255, 64, 0.1);
    border: 1px solid rgba(2, 255, 64, 0.3);
    border-radius: 16px;
    color: var(--bags-green);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
}

.token-more-info-btn:hover {
    background: rgba(2, 255, 64, 0.15);
    border-color: rgba(2, 255, 64, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(2, 255, 64, 0.2);
}

.token-more-info-btn svg {
    flex-shrink: 0;
}

/* Live Stream Active */
.livestream-active {
    max-width: 500px;
}

.livestream-preview {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.livestream-preview video {
    width: 100%;
    height: auto;
    display: block;
}

.livestream-live-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 0, 0, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.livestream-info {
    text-align: center;
    margin-bottom: 20px;
}

.livestream-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

.livestream-info strong {
    color: var(--bags-green);
}

.livestream-viewers {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 13px !important;
}

.livestream-stop-btn {
    width: 100%;
    padding: 14px 24px;
    background: #ff4444;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.livestream-stop-btn:hover {
    background: #ff2222;
}

/* Live Empty State */
.live-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.4);
}

.live-empty p {
    font-size: 16px;
    margin-bottom: 8px;
}

.live-empty .live-empty-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.25);
}

/* Chat Message Styles */
.chat-message {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-message:last-child {
    margin-bottom: 0;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.chat-message-content {
    flex: 1;
    min-width: 0;
}

.chat-message-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.chat-username {
    font-size: 12px;
    font-weight: 700;
    color: var(--bags-green);
}

.chat-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}

.chat-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    word-wrap: break-word;
    line-height: 1.4;
}

.chat-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.chat-input:disabled::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Video Player Controls */
.stream-player {
    position: relative;
}

.stream-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.stream-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.stream-player:hover .stream-controls {
    opacity: 1;
}

.stream-control-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #fff;
}

.stream-control-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.stream-control-btn svg {
    width: 20px;
    height: 20px;
}

.stream-volume-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stream-volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    cursor: pointer;
}

.stream-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: var(--bags-green);
    border-radius: 50%;
    cursor: pointer;
}

.stream-volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--bags-green);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.stream-spacer {
    flex: 1;
}

.stream-live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 0, 0, 0.8);
    padding: 4px 10px;
    border-radius: 4px;
}

.stream-live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

/* Fullscreen styles */
.stream-player:fullscreen {
    background: #000;
}

.stream-player:fullscreen .stream-video {
    height: 100vh;
}

.stream-player:fullscreen .stream-controls {
    padding: 20px 24px;
}

.stream-player:fullscreen .stream-control-btn {
    width: 48px;
    height: 48px;
}

.stream-player:fullscreen .stream-control-btn svg {
    width: 24px;
    height: 24px;
}


/* Stream Loading */
.stream-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.stream-loading .spinner {
    width: 40px;
    height: 40px;
    border-width: 3px;
}

.stream-loading-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}