/* Matrix Base */
#betadrawbot-container {
    position: relative;
    z-index: 2;
    padding: 20px;
    min-height: 200px;
}

.betadrawbot-game {
    background: rgba(0, 20, 0, 0.9);
    border: 1px solid #00ff00;
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

/* Game Analyst */
.betadrawbot-analyst {
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 10px;
    background: rgba(0, 30, 0, 0.9);
    border-radius: 8px;
}

.analyst-icon {
    width: 45px;
    height: 45px;
    margin-right: 15px;
    filter: hue-rotate(90deg);
    animation: pulse 2s infinite;
}

.analysis-bubble {
    background: rgba(0, 0, 0, 0.9);
    color: #00ff00;
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 10px rgba(0, 255, 0, 0.3);
    position: relative;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
