/*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;
}

/* Background Video */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    opacity: 0.08;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body.token-page-active .bg-video {
    opacity: 0;
}

body.token-page-active {
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(2, 255, 64, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(2, 255, 64, 0.025) 0%, transparent 50%),
        rgb(10, 10, 14);
    background-attachment: fixed;
}

/* Particles Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Token Page - Solidne pozadine IZNAD particles */
body.token-page-active .ticker-wrapper {
    display: none;
}

body.token-page-active .navbar {
    background: rgb(13, 13, 15);
    position: relative;
    z-index: 10;
}

body.token-page-active .stream-player {
    background: rgb(0, 0, 0);
    position: relative;
    z-index: 2;
}

body.token-page-active .chat-container {
    background: rgb(12, 18, 14);
    border-color: rgba(2, 255, 64, 0.1);
    position: relative;
    z-index: 2;
}

body.token-page-active .chat-header {
    background: rgb(8, 14, 10);
    border-color: rgba(2, 255, 64, 0.08);
}

body.token-page-active .chat-input-container {
    background: rgb(8, 14, 10);
    border-color: rgba(2, 255, 64, 0.08);
}

body.token-page-active .chat-input {
    background: rgba(2, 255, 64, 0.05);
    border-color: rgba(2, 255, 64, 0.15);
}

body.token-page-active .chat-input:focus {
    background: rgba(2, 255, 64, 0.08);
    border-color: rgba(2, 255, 64, 0.3);
}

body.token-page-active .token-stat-box {
    background: rgba(12, 18, 14, 0.85);
    border-color: rgba(2, 255, 64, 0.1);
    position: relative;
    z-index: 2;
}

body.token-page-active .token-address-box {
    background: rgba(12, 18, 14, 0.85);
    border-color: rgba(2, 255, 64, 0.1);
    position: relative;
    z-index: 2;
}

body.token-page-active .token-social-btn {
    background: rgba(12, 18, 14, 0.85);
    border-color: rgba(2, 255, 64, 0.1);
    position: relative;
    z-index: 2;
}

body.token-page-active .token-social-btn:hover {
    background: rgba(2, 255, 64, 0.1);
    border-color: rgba(2, 255, 64, 0.25);
}

body.token-page-active .token-more-info-btn {
    background: rgba(2, 255, 64, 0.1);
    border-color: rgba(2, 255, 64, 0.3);
    position: relative;
    z-index: 2;
}

body.token-page-active .token-more-info-btn:hover {
    background: rgba(2, 255, 64, 0.18);
    border-color: rgba(2, 255, 64, 0.5);
}

body.token-page-active .token-trade-btn {
    background: rgba(12, 18, 14, 0.85);
    border-color: rgba(2, 255, 64, 0.1);
    position: relative;
    z-index: 2;
}

body.token-page-active .token-trade-btn:hover {
    background: rgba(2, 255, 64, 0.1);
    border-color: rgba(2, 255, 64, 0.25);
}

body.token-page-active #token-content {
    position: relative;
    z-index: 2;
}

body.token-page-active .stream-chat-wrapper {
    position: relative;
    z-index: 2;
}

body.token-page-active .token-stats {
    position: relative;
    z-index: 2;
}

body.token-page-active .token-socials {
    position: relative;
    z-index: 2;
}

body.token-page-active .token-action-buttons {
    position: relative;
    z-index: 2;
}

body.token-page-active .token-header {
    position: relative;
    z-index: 2;
}

.ticker-wrapper,
.navbar,
#homepage,
#token-page,
#introduction-page {
    position: relative;
    z-index: 1;
}

/* Ticker */
.ticker-wrapper {
    background: var(--bags-background);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    padding: 6px 0;
    min-height: 42px;
    display: flex;
    align-items: center;
}

.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: 8px;
    margin-right: 40px;
    flex-shrink: 0;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.ticker-item:hover {
    opacity: 0.7;
}

.ticker-icon-placeholder {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
}

.ticker-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.ticker-name {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2px;
}

.ticker-change {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.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;
    margin-left: 120px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-left: -6px;
    text-decoration: none;
}

.logo-text-img {
    height: 56px;
    width: auto;
    margin-left: -6px;
}

.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: 11px 18px 11px 46px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    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;
    margin-left: auto;
}

.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: 9px 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: rgba(13, 13, 15, 1);
    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.17;
    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(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    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: 72px;
    height: 72px;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: 0;
}

/* 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: grid;
    grid-template-columns: 38px 1fr;
    grid-template-rows: auto auto;
    gap: 2px 10px;
    padding: 0px 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;
    grid-row: 1;
    grid-column: 1;
}

.search-result-info {
    display: flex;
    align-items: center;
    gap: 8px;
    grid-row: 1;
    grid-column: 2;
}

.search-result-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.search-result-fullname {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.search-result-address {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.search-result-stats {
    display: flex;
    align-items: center;
    gap: 5px;
    grid-row: 2;
    grid-column: 1 / -1;
}

.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: 1500px;
    margin: 0 auto;
    padding: 100px 24px 100px;
    min-height: calc(104vh - 130px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#token-content {
    flex: 1;
}

.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;
    text-decoration: none;
}


.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;
    margin: 4px 0 0 0
}

.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 - PREMIUM */
.wallet-wrapper {
    position: relative;
}

.wallet-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: rgba(16, 20, 18, 0.95);
    border: 1px solid rgba(2, 255, 64, 0.2);
    border-radius: 16px;
    padding: 10px;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(2, 255, 64, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: top right;
}

.wallet-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(2, 255, 64, 0.4), transparent);
}

.wallet-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wallet-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.wallet-dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(2, 255, 64, 0.1), transparent);
    transition: left 0.4s ease;
}

.wallet-dropdown-item:hover::before {
    left: 100%;
}

.wallet-dropdown-item:hover {
    background: rgba(2, 255, 64, 0.1);
    color: var(--bags-green);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(2, 255, 64, 0.1);
}

.wallet-dropdown-item:active {
    transform: translateX(5px) scale(0.98);
}

.wallet-dropdown-item.disconnect {
    color: rgba(255, 68, 68, 0.8);
}

.wallet-dropdown-item.disconnect:hover {
    background: rgba(255, 68, 68, 0.15);
    color: #ff4444;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.1);
}

.wallet-dropdown-item.disconnect:hover::before {
    background: linear-gradient(90deg, transparent, rgba(255, 68, 68, 0.1), transparent);
}

.wallet-dropdown-item svg {
    transition: all 0.25s ease;
    opacity: 0.6;
}

.wallet-dropdown-item:hover svg {
    transform: scale(1.15);
    opacity: 1;
    filter: drop-shadow(0 0 5px rgba(2, 255, 64, 0.5));
}

.wallet-dropdown-item.disconnect:hover svg {
    filter: drop-shadow(0 0 5px rgba(255, 68, 68, 0.5));
}

.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.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.golive-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9) translateY(20px);
    background: rgba(20, 24, 22, 0.82);
    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.4);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.golive-modal.show .golive-content {
    transform: translate(-50%, -50%) scale(1) translateY(0);
}

/* Subtle top line only */
.golive-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(2, 255, 64, 0.3), transparent);
    z-index: 1;
}

.golive-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(2, 255, 64, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.golive-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
    text-shadow: 0 0 20px rgba(2, 255, 64, 0.3);
    background: linear-gradient(90deg, #fff 0%, var(--bags-green) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

.golive-close {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.golive-close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 68, 68, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.golive-close:hover::before {
    width: 100%;
    height: 100%;
}

.golive-close:hover {
    background: rgba(255, 68, 68, 0.15);
    border-color: rgba(255, 68, 68, 0.3);
    color: #ff4444;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.2);
}

.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: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    margin-bottom: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.golive-token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(2, 255, 64, 0.08), transparent);
    transition: left 0.5s ease;
}

.golive-token-card:hover::before {
    left: 100%;
}

.golive-token-card:last-child {
    margin-bottom: 0;
}

.golive-token-card:hover {
    background: rgba(2, 255, 64, 0.05);
    border-color: rgba(2, 255, 64, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(2, 255, 64, 0.1);
}

.golive-token-card.creator {
    background: rgba(2, 255, 64, 0.08);
    border: 1px solid rgba(2, 255, 64, 0.3);
    box-shadow: 0 0 20px rgba(2, 255, 64, 0.1);
}

.golive-token-card.creator:hover {
    background: rgba(2, 255, 64, 0.12);
    border-color: rgba(2, 255, 64, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(2, 255, 64, 0.2);
}

.golive-token-img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid rgba(2, 255, 64, 0.2);
    transition: all 0.3s ease;
}

.golive-token-card:hover .golive-token-img {
    border-color: rgba(2, 255, 64, 0.5);
    box-shadow: 0 0 15px rgba(2, 255, 64, 0.3);
    transform: scale(1.05);
}

.golive-token-img-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(2, 255, 64, 0.15), rgba(2, 255, 64, 0.05));
    border: 2px solid rgba(2, 255, 64, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--bags-green);
    transition: all 0.3s ease;
}

.golive-token-card:hover .golive-token-img-placeholder {
    border-color: rgba(2, 255, 64, 0.5);
    box-shadow: 0 0 15px rgba(2, 255, 64, 0.3);
    transform: scale(1.05);
}

.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: 12px 22px;
    background: linear-gradient(135deg, var(--bags-green), #00cc44);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(2, 255, 64, 0.3);
}

.golive-start-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.golive-start-btn:hover::before {
    left: 100%;
}

.golive-start-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(2, 255, 64, 0.4),
        0 0 30px rgba(2, 255, 64, 0.3);
}

.golive-start-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.golive-connect-btn {
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--bags-green), #00cc44);
    color: #000;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    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);
    position: relative;
    overflow: hidden;
}

.golive-connect-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.golive-connect-btn:hover::before {
    left: 100%;
}

.golive-connect-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 12px 35px rgba(2, 255, 64, 0.4),
        0 0 40px rgba(2, 255, 64, 0.3);
}

.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.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.livestream-overlay.show {
    opacity: 1;
    visibility: visible;
}

.livestream-modal {
    background: rgba(20, 24, 22, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    max-width: 480px;
    width: 92%;
    text-align: center;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.livestream-overlay.show .livestream-modal {
    transform: scale(1) translateY(0);
}

.livestream-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(2, 255, 64, 0.3), transparent);
}

.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: 14px;
    width: 100%;
    align-items: stretch;
}

.livestream-option-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    flex: 0.7;
    overflow: hidden;
}

.livestream-option-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(2, 255, 64, 0.15), transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    border-radius: 50%;
}

.livestream-option-btn:hover::before {
    width: 200%;
    height: 200%;
}

.livestream-option-btn:hover {
    background: rgba(2, 255, 64, 0.08);
    border-color: rgba(2, 255, 64, 0.3);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(2, 255, 64, 0.15);
}

.livestream-option-btn svg {
    opacity: 0.5;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.livestream-option-btn:hover svg {
    opacity: 1;
    color: var(--bags-green);
    transform: scale(1.15);
    filter: drop-shadow(0 0 10px rgba(2, 255, 64, 0.5));
}

.livestream-option-btn span {
    font-size: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.livestream-option-btn:hover span {
    text-shadow: 0 0 10px rgba(2, 255, 64, 0.5);
}

.livestream-option-btn small {
    font-size: 11px;
    opacity: 0.5;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.livestream-option-btn:hover small {
    opacity: 0.8;
}

.livestream-option-btn.recommended {
    flex: 1;
    padding: 38px 20px 16px;
    background: rgba(2, 255, 64, 0.08);
    border: 1px solid rgba(2, 255, 64, 0.3);
    color: #fff;
    position: relative;
    overflow: visible;
}

.livestream-option-btn.recommended::before {
    display: none;
}

.livestream-option-btn.recommended:hover {
    background: rgba(2, 255, 64, 0.12);
    border-color: rgba(2, 255, 64, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(2, 255, 64, 0.15);
}

.livestream-option-btn.recommended svg {
    opacity: 1;
    color: var(--bags-green);
}

.livestream-option-btn.recommended span {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.livestream-option-btn.recommended small {
    margin-top: 0;
}

.livestream-option-btn.recommended .recommended-badge {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: var(--bags-green);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 18px;
    text-transform: none;
    letter-spacing: 0.3px;
    border-radius: 0 0 8px 8px !important;
    white-space: nowrap;
    margin: 0 !important;
}





.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,
.token-copy-btn-small {
    transition: all 0.3s ease;
    position: relative;
}

.token-copy-btn.copied,
.token-copy-btn-small.copied {
    color: var(--bags-green) !important;
    transform: scale(1.2);
}

.token-copy-btn.copied svg,
.token-copy-btn-small.copied svg {
    filter: drop-shadow(0 0 8px rgba(2, 255, 64, 0.6));
}

/* 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);
}

.stream-golive-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 28px;
    background: var(--bags-green);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 255, 64, 0.3);
}

.stream-golive-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 255, 64, 0.4);
}

.stream-golive-btn:active {
    transform: translateY(0);
}

.stream-golive-btn svg {
    color: #000;
}

/* 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;
    max-height: 350px;
    min-height: 350px;
}

.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;
    }
}

/* 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: transparent !important;
    border: none !important;
    padding: 0;
    box-shadow: none !important;
}

.stream-live-dot {
    width: 8px;
    height: 8px;
    background: var(--bags-green);
    border-radius: 50%;
    animation: liveDotPulse 2s ease-in-out infinite;
}

@keyframes liveDotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(2, 255, 64, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(2, 255, 64, 0);
    }
}

/* 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);
}

/* Username Modal - PREMIUM */
.username-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.username-modal.show {
    opacity: 1;
    visibility: visible;
}

.username-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.username-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9) translateY(20px);
    background: rgba(16, 20, 18, 0.95);
    border: 1px solid rgba(2, 255, 64, 0.2);
    border-radius: 24px;
    width: 92%;
    max-width: 420px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(2, 255, 64, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.username-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(2, 255, 64, 0.5), transparent);
}

.username-modal.show .username-modal-content {
    transform: translate(-50%, -50%) scale(1) translateY(0);
}

.username-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(2, 255, 64, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.username-modal-header h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(90deg, #fff 0%, var(--bags-green) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

.username-modal-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    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.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.username-modal-close:hover {
    background: rgba(255, 68, 68, 0.15);
    border-color: rgba(255, 68, 68, 0.3);
    color: #ff4444;
    transform: rotate(90deg) scale(1.1);
}

.username-modal-body {
    padding: 28px;
}

.username-modal-body p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
}

.username-input {
    width: 100%;
    padding: 16px 18px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(2, 255, 64, 0.15);
    border-radius: 14px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.username-input:focus {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(2, 255, 64, 0.5);
    box-shadow: 0 0 20px rgba(2, 255, 64, 0.15);
}

.username-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.username-hint {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
}

.username-modal-footer {
    display: flex;
    gap: 14px;
    padding: 24px 28px;
    border-top: 1px solid rgba(2, 255, 64, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.username-cancel-btn {
    flex: 1;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.username-cancel-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.username-save-btn {
    flex: 1;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--bags-green), #00cc44);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 5px 20px rgba(2, 255, 64, 0.3);
    position: relative;
    overflow: hidden;
}

.username-save-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.4s ease;
}

.username-save-btn:hover::before {
    left: 100%;
}

.username-save-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(2, 255, 64, 0.4);
}

.username-save-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.username-save-btn:disabled::before {
    display: none;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    background: rgba(12, 18, 14, 0.95);
    border: 1px solid rgba(2, 255, 64, 0.4);
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(2, 255, 64, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-notification svg {
    color: var(--bags-green);
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(2, 255, 64, 0.5));
    animation: toastIcon 0.5s ease;
}

@keyframes toastIcon {
    0% {
        transform: scale(0) rotate(-180deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Premium Spinner */
.golive-loading .spinner,
.livestream-spinner,
.obs-loading .spinner,
.stream-starting-spinner {
    border: 3px solid rgba(2, 255, 64, 0.1);
    border-top-color: var(--bags-green);
    filter: drop-shadow(0 0 10px rgba(2, 255, 64, 0.5));
}

.spinner-small {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(2, 255, 64, 0.1);
    border-top-color: var(--bags-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    filter: drop-shadow(0 0 8px rgba(2, 255, 64, 0.4));
}

/* Stream Starting Overlay */
.stream-starting-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.stream-starting-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.stream-starting-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(2, 255, 64, 0.2);
    border-top-color: var(--bags-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.stream-starting-text {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* End Live Button */
.end-live-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ff4444;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    z-index: 20;
    transition: all 0.2s;
}

.end-live-btn:hover {
    background: #ff2222;
    transform: scale(1.05);
}

/* Stream Error Overlay */
.stream-error-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.stream-error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 24px;
}

.stream-error-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ff4444;
}

.stream-error-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
}

.stream-error-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.stream-error-retry {
    padding: 10px 20px;
    background: var(--bags-green);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.stream-error-retry:hover {
    opacity: 0.9;
}

.stream-error-close {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.stream-error-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile App Promo */
.mobile-promo-section {
    padding: 0 24px 40px;
    max-width: 1352px;
    margin: -60px auto 0;
}

.mobile-promo {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px 24px;
}

.mobile-promo-icon {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 14px;
    padding: 12px;
    box-sizing: content-box;
}

.mobile-promo-info {
    flex: 1;
}

.mobile-promo-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.mobile-promo-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.mobile-promo-platforms {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.mobile-promo-btn {
    padding: 14px 28px;
    background: var(--bags-green);
    color: #000;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s;
}

.mobile-promo-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

@media (max-width: 768px) {
    .mobile-promo {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .site-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }
}

/* Twitter/X Link */
.twitter-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.x-icon-img {
    width: 16px;
    height: 16px;
    opacity: 0.5;
    transition: all 0.2s ease;
}

.twitter-link:hover .x-icon-img {
    opacity: 1;
    transform: scale(1.15);
}

.earner-avatar-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Token Action Buttons */
.token-action-buttons {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 20px auto 0;
}

.token-more-info-btn,
.token-trade-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.token-more-info-btn {
    background: rgba(2, 255, 64, 0.1);
    border: 1px solid rgba(2, 255, 64, 0.3);
    color: var(--bags-green);
}

.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-trade-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.token-trade-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-external-icon {
    position: absolute;
    top: 6px;
    right: 6px;
    opacity: 0.4;
    transition: opacity 0.2s;
}

.token-more-info-btn:hover .btn-external-icon,
.token-trade-btn:hover .btn-external-icon {
    opacity: 0.8;
}

.axiom-logo {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

/* OBS Modal Styles */
.obs-modal {
    max-width: 450px;
}

.obs-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 48px;
}

.obs-loading p {
    color: rgba(255, 255, 255, 0.5);
}

.obs-setup {
    padding: 0;
}

.obs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.obs-header h3 {
    margin: 0;
    font-size: 20px;
    color: #fff;
}

.obs-close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s;
}

.obs-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.obs-content {
    padding: 24px;
}

.obs-steps {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.obs-steps p {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.obs-steps p:last-child {
    margin-bottom: 0;
}

.obs-steps strong {
    color: var(--bags-green);
}

.obs-field {
    margin-bottom: 16px;
}

.obs-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.obs-input-row {
    display: flex;
    gap: 8px;
}

.obs-input-row input {
    flex: 1;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-family: monospace;
}

.obs-copy {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.obs-copy:hover {
    background: rgba(255, 255, 255, 0.15);
}

.obs-warning {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #ffaa00;
}

.obs-done-btn {
    width: 100%;
    padding: 14px;
    background: var(--bags-green);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.2s;
}

.obs-done-btn:hover {
    opacity: 0.9;
}

.obs-error {
    padding: 32px;
    text-align: center;
}

.obs-error h3 {
    color: #ff4444;
    margin: 0 0 12px 0;
}

.obs-error p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px 0;
}

.obs-error .obs-close-btn {
    width: auto;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
}

/* OBS Modal Styles - PREMIUM */
.obs-modal {
    max-width: 460px;
    background: rgba(16, 20, 18, 0.92) !important;
    border: 1px solid rgba(2, 255, 64, 0.15) !important;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(2, 255, 64, 0.08) !important;
}

.obs-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(2, 255, 64, 0.4), transparent);
}

.obs-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 60px 48px;
}

.obs-loading .spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(2, 255, 64, 0.15);
    border-top-color: var(--bags-green);
    filter: drop-shadow(0 0 15px rgba(2, 255, 64, 0.4));
}

.obs-loading p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    animation: pulse 2s ease-in-out infinite;
}

.obs-setup {
    padding: 0;
    animation: fadeInScale 0.4s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.obs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(2, 255, 64, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.obs-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, #fff 0%, var(--bags-green) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

.obs-close-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 22px;
    cursor: pointer;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.obs-close-btn:hover {
    background: rgba(255, 68, 68, 0.15);
    border-color: rgba(255, 68, 68, 0.3);
    color: #ff4444;
    transform: rotate(90deg) scale(1.1);
}

.obs-content {
    padding: 24px 28px 28px;
}

.obs-steps {
    background: rgba(2, 255, 64, 0.03);
    border: 1px solid rgba(2, 255, 64, 0.1);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.obs-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(2, 255, 64, 0.3), transparent);
}

.obs-steps p {
    margin: 0 0 10px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 8px;
    position: relative;
    transition: all 0.2s ease;
}

.obs-steps p:hover {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 12px;
}

.obs-steps p:last-child {
    margin-bottom: 0;
}

.obs-steps strong {
    color: var(--bags-green);
    text-shadow: 0 0 10px rgba(2, 255, 64, 0.3);
}

.obs-field {
    margin-bottom: 20px;
}

.obs-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--bags-green);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.obs-input-row {
    display: flex;
    gap: 10px;
}

.obs-input-row input {
    flex: 1;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(2, 255, 64, 0.15);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.obs-input-row input:focus {
    outline: none;
    border-color: rgba(2, 255, 64, 0.4);
    box-shadow: 0 0 20px rgba(2, 255, 64, 0.1);
}

.obs-copy {
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--bags-green), #00cc44);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(2, 255, 64, 0.3);
}

.obs-copy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.4s ease;
}

.obs-copy:hover::before {
    left: 100%;
}

.obs-copy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 255, 64, 0.4);
}

.obs-warning {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 12px;
    color: #ffaa00;
    animation: pulse 2s ease-in-out infinite;
}

.obs-status {
    margin: 24px 0;
    padding: 18px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(2, 255, 64, 0.1);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

.obs-status::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--bags-green);
    animation: statusProgress 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(2, 255, 64, 0.5);
}

@keyframes statusProgress {
    0% { width: 0%; left: 0; }
    50% { width: 100%; left: 0; }
    100% { width: 0%; left: 100%; }
}

.obs-status-waiting {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}

.obs-status-live {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bags-green);
    font-size: 16px;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(2, 255, 64, 0.5);
    animation: liveGlow 1.5s ease-in-out infinite;
}

@keyframes liveGlow {
    0%, 100% { text-shadow: 0 0 15px rgba(2, 255, 64, 0.5); }
    50% { text-shadow: 0 0 25px rgba(2, 255, 64, 0.8); }
}

.obs-live-dot {
    width: 12px;
    height: 12px;
    background: var(--bags-green);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(2, 255, 64, 0.6);
}

@keyframes livePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(2, 255, 64, 0.6);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(2, 255, 64, 0.8);
    }
}

.spinner-small {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(2, 255, 64, 0.15);
    border-top-color: var(--bags-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    filter: drop-shadow(0 0 8px rgba(2, 255, 64, 0.4));
}

.obs-done-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--bags-green), #00cc44);
    border: none;
    border-radius: 14px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(2, 255, 64, 0.3);
}

.obs-done-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.4s ease;
}

.obs-done-btn:hover:not(:disabled)::before {
    left: 100%;
}

.obs-done-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(2, 255, 64, 0.4);
}

.obs-done-btn:disabled {
    opacity: 1;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.obs-error {
    padding: 40px 32px;
    text-align: center;
    animation: fadeInScale 0.4s ease-out forwards;
}

.obs-error h3 {
    color: #ff4444;
    margin: 0 0 14px 0;
    font-size: 22px;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
}

.obs-error p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 24px 0;
    font-size: 14px;
    line-height: 1.6;
}

.obs-reset-container {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.obs-reset-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.obs-reset-btn:hover {
    color: #ffaa00;
    border-color: rgba(255, 170, 0, 0.3);
    background: rgba(255, 170, 0, 0.1);
}

.obs-reset-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.obs-key-hidden {
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
}

.confirm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.confirm-modal {
    background: rgba(12, 18, 14, 0.95);
    border: 1px solid rgba(2, 255, 64, 0.2);
    border-radius: 20px;
    padding: 36px;
    max-width: 380px;
    width: 92%;
    text-align: center;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(2, 255, 64, 0.1);
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.confirm-modal-icon {
    margin-bottom: 20px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 170, 0, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(255, 170, 0, 0.5));
    }
}

.confirm-modal-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 14px 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.confirm-modal-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 28px 0;
}

.confirm-modal-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.confirm-modal-cancel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-modal-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.confirm-modal-confirm {
    background: linear-gradient(135deg, var(--bags-green), #00cc44);
    border: none;
    color: #000;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(2, 255, 64, 0.3);
}

.confirm-modal-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 255, 64, 0.4);
}

.confirm-modal-confirm:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.confirm-modal-icon {
    margin-bottom: 16px;
}

.confirm-modal-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.confirm-modal-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 24px 0;
}

.confirm-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.confirm-modal-cancel {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.confirm-modal-cancel:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.confirm-modal-confirm {
    background: var(--bags-green);
    border: none;
    color: #000;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.confirm-modal-confirm:hover {
    opacity: 0.9;
}

.confirm-modal-confirm:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.obs-key-hidden {
    font-family: monospace;
    letter-spacing: 2px;
}

/* ============================================
   BRUTALNE ANIMACIJE ZA TOKEN PAGE
   ============================================ */

/* Animated Glow Border na Chat */
@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(2, 255, 64, 0.1),
                    inset 0 0 10px rgba(2, 255, 64, 0.03);
    }
    50% {
        box-shadow: 0 0 20px rgba(2, 255, 64, 0.2),
                    inset 0 0 15px rgba(2, 255, 64, 0.05);
    }
}

body.token-page-active .chat-container {
    animation: borderGlow 3s ease-in-out infinite;
}

body.token-page-active .stream-player {
    animation: borderGlow 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Token Slika Pulse Glow */
@keyframes tokenPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(2, 255, 64, 0.2),
                    0 0 40px rgba(2, 255, 64, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(2, 255, 64, 0.4),
                    0 0 60px rgba(2, 255, 64, 0.2);
    }
}

body.token-page-active .token-header-img {
    animation: tokenPulse 2.5s ease-in-out infinite;
    border: 2px solid rgba(2, 255, 64, 0.3);
}

body.token-page-active .token-header-img-placeholder {
    animation: tokenPulse 2.5s ease-in-out infinite;
    border: 2px solid rgba(2, 255, 64, 0.3);
}

/* Fade In Up Animacije */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

body.token-page-active .token-header {
    animation: fadeInScale 0.6s ease-out forwards;
}

body.token-page-active .stream-chat-wrapper {
    animation: fadeInUp 0.6s ease-out 0.15s forwards;
    opacity: 0;
}

body.token-page-active .token-stats {
    animation: fadeInUp 0.5s ease-out 0.3s forwards;
    opacity: 0;
}

body.token-page-active .token-address-box {
    animation: fadeInUp 0.5s ease-out 0.4s forwards;
    opacity: 0;
}

body.token-page-active .token-socials {
    animation: fadeInUp 0.5s ease-out 0.5s forwards;
    opacity: 0;
}

body.token-page-active .token-action-buttons {
    animation: fadeInUp 0.5s ease-out 0.6s forwards;
    opacity: 0;
}

/* Hover Glow Efekti */
body.token-page-active .token-stat-box {
    transition: all 0.3s ease;
}

body.token-page-active .token-stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(2, 255, 64, 0.15),
                0 0 15px rgba(2, 255, 64, 0.1);
    border-color: rgba(2, 255, 64, 0.3);
}

body.token-page-active .token-address-box {
    transition: all 0.3s ease;
}

body.token-page-active .token-address-box:hover {
    box-shadow: 0 5px 20px rgba(2, 255, 64, 0.15);
    border-color: rgba(2, 255, 64, 0.3);
}

body.token-page-active .token-social-btn {
    transition: all 0.3s ease;
}

body.token-page-active .token-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 255, 64, 0.2);
}

body.token-page-active .token-more-info-btn {
    transition: all 0.3s ease;
}

body.token-page-active .token-more-info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(2, 255, 64, 0.3);
}

body.token-page-active .token-trade-btn {
    transition: all 0.3s ease;
}

body.token-page-active .token-trade-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 255, 64, 0.2);
}

/* Chat Send Button Glow */
body.token-page-active .chat-send-btn {
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(2, 255, 64, 0.3);
}

body.token-page-active .chat-send-btn:hover {
    box-shadow: 0 0 25px rgba(2, 255, 64, 0.5),
                0 0 40px rgba(2, 255, 64, 0.3);
    transform: scale(1.08);
}

/* Chat Message Slide In */
@keyframes chatSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

body.token-page-active .chat-message {
    animation: chatSlideIn 0.3s ease-out forwards;
}

/* Live Badge Pulse */
@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(2, 255, 64, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(2, 255, 64, 0.8),
                    0 0 30px rgba(2, 255, 64, 0.4);
    }
}

body.token-page-active .stream-live-indicator {
    animation: livePulse 1.5s ease-in-out infinite;
}

/* Ripple Effect na Click */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(2, 255, 64, 0.4);
    pointer-events: none;
    animation: ripple 0.6s ease-out forwards;
}

body.token-page-active .token-more-info-btn,
body.token-page-active .token-trade-btn,
body.token-page-active .token-social-btn,
body.token-page-active .chat-send-btn {
    position: relative;
    overflow: hidden;
}

/* Stat Value Glow */
body.token-page-active .token-stat-value {
    text-shadow: 0 0 10px rgba(2, 255, 64, 0.3);
    transition: all 0.3s ease;
}

body.token-page-active .token-stat-box:hover .token-stat-value {
    text-shadow: 0 0 15px rgba(2, 255, 64, 0.5),
                 0 0 25px rgba(2, 255, 64, 0.3);
    color: var(--bags-green);
}

/* Token Symbol Glow */
body.token-page-active .token-symbol {
    text-shadow: 0 0 20px rgba(2, 255, 64, 0.2);
}

/* Verified Badge Pulse */
@keyframes verifiedPulse {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(2, 255, 64, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(2, 255, 64, 0.8));
    }
}

body.token-page-active .token-verified {
    animation: verifiedPulse 2s ease-in-out infinite;
}

/* Typing Indicator za Chat */
@keyframes typingDot {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Grid Lines Glow na Hover */
body.token-page-active #particles-canvas {
    transition: opacity 0.3s ease;
}

/* Smooth Scroll Behavior */
body.token-page-active {
    scroll-behavior: smooth;
}

/* Copy Button Success Animation */
@keyframes copySuccess {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

body.token-page-active .token-copy-btn.copied {
    animation: copySuccess 0.3s ease-out;
    color: var(--bags-green);
}

/* Chat Input Focus Glow */
body.token-page-active .chat-input:focus {
    box-shadow: 0 0 15px rgba(2, 255, 64, 0.2),
                inset 0 0 5px rgba(2, 255, 64, 0.05);
}

/* Stream Player Hover Effect */
body.token-page-active .stream-player:hover {
    box-shadow: 0 0 30px rgba(2, 255, 64, 0.15);
}

/* Loading Spinner Green */
body.token-page-active .spinner {
    border-top-color: var(--bags-green);
    filter: drop-shadow(0 0 10px rgba(2, 255, 64, 0.5));
}



/* ============================================
   PREMIUM ANIMACIJE - NEXT LEVEL
   ============================================ */

/* Cursor Glow - zelena svetlost prati misa */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(2, 255, 64, 0.08) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.token-page-active .cursor-glow {
    opacity: 1;
}

/* Aurora Waves - talasi u pozadini */
@keyframes auroraWave1 {
    0%, 100% {
        transform: translateX(-30%) translateY(-30%) rotate(0deg);
    }
    50% {
        transform: translateX(-20%) translateY(-40%) rotate(180deg);
    }
}

@keyframes auroraWave2 {
    0%, 100% {
        transform: translateX(30%) translateY(30%) rotate(0deg);
    }
    50% {
        transform: translateX(40%) translateY(20%) rotate(-180deg);
    }
}

@keyframes auroraWave3 {
    0%, 100% {
        transform: translateX(0%) translateY(-20%) rotate(0deg);
    }
    50% {
        transform: translateX(-10%) translateY(-30%) rotate(90deg);
    }
}

.aurora-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.token-page-active .aurora-container {
    opacity: 1;
}

.aurora-wave {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.aurora-wave-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(2, 255, 64, 0.1) 0%, transparent 70%);
    animation: auroraWave1 20s ease-in-out infinite;
}

.aurora-wave-2 {
    width: 500px;
    height: 500px;
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(0, 200, 100, 0.08) 0%, transparent 70%);
    animation: auroraWave2 25s ease-in-out infinite;
}

.aurora-wave-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    background: radial-gradient(circle, rgba(2, 255, 64, 0.06) 0%, transparent 70%);
    animation: auroraWave3 18s ease-in-out infinite;
}

/* Glassmorphism - stakleni efekat */
body.token-page-active .token-stat-box {
    background: rgba(12, 18, 14, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(2, 255, 64, 0.15);
}

body.token-page-active .token-address-box {
    background: rgba(12, 18, 14, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(2, 255, 64, 0.15);
}

body.token-page-active .token-social-btn {
    background: rgba(12, 18, 14, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(2, 255, 64, 0.15);
}

body.token-page-active .chat-container {
    background: rgba(12, 18, 14, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* 3D Tilt Effect - elementi se naginju */
.tilt-element {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.tilt-element .tilt-inner {
    transform: translateZ(20px);
}

/* Floating Animation - token slika lebdi */
@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

body.token-page-active .token-header-img,
body.token-page-active .token-header-img-placeholder {
    animation: floating 3s ease-in-out infinite, tokenPulse 2.5s ease-in-out infinite;
}

/* Text Gradient Animation - animirani gradient na token symbol */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body.token-page-active .token-symbol {
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        var(--bags-green) 25%,
        #ffffff 50%,
        var(--bags-green) 75%,
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

/* Magnetic Button Effect */
.magnetic-btn {
    transition: transform 0.2s ease-out;
}

/* Premium Hover States */
body.token-page-active .token-stat-box:hover {
    background: rgba(2, 255, 64, 0.1);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(2, 255, 64, 0.2),
                0 0 20px rgba(2, 255, 64, 0.1);
}

body.token-page-active .token-social-btn:hover {
    background: rgba(2, 255, 64, 0.15);
    transform: translateY(-3px) scale(1.02);
}

body.token-page-active .token-more-info-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(2, 255, 64, 0.3),
                0 0 30px rgba(2, 255, 64, 0.2);
}

body.token-page-active .token-trade-btn:hover {
    background: rgba(2, 255, 64, 0.15);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(2, 255, 64, 0.2);
}

/* Glow Line pod MCAP boxovima */
body.token-page-active .token-stats {
    position: relative;
}

body.token-page-active .token-stats::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(2, 255, 64, 0.3), transparent);
}

/* Chat Container Premium Glow */
body.token-page-active .chat-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(
        45deg,
        rgba(2, 255, 64, 0.1),
        transparent,
        rgba(2, 255, 64, 0.1),
        transparent
    );
    border-radius: 17px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.token-page-active .chat-container:hover::before {
    opacity: 1;
}

/* Stream Player Premium */
body.token-page-active .stream-player {
    box-shadow: 0 0 0 1px rgba(2, 255, 64, 0.1),
                0 20px 50px rgba(0, 0, 0, 0.5);
}

body.token-page-active .stream-player:hover {
    box-shadow: 0 0 0 1px rgba(2, 255, 64, 0.2),
                0 25px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(2, 255, 64, 0.1);
}

/* Shimmer Effect za Loading */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

body.token-page-active .token-loading {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(2, 255, 64, 0.1) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Notification Dot Pulse */
@keyframes notificationPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(2, 255, 64, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(2, 255, 64, 0);
    }
}

body.token-page-active .chat-viewers-dot {
    animation: notificationPulse 2s ease-in-out infinite;
}

/* Elegant Line Decorations */
body.token-page-active .token-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bags-green), transparent);
    border-radius: 2px;
}

body.token-page-active .token-header {
    position: relative;
    padding-top: 20px;
}

/* ============================================
   HOMEPAGE PREMIUM ANIMACIJE
   ============================================ */

/* Fade In animacije za sekcije */
@keyframes fadeInUpSoft {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScaleSoft {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Section Animacije */
.hero-section {
    animation: fadeInScaleSoft 0.8s ease-out forwards;
}

.hero-earnings {
    animation: fadeInUpSoft 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-title {
    animation: fadeInUpSoft 0.6s ease-out 0.35s forwards;
    opacity: 0;
}

.hero-subtitle {
    animation: fadeInUpSoft 0.6s ease-out 0.5s forwards;
    opacity: 0;
}

.hero-section .btn-hero {
    animation: fadeInUpSoft 0.6s ease-out 0.65s forwards;
    opacity: 0;
}

.hero-section .btn-hero:nth-of-type(2) {
    animation-delay: 0.75s;
}

/* Hero Button Hover */
.btn-hero {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 255, 64, 0.2);
}

.btn-new-coin {
    transition: all 0.3s ease;
}

.btn-new-coin:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2, 255, 64, 0.2);
}

/* Live Section Animacije */
.live-section {
    animation: fadeInUpSoft 0.7s ease-out 0.3s forwards;
    opacity: 0;
}

.live-title {
    position: relative;
}

/* Live Card Hover Efekti */
.live-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.live-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(2, 255, 64, 0.05),
        transparent
    );
    transition: left 0.5s ease;
}

.live-card:hover::before {
    left: 100%;
}

.live-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(2, 255, 64, 0.1);
    border-color: rgba(2, 255, 64, 0.3);
}

.live-card:hover .live-img,
.live-card:hover .live-img-placeholder {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(2, 255, 64, 0.3);
}

.live-img,
.live-img-placeholder {
    transition: all 0.3s ease;
}

/* Live Badge Pulse */
.live-badge {
    animation: livePulse 2s ease-in-out infinite;
}

/* Table Section Animacije */
.table-section {
    animation: fadeInUpSoft 0.7s ease-out 0.5s forwards;
    opacity: 0;
}

/* Table Row Hover */
.tokens-table tbody tr {
    transition: all 0.25s ease;
    position: relative;
}

.tokens-table tbody tr:hover {
    background: rgba(2, 255, 64, 0.05);
    box-shadow: 0 0 20px rgba(2, 255, 64, 0.05);
}

.tokens-table tbody tr:hover .token-name {
    color: var(--bags-green);
}

.tokens-table tbody tr:hover .token-avatar-img,
.tokens-table tbody tr:hover .token-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(2, 255, 64, 0.3);
}

.token-avatar-img,
.token-avatar {
    transition: all 0.3s ease;
}

.token-name {
    transition: color 0.3s ease;
}

/* Ticker Hover */
.ticker-item {
    transition: all 0.3s ease;
}

.ticker-item:hover {
    opacity: 1;
    transform: scale(1.02);
}

.ticker-item:hover .ticker-icon,
.ticker-item:hover .ticker-icon-placeholder {
    box-shadow: 0 0 10px rgba(2, 255, 64, 0.3);
}

.ticker-icon,
.ticker-icon-placeholder {
    transition: all 0.3s ease;
}

/* Mobile Promo Hover */
.mobile-promo {
    transition: all 0.3s ease;
    animation: fadeInUpSoft 0.7s ease-out 0.7s forwards;
    opacity: 0;
}

.mobile-promo:hover {
    border-color: rgba(2, 255, 64, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(2, 255, 64, 0.05);
}

.mobile-promo-btn {
    transition: all 0.3s ease;
}

.mobile-promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 255, 64, 0.3);
}

/* Navbar animacije */
.navbar {
    animation: fadeInUpSoft 0.5s ease-out forwards;
}

/* Ticker Smooth Fade In */
.ticker-wrapper {
    animation: fadeInSoft 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInSoft {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.btn-login {
    transition: all 0.3s ease;
}

.btn-login:hover {
    border-color: rgba(2, 255, 64, 0.5);
    box-shadow: 0 0 15px rgba(2, 255, 64, 0.15);
}

.btn-login.connected:hover {
    box-shadow: 0 0 20px rgba(2, 255, 64, 0.3);
}

/* Search Input Focus */
.search-input {
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: rgba(2, 255, 64, 0.4);
    box-shadow: 0 0 15px rgba(2, 255, 64, 0.1);
}

/* Nav Link Hover */
.nav-link {
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--bags-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Footer Links */
.footer-links a {
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--bags-green);
    text-shadow: 0 0 10px rgba(2, 255, 64, 0.3);
}

/* Hero Earnings Glow */
.hero-earnings {
    transition: all 0.3s ease;
}

.hero-earnings:hover {
    border-color: rgba(2, 255, 64, 0.3);
    box-shadow: 0 0 20px rgba(2, 255, 64, 0.1);
}

.earnings-amount {
    text-shadow: 0 0 10px rgba(2, 255, 64, 0.3);
}

/* Positive/Negative Number Glow */
.positive {
    text-shadow: 0 0 8px rgba(2, 255, 64, 0.3);
}

.negative {
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.3);
}

/* Table Wrapper Subtle Border Glow */
.table-wrapper {
    transition: all 0.3s ease;
}

.table-wrapper:hover {
    border-color: rgba(2, 255, 64, 0.15);
    box-shadow: 0 0 30px rgba(2, 255, 64, 0.03);
}

/* Logo Hover */
.logo-link {
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-link:hover .logo-text-img {
    filter: drop-shadow(0 0 10px rgba(2, 255, 64, 0.3));
}

.logo-text-img {
    transition: all 0.3s ease;
}

/* Token Page Footer */
.token-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;
    display: flex;
    justify-content: center;
}

body.token-page-active .token-footer {
    animation: fadeInUpSoft 0.5s ease-out 0.7s forwards;
    opacity: 0;
}

body.token-page-active .footer-links a {
    transition: all 0.3s ease;
}

body.token-page-active .footer-links a:hover {
    color: var(--bags-green);
    text-shadow: 0 0 10px rgba(2, 255, 64, 0.3);
}

/* ============================================
   TOKEN PAGE - 3 COLUMN LAYOUT
   ============================================ */
/* Main Row - Token Info | Stream | Chat */
.token-main-row {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    align-items: stretch;
}

/* Left Sidebar - Token Info */
.token-sidebar-left {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(12, 18, 14, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(2, 255, 64, 0.1);
    border-radius: 14px;
    padding: 20px 16px;
    animation: fadeInUp 0.5s ease-out forwards;
    align-self: flex-start;
}

/* Sidebar Button Animations */
.token-sidebar-btn {
    position: relative;
    overflow: hidden;
}

.token-sidebar-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(2, 255, 64, 0.1), transparent);
    transition: left 0.4s ease;
}

.token-sidebar-btn:hover::before {
    left: 100%;
}

/* Sidebar Stat Animations */
.token-sidebar-stat {
    position: relative;
    overflow: hidden;
}

.token-sidebar-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(2, 255, 64, 0.08), transparent);
    transition: left 0.4s ease;
}

.token-sidebar-stat:hover::before {
    left: 100%;
}

/* Social Button Glow */
.token-social-btn-small {
    position: relative;
}

.token-social-btn-small:hover {
    box-shadow: 0 0 15px rgba(2, 255, 64, 0.3);
}

/* Address Box Hover */
.token-sidebar-address:hover {
    box-shadow: 0 0 10px rgba(2, 255, 64, 0.15);
}

/* Token Profile */
.token-profile {
    text-align: center;
}

.token-profile-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    display: block;
    border: 2px solid rgba(2, 255, 64, 0.3);
    animation: tokenPulse 2.5s ease-in-out infinite;
}

.token-profile-img-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(2, 255, 64, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    animation: tokenPulse 2.5s ease-in-out infinite;
}

.token-profile-img-placeholder span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}

.token-profile-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 4px;
}

.token-profile-symbol {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(90deg, #ffffff 0%, var(--bags-green) 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

.token-verified-small {
    flex-shrink: 0;
}

.token-profile-fullname {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Sidebar Address */
.token-sidebar-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.token-sidebar-address:hover {
    border-color: rgba(2, 255, 64, 0.2);
}

.token-copy-btn-small {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 2px;
    display: flex;
    transition: all 0.2s;
}

.token-copy-btn-small:hover {
    color: var(--bags-green);
}

/* Sidebar Socials */
.token-sidebar-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.token-social-btn-small {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.token-social-btn-small:hover {
    background: rgba(2, 255, 64, 0.1);
    border-color: rgba(2, 255, 64, 0.3);
    color: var(--bags-green);
    transform: translateY(-2px);
}

/* Sidebar Stats */
.token-sidebar-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.token-sidebar-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.token-sidebar-stat:hover {
    border-color: rgba(2, 255, 64, 0.2);
    background: rgba(2, 255, 64, 0.05);
}

.token-sidebar-stat-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.token-sidebar-stat-value {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
}

.token-sidebar-stat:hover .token-sidebar-stat-value {
    color: var(--bags-green);
    text-shadow: 0 0 10px rgba(2, 255, 64, 0.3);
}

/* Sidebar Actions */
.token-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.token-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.token-sidebar-btn:hover {
    background: rgba(2, 255, 64, 0.1);
    border-color: rgba(2, 255, 64, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.token-sidebar-btn.primary {
    background: rgba(2, 255, 64, 0.15);
    border-color: rgba(2, 255, 64, 0.3);
    color: var(--bags-green);
}

.token-sidebar-btn.primary:hover {
    background: rgba(2, 255, 64, 0.25);
    box-shadow: 0 5px 20px rgba(2, 255, 64, 0.2);
}

.axiom-logo-small {
    width: 18px;
    height: 18px;
}

/* Stream Container - Flex Grow */
.token-main-row .stream-container {
    flex: 1;
    min-width: 500px;
}

.token-main-row .stream-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 520px;
}

/* Chat Container */
.token-main-row .chat-container {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.token-main-row .chat-messages {
    flex: 1;
    overflow-y: auto;
    min-height: 400px;
}

.token-main-row .chat-header {
    flex-shrink: 0;
}

.token-main-row .chat-input-container {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .token-main-row {
        flex-wrap: wrap;
    }
    
    .token-sidebar-left {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        order: 0;
        gap: 12px;
        padding: 16px;
    }
    
    .token-profile {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }
    
    .token-profile-img,
    .token-profile-img-placeholder {
        margin: 0;
        width: 60px;
        height: 60px;
    }
    
    .token-profile-name {
        justify-content: flex-start;
    }
    
    .token-sidebar-address {
        flex: 1;
    }
    
    .token-sidebar-socials {
        flex: 0;
    }
    
    .token-sidebar-stats {
        flex-direction: row;
        width: 100%;
        gap: 8px;
    }
    
    .token-sidebar-stat {
        flex: 1;
    }
    
    .token-sidebar-actions {
        flex-direction: row;
        width: 100%;
        gap: 8px;
    }
    
    .token-sidebar-btn {
        flex: 1;
    }
    
    .token-main-row .stream-container {
        width: 100%;
        min-width: auto;
        order: 1;
    }
    
    .token-main-row .stream-player {
        aspect-ratio: 16 / 9;
    }
    
    .token-main-row .chat-container {
        width: 100%;
        order: 2;
        height: 400px;
    }
    
    .token-main-row .chat-messages {
        min-height: 250px;
    }
}

/* Copy Toast */
.copy-toast {
    position: fixed;
    bottom: 850px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(12, 18, 14, 0.95);
    border: 1px solid rgba(2, 255, 64, 0.4);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--bags-green);
    font-size: 14px;
    font-weight: 600;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(2, 255, 64, 0.2);
    backdrop-filter: blur(10px);
}

.copy-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.copy-toast svg {
    color: var(--bags-green);
    filter: drop-shadow(0 0 6px rgba(2, 255, 64, 0.5));
}

/* Auto-hide Stream Controls */
.stream-controls {
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.stream-controls.hidden {
    opacity: 0 !important;
    visibility: hidden;
    pointer-events: none;
}

.stream-player:fullscreen .stream-controls.hidden {
    opacity: 0 !important;
}

/* Kad je fullscreen i kontrole vidljive */
.stream-player:fullscreen .stream-controls:not(.hidden) {
    opacity: 1;
}

/* Cursor none kad su kontrole sakrivene */
.stream-player:fullscreen {
    cursor: none;
}

.stream-player:fullscreen:hover {
    cursor: default;
}

/* ============================================
   RESPONSIVE - MOBILE FIRST
   ============================================ */

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
    .nav-container,
    .live-wrapper,
    .table-wrapper {
        max-width: 1400px;
    }
}

/* Large Tablets / Small Laptops (1024px - 1200px) */
@media (max-width: 1200px) {
    #token-page {
        padding: 60px 20px 80px;
    }
    
    .token-main-row {
        flex-wrap: wrap;
    }
    
    .token-sidebar-left {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        order: 0;
        gap: 12px;
        padding: 16px;
    }
    
    .token-profile {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }
    
    .token-profile-img,
    .token-profile-img-placeholder {
        margin: 0;
        width: 56px;
        height: 56px;
    }
    
    .token-profile-name {
        justify-content: flex-start;
    }
    
    .token-sidebar-address {
        flex: 1;
        min-width: 150px;
    }
    
    .token-sidebar-socials {
        flex: 0;
    }
    
    .token-sidebar-stats {
        flex-direction: row;
        width: 100%;
        gap: 8px;
    }
    
    .token-sidebar-stat {
        flex: 1;
        min-width: 80px;
    }
    
    .token-sidebar-actions {
        flex-direction: row;
        width: 100%;
        gap: 8px;
    }
    
    .token-sidebar-btn {
        flex: 1;
    }
    
    .token-main-row .stream-container {
        width: 100%;
        min-width: auto;
        order: 1;
    }
    
    .token-main-row .stream-player {
        min-height: 400px;
    }
    
    .token-main-row .chat-container {
        width: 100%;
        order: 2;
        height: 400px;
    }
    
    .token-main-row .chat-messages {
        min-height: 280px;
        max-height: 280px;
    }
    
    .search-wrapper {
        margin-left: 40px;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 16px;
        gap: 12px;
    }
    
    .search-wrapper {
        margin-left: 20px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .btn-new-coin {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .btn-login {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .live-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }
    
    .tokens-table {
        min-width: 900px;
    }
    
    #token-page {
        padding: 40px 16px 80px;
    }
    
    .golive-content,
    .livestream-modal,
    .username-modal-content {
        width: 96%;
        max-width: 440px;
    }
}

/* Small Tablets / Large Phones (768px) */
@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 12px 0;
    }
    
    .nav-container {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .logo-text-img {
        height: 44px;
    }
    
    .search-wrapper {
        order: 3;
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .nav-link {
        display: none;
    }
    
    .btn-new-coin {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .btn-new-coin .btn-icon {
        width: 18px;
        height: 18px;
    }
    
    .btn-login {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    /* Hero */
    .hero-wrapper {
        padding: 20px 16px 0;
    }
    
    .hero-section {
        padding: 40px 20px 35px;
        border-radius: 12px;
    }
    
    .hero-earnings {
        font-size: 12px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .btn-hero {
        padding: 12px 24px;
        font-size: 15px;
        display: block;
        width: 100%;
        margin-bottom: 12px;
    }
    
    .btn-hero:last-child {
        margin-bottom: 0;
    }
    
    /* Live Section */
    .live-section {
        padding: 30px 16px;
    }
    
    .live-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .live-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .live-card {
        padding: 16px;
    }
    
    .live-img,
    .live-img-placeholder {
        width: 48px;
        height: 48px;
    }
    
    /* Table */
    .table-section {
        padding: 20px 16px 60px;
    }
    
    .table-wrapper {
        border-radius: 14px;
    }
    
    .tokens-table {
        min-width: 800px;
    }
    
    .tokens-table th,
    .tokens-table td {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    /* Token Page */
    #token-page {
        padding: 30px 12px 100px;
    }
    
    .token-main-row {
        gap: 12px;
    }
    
    .token-main-row .stream-player {
        min-height: 280px;
        border-radius: 12px;
    }
    
    .token-main-row .chat-container {
        height: 360px;
        border-radius: 12px;
    }
    
    .token-main-row .chat-messages {
        min-height: 240px;
        max-height: 240px;
    }
    
    .token-sidebar-left {
        padding: 14px;
        border-radius: 12px;
        gap: 10px;
    }
    
    .token-sidebar-stats {
        flex-wrap: wrap;
    }
    
    .token-sidebar-stat {
        min-width: calc(33% - 6px);
    }
    
    .token-sidebar-actions {
        flex-wrap: wrap;
    }
    
    .token-sidebar-btn {
        min-width: calc(50% - 4px);
    }
    
    /* Chat */
    .chat-header {
        padding: 12px 14px;
    }
    
    .chat-title {
        font-size: 13px;
    }
    
    .chat-input-container {
        padding: 10px 14px;
        gap: 6px;
    }
    
    .chat-input {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .chat-send-btn {
        width: 40px;
        height: 40px;
    }
    
    /* Modals */
    .golive-content {
        max-height: 85vh;
        border-radius: 20px;
    }
    
    .golive-header {
        padding: 16px 20px 14px;
    }
    
    .golive-header h2 {
        font-size: 20px;
    }
    
    .golive-body {
        padding: 4px 18px 18px;
    }
    
    .livestream-modal {
        padding: 30px 24px;
        border-radius: 20px;
    }
    
    .livestream-options {
        flex-direction: column;
        gap: 12px;
    }
    
    .livestream-option-btn {
        flex: 1;
        padding: 20px 16px;
    }
    
    .livestream-option-btn.recommended {
        padding: 32px 16px 16px;
    }
    
    .username-modal-content {
        border-radius: 20px;
    }
    
    .username-modal-header {
        padding: 20px 22px;
    }
    
    .username-modal-body {
        padding: 22px;
    }
    
    .username-modal-footer {
        padding: 18px 22px;
    }
    
    /* Mobile Promo */
    .mobile-promo-section {
        padding: 0 16px 30px;
        margin-top: -40px;
    }
    
    .mobile-promo {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        border-radius: 16px;
    }
    
    .mobile-promo-icon {
        width: 50px;
        height: 50px;
    }
    
    .mobile-promo-btn {
        width: 100%;
        text-align: center;
        padding: 12px 24px;
    }
    
    /* Footer */
    .site-footer {
        padding: 24px 16px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    /* Introduction */
    .intro-header h1 {
        font-size: 36px;
    }
    
    .intro-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .intro-sidebar {
        width: 100%;
        position: static;
        display: flex;
        gap: 8px;
        padding: 8px;
        overflow-x: auto;
    }
    
    .intro-nav-item {
        flex: 1;
        justify-content: center;
        padding: 10px 14px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .intro-content {
        padding: 20px;
    }
    
    .intro-section h2 {
        font-size: 24px;
    }
    
    .intro-section h3 {
        font-size: 18px;
    }
    
    /* Wallet Dropdown */
    .wallet-dropdown {
        min-width: 180px;
        right: -10px;
    }
    
    /* OBS Modal */
    .obs-modal {
        max-width: 95%;
    }
    
    .obs-header {
        padding: 18px 20px;
    }
    
    .obs-content {
        padding: 20px;
    }
    
    .obs-input-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .obs-copy {
        width: 100%;
    }
}

/* Mobile Phones (480px) */
@media (max-width: 480px) {
    /* Ticker */
    .ticker-wrapper {
        padding: 5px 0;
        min-height: 38px;
    }
    
    .ticker-icon,
    .ticker-icon-placeholder {
        width: 20px;
        height: 20px;
    }
    
    .ticker-name,
    .ticker-change {
        font-size: 11px;
    }
    
    .ticker-item {
        gap: 6px;
        margin-right: 28px;
    }
    
    /* Navbar */
    .navbar {
        padding: 10px 0;
    }
    
    .logo-text-img {
        height: 38px;
    }
    
    .btn-new-coin {
        padding: 7px 12px;
        font-size: 12px;
    }
    
    .btn-new-coin .btn-icon {
        width: 16px;
        height: 16px;
        margin-right: 0;
    }
    
    .btn-login {
        padding: 7px 12px;
        font-size: 12px;
    }
    
    .search-input {
        padding: 10px 16px 10px 40px;
        font-size: 14px;
    }
    
    .search-icon {
        left: 14px;
        width: 16px;
        height: 16px;
    }
    
    /* Hero */
    .hero-wrapper {
        padding: 16px 12px 0;
    }
    
    .hero-section {
        padding: 32px 16px 28px;
    }
    
    .hero-earnings {
        font-size: 11px;
        padding: 7px 14px;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .btn-hero {
        padding: 11px 20px;
        font-size: 14px;
    }
    
    .btn-hero .btn-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Live Section */
    .live-section {
        padding: 24px 12px;
    }
    
    .live-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .live-title-dot {
        width: 10px;
        height: 10px;
    }
    
    .live-card {
        padding: 14px;
        border-radius: 12px;
    }
    
    .live-img,
    .live-img-placeholder {
        width: 44px;
        height: 44px;
    }
    
    .live-name {
        font-size: 14px;
    }
    
    .live-subtitle {
        font-size: 12px;
    }
    
    .live-badge {
        font-size: 9px;
        padding: 3px 6px;
    }
    
    /* Table */
    .table-section {
        padding: 16px 12px 50px;
    }
    
    .tokens-table th,
    .tokens-table td {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .token-avatar,
    .token-avatar-img {
        width: 32px;
        height: 32px;
    }
    
    /* Token Page */
    #token-page {
        padding: 20px 10px 90px;
    }
    
    .token-main-row {
        gap: 10px;
    }
    
    .token-main-row .stream-player {
        min-height: 220px;
        border-radius: 10px;
    }
    
    .token-main-row .chat-container {
        height: 320px;
        border-radius: 10px;
    }
    
    .token-main-row .chat-messages {
        min-height: 200px;
        max-height: 200px;
        padding: 10px 12px;
    }
    
    .token-sidebar-left {
        padding: 12px;
        border-radius: 10px;
    }
    
    .token-profile-img,
    .token-profile-img-placeholder {
        width: 48px;
        height: 48px;
    }
    
    .token-profile-symbol {
        font-size: 17px;
    }
    
    .token-profile-fullname {
        font-size: 12px;
    }
    
    .token-sidebar-address {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .token-social-btn-small {
        width: 32px;
        height: 32px;
    }
    
    .token-sidebar-stat {
        padding: 6px 8px;
    }
    
    .token-sidebar-stat-label {
        font-size: 9px;
    }
    
    .token-sidebar-stat-value {
        font-size: 12px;
    }
    
    .token-sidebar-btn {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    /* Chat */
    .chat-header {
        padding: 10px 12px;
    }
    
    .chat-title {
        font-size: 12px;
    }
    
    .chat-viewers {
        font-size: 11px;
    }
    
    .chat-input-container {
        padding: 8px 12px;
    }
    
    .chat-input {
        padding: 9px 10px;
        font-size: 12px;
        border-radius: 10px;
    }
    
    .chat-send-btn {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    
    .chat-send-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .chat-message {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .chat-avatar {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    
    .chat-username {
        font-size: 11px;
    }
    
    .chat-text {
        font-size: 12px;
    }
    
    /* Stream Controls */
    .stream-controls {
        padding: 10px 12px;
    }
    
    .stream-control-btn {
        width: 34px;
        height: 34px;
    }
    
    .stream-control-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .stream-volume-slider {
        width: 60px;
    }
    
    .stream-live-indicator {
        font-size: 10px;
        gap: 4px;
    }
    
    .stream-live-dot {
        width: 6px;
        height: 6px;
    }
    
    /* Modals */
    .golive-content {
        max-height: 90vh;
        border-radius: 16px;
    }
    
    .golive-header {
        padding: 14px 16px 12px;
    }
    
    .golive-header h2 {
        font-size: 18px;
    }
    
    .golive-close {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .golive-body {
        padding: 4px 16px 16px;
    }
    
    .golive-section h3 {
        font-size: 10px;
    }
    
    .golive-token-card {
        padding: 12px;
        border-radius: 12px;
    }
    
    .golive-token-img,
    .golive-token-img-placeholder {
        width: 38px;
        height: 38px;
    }
    
    .golive-token-name {
        font-size: 14px;
    }
    
    .golive-start-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .livestream-modal {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .livestream-choice h3 {
        font-size: 18px;
    }
    
    .livestream-option-btn {
        padding: 18px 14px;
        border-radius: 14px;
    }
    
    .livestream-option-btn svg {
        width: 28px;
        height: 28px;
    }
    
    .livestream-option-btn span {
        font-size: 13px;
    }
    
    .livestream-option-btn small {
        font-size: 10px;
    }
    
    .username-modal-content {
        border-radius: 16px;
    }
    
    .username-modal-header {
        padding: 16px 18px;
    }
    
    .username-modal-header h3 {
        font-size: 17px;
    }
    
    .username-modal-body {
        padding: 18px;
    }
    
    .username-input {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .username-modal-footer {
        padding: 16px 18px;
        gap: 10px;
    }
    
    .username-cancel-btn,
    .username-save-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Mobile Promo */
    .mobile-promo-section {
        padding: 0 12px 24px;
        margin-top: -30px;
    }
    
    .mobile-promo {
        padding: 16px;
        border-radius: 12px;
        gap: 14px;
    }
    
    .mobile-promo-icon {
        width: 44px;
        height: 44px;
    }
    
    .mobile-promo-title {
        font-size: 16px;
    }
    
    .mobile-promo-subtitle {
        font-size: 13px;
    }
    
    .mobile-promo-platforms {
        font-size: 12px;
    }
    
    .mobile-promo-btn {
        padding: 11px 20px;
        font-size: 14px;
    }
    
    /* Footer */
    .site-footer {
        padding: 20px 12px;
    }
    
    .footer-links {
        gap: 10px 16px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    /* Search Dropdown */
    .search-dropdown {
        border-radius: 14px;
        padding: 8px 10px;
    }
    
    .search-result {
        padding: 8px;
    }
    
    .search-result-img,
    .search-result-img-placeholder {
        width: 34px;
        height: 34px;
    }
    
    .search-result-name {
        font-size: 13px;
    }
    
    /* Introduction */
    #introduction-page {
        padding: 30px 12px 60px;
    }
    
    .intro-header {
        margin-bottom: 30px;
    }
    
    .intro-header h1 {
        font-size: 28px;
    }
    
    .intro-header p {
        font-size: 15px;
    }
    
    .intro-content {
        padding: 16px;
        border-radius: 12px;
    }
    
    .intro-section h2 {
        font-size: 20px;
    }
    
    .intro-text {
        font-size: 14px;
    }
    
    .intro-list li {
        font-size: 13px;
        padding-left: 20px;
    }
    
    .intro-tldr {
        padding: 16px 18px;
        font-size: 13px;
    }
    
    /* Toast */
    .toast-notification {
        padding: 12px 18px;
        font-size: 13px;
        border-radius: 12px;
        bottom: 20px;
    }
    
    .copy-toast {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    /* OBS Modal */
    .obs-header h3 {
        font-size: 18px;
    }
    
    .obs-steps p {
        font-size: 12px;
    }
    
    .obs-field label {
        font-size: 10px;
    }
    
    .obs-input-row input {
        padding: 12px 14px;
        font-size: 12px;
    }
    
    .obs-done-btn {
        padding: 14px;
        font-size: 14px;
    }
}

/* Extra Small Phones (360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 22px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .btn-hero {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .token-sidebar-stat {
        min-width: 100%;
    }
    
    .token-sidebar-btn {
        min-width: 100%;
    }
    
    .livestream-options {
        gap: 10px;
    }
    
    .livestream-option-btn {
        padding: 16px 12px;
    }
}

/* Landscape Phone */
@media (max-height: 500px) and (orientation: landscape) {
    .golive-content,
    .livestream-modal,
    .username-modal-content {
        max-height: 95vh;
    }
    
    .golive-body {
        max-height: 60vh;
    }
    
    .token-main-row .stream-player {
        min-height: 200px;
    }
    
    .token-main-row .chat-container {
        height: 250px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .ticker-wrapper,
    .site-footer,
    .btn-new-coin,
    .btn-login,
    .chat-container,
    .stream-controls {
        display: none !important;
    }
    
    body {
        background: #fff !important;
        color: #000 !important;
    }
}