 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #000;
            color: white;
            overflow: hidden;
        }

        button,
        button:hover,
        a,
        a:hover{
            outline: none !important;
        }

        .feed-interact-container {
            display: flex;
            height: 100vh;
            position: relative;
        }

        /* Reaproveitando a sidebar do código anterior */
        .feed-interact-sidebar {
            width: 280px;
            background: #161823;
            padding: 20px 0;
            display: flex;
            flex-direction: column;
            border-right: 1px solid #333;
        }

        .feed-interact-logo {
            display: flex;
            align-items: center;
            padding: 0 20px 30px;
            gap: 8px;
        }

        .feed-interact-logo img{
                width: 120px;
             max-width: 100%;
             border-radius: 100%;
        }

        .feed-interact-logo svg {
            width: 32px;
            height: 32px;
        }

        .feed-interact-logo span {
            font-size: 24px;
            font-weight: bold;
            color: white;
        }

        .feed-interact-back-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0 20px 20px;
            cursor: pointer;
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: opacity 0.2s;
        }

        .feed-interact-back-btn:hover {
            opacity: 0.7;
        }

        .feed-interact-back-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .feed-interact-live-nav {
            padding: 0 20px 30px;
        }

        .feed-interact-live-nav-item {
            display: flex;
            align-items: center;
            padding: 12px 0;
            cursor: pointer;
            gap: 16px;
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            margin-bottom: 4px;
            padding-left: 0;
            transition: all 0.2s;
        }

        .feed-interact-live-nav-item:hover {
            background: rgba(255, 255, 255, 0.1);
            padding-left: 12px;
        }

        .feed-interact-live-nav-item svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .feed-interact-coins-btn {
            background: var(--cor-principal);
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            color: white;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            margin: 0 20px 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
        }

        .feed-interact-coins-btn:hover {
            background: #e00045;
        }

        .feed-interact-suggested-creators {
            padding: 20px;
            border-top: 1px solid #333;
            flex: 1;
        }

        .feed-interact-suggested-creators h3 {
            font-size: 14px;
            color: #888;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .feed-interact-refresh-btn {
            background: none;
            border: none;
            color: #888;
            cursor: pointer;
            padding: 4px;
        }

        .feed-interact-creator-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
            cursor: pointer;
            transition: opacity 0.2s;
        }

        .feed-interact-creator-item:hover {
            opacity: 0.8;
        }

        .feed-interact-creator-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--cor-principal), var(--cor-secundaria));
            position: relative;
        }

        .feed-interact-creator-info h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .feed-interact-creator-info span {
            font-size: 12px;
            color: #888;
        }

        .feed-interact-viewer-count {
            margin-left: auto;
            font-size: 12px;
            color: #888;
        }

        .feed-interact-show-more {
            color: var(--cor-principal);
            background: none;
            border: none;
            cursor: pointer;
            font-size: 14px;
            padding: 12px 0;
            width: 100%;
            text-align: left;
        }

        /* Main LIVE Content */
        .feed-interact-live-main {
            flex: 1;
            position: relative;
            display: flex;
            background: #000;
        }

        .feed-interact-live-header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 20px;
            z-index: 10;
            background: linear-gradient(rgba(0,0,0,0.90), rgba(0,0,0,0.20));
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .feed-interact-live-user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--cor-principal), var(--cor-secundaria));
        }

        .feed-interact-live-user-info h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .feed-interact-live-user-info span {
            font-size: 14px;
            color: #ccc;
        }

        .feed-interact-live-stats {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-left: auto;
        }

        .feed-interact-live-stat {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 14px;
        }

        .feed-interact-follow-btn-live {
            background: var(--cor-principal);
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            color: white;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
        }

        .feed-interact-live-video-container {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
        }

        .feed-interact-live-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: none;
        }

        .feed-interact-live-video-container iframe{
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            border: none !important;
        }

        .feed-interact-live-overlay-image {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 200px;
            height: 300px;
            background: linear-gradient(135deg, #ff6b9d, #c44569);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        }

        .feed-interact-tarot-card {
            width: 160px;
            height: 240px;
            background: #f8f3e8;
            border-radius: 8px;
            position: relative;
            border: 3px solid #8b4513;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #8b4513;
            font-weight: bold;
        }

        .feed-interact-tarot-title {
            font-size: 16px;
            text-align: center;
            margin-bottom: 20px;
            padding: 0 10px;
            line-height: 1.3;
        }

        .feed-interact-tarot-content {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .feed-interact-skull {
            width: 40px;
            height: 40px;
            background: #333;
            border-radius: 50%;
        }

        .feed-interact-crystal {
            width: 30px;
            height: 40px;
            background: linear-gradient(135deg, #87ceeb, #4682b4);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        }

        .feed-interact-live-controls {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .feed-interact-live-control-btn {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            backdrop-filter: blur(10px);
            color: #f2f2f2;
        }

        .feed-interact-live-control-btn svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .feed-interact-live-timer {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 0, 80, 0.9);
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .feed-interact-live-dot {
            width: 8px;
            height: 8px;
            background: white;
            border-radius: 50%;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0.3; }
        }

        /* Gift Panel */
        .feed-interact-gifts-panel {
            position: absolute;
            bottom: 80px;
            left: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 12px;
            padding: 16px;
            backdrop-filter: blur(20px);
        }

        .feed-interact-gifts-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 12px;
            margin-bottom: 16px;
        }

        .feed-interact-gift-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .feed-interact-gift-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.05);
        }

        .feed-interact-gift-icon {
            width: 32px;
            height: 32px;
            font-size: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feed-interact-gift-name {
            font-size: 10px;
            text-align: center;
            color: #ccc;
        }

        .feed-interact-gift-price {
            font-size: 10px;
            color: #ffd700;
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .feed-interact-gift-balance {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .feed-interact-balance-info {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        .feed-interact-coin-icon {
            width: 16px;
            height: 16px;
            background: #ffd700;
            border-radius: 50%;
        }

        .feed-interact-get-coins-btn {
            background: var(--cor-principal);
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            color: white;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
        }

        /* Chat Panel */
        .feed-interact-chat-panel {
            width: 300px;
            background: #161823;
            border-left: 1px solid #333;
            display: flex;
            flex-direction: column;
        }

        .feed-interact-chat-header {
            padding: 20px;
            border-bottom: 1px solid #333;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .feed-interact-chat-title {
            font-size: 16px;
            font-weight: 600;
        }

        .feed-interact-viewers-section {
            padding: 16px 20px;
            border-bottom: 1px solid #333;
        }

        .feed-interact-viewers-title {
            font-size: 12px;
            color: #888;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .feed-interact-viewers-list {
            display: flex;
            gap: 8px;
        }

        .feed-interact-viewer-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .feed-interact-viewer-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--cor-principal), var(--cor-secundaria));
            position: relative;
        }

        .feed-interact-viewer-rank {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 16px;
            height: 16px;
            background: #ffd700;
            border-radius: 4px;
            font-size: 10px;
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .feed-interact-viewer-name {
            font-size: 10px;
            color: #ccc;
            max-width: 40px;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }

        .feed-interact-chat-messages {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .feed-interact-chat-message {
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .feed-interact-message-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: linear-gradient(45deg, #36D1DC, #5B86E5) !important;
            flex-shrink: 0;
        }

        .feed-interact-message-content {
            flex: 1;
        }

        .feed-interact-message-author {
            font-size: 12px;
            color: var(--cor-principal);
            font-weight: 600;
            margin-bottom: 2px;
        }

        .feed-interact-message-text {
            font-size: 14px;
            line-height: 1.3;
            color: white;
        }

        .feed-interact-message-time {
            font-size: 10px;
            color: #888;
            margin-left: 8px;
        }

        .feed-interact-chat-input {
            padding: 20px;
            border-top: 1px solid #333;
        }

        .feed-interact-input-container {
            display: flex;
            gap: 8px;
        }

        .feed-interact-chat-input-field {
            flex: 1;
            background: #2f2f3a;
            border: none;
            border-radius: 20px;
            padding: 10px 16px;
            color: white;
            font-size: 14px;
        }

        .feed-interact-chat-input-field::placeholder {
            color: #888;
        }

        .feed-interact-send-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--cor-principal);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .feed-interact-send-btn svg {
            width: 16px;
            height: 16px;
            fill: white;
        }



        @media (max-width: 768px) {
            .feed-interact-sidebar {
                display: none;
            }
            
            .feed-interact-chat-panel {
                width: 100%;
                position: absolute;
                bottom: -70%;
                left: 0;
                height: 70%;
                transition: bottom 0.3s ease;
            }
            
            .feed-interact-chat-panel.open {
                bottom: 0;
            }
            
            .feed-interact-live-main {
                width: 100%;
            }
        }

        #expandBtn,
        #close-chat-new{
            display: none;
        }

        @media(max-width:540px){
            #expandBtn,
            #close-chat-new{
                display: flex;
            }

            #close-chat-new{
                    width: 32px;
                    height: 32px;
                    background: transparent;
                    border: none;
                    color: #f2f2f2;
                    border-radius: 8px;
            }
            #close-chat-new svg{
                stroke: #f2f2f2;
                stroke-width: 2;
                stroke-linecap: round;
            }

            .feed-interact-live-controls{
                flex-direction: row;
                justify-content: flex-end;
            }
            .feed-interact-live-stats {
                display: flex;
                align-items: center;
                gap: 16px;
                margin-left: auto;
                position: fixed;
                bottom: 84px;
                right: 0;
                text-align: center;
                padding-left: 13px;
                padding-right: 13px;
            }
            .feed-interact-live-stat {
                display: block;
                align-items: center;
                gap: 4px;
                font-size: 14px;
            }
            .feed-interact-live-stat svg{
                vertical-align: bottom;
            }
            .feed-interact-chat-panel.aberto{
                bottom: 0;
                z-index: 99;
            }
            .feed-interact-chat-panel {
            width: 100%;
            background: rgba(22, 24, 35, 0.75);
            }

        }