

.terminal-typing {
    position: relative;
    color: darkorange;
    display: flex;
    justify-content: center;
    white-space: nowrap;    /* No wrapping! */
    overflow: hidden;       /* Cut off anything that doesn't fit */
    margin-top: 10px;
}

/* Blinking cursor */
.terminal-typing::after {
    content: '_';
    animation: blink 1s infinite;
    position: absolute;
    right: 5px;
    bottom: 5px;
}

/* Remove the old ::after cursor — we will make a real one in HTML now */
.terminal-typing::after {
    content: none;
}

.typing-cursor {
    display: inline-block;
    width: 10px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Promotion Tip Section */
.promotion-tip {
    margin: 16px 0;
    padding: 12px;
    background-color: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 4px;
}

.promotion-tip-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.promotion-tip .tip-icon {
    color: #fbbf24;
    margin-right: 8px;
}

.promotion-tip .tip-label {
    color: #fbbf24;
    font-weight: bold;
    font-size: 12px;
}

.promotion-tip-content {
    color: #e5e5e5;
    font-size: 12px;
    line-height: 1.4;
}
