.code-enhanced-box {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    margin: 2rem 0;
    color: #f8fafc;
    font-family: 'Fira Code', monospace;
    position: relative;
    overflow-x: auto;
    line-height: 1.6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.code-enhanced-box .copy-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.code-enhanced-box .copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.code-enhanced-box.typing span {
    opacity: 0;
    display: inline;
    animation: aiTyping 0.05s forwards;
}

@keyframes aiTyping {
    to {
        opacity: 1;
    }
}